Bello e prolisso! Dalle pagine man.
Porta singola:
nc -zv 127.0.0.1 80
Più porte:
nc -zv 127.0.0.1 22 80 8080
Intervallo di porte:
nc -zv 127.0.0.1 20-30
Bash è stato in grado di accedere alle porte TCP e UDP per un po'. Dalla pagina man:
/dev/tcp/host/port
If host is a valid hostname or Internet address, and port is an integer port number
or service name, bash attempts to open a TCP connection to the corresponding socket.
/dev/udp/host/port
If host is a valid hostname or Internet address, and port is an integer port number
or service name, bash attempts to open a UDP connection to the corresponding socket.
Quindi potresti usare qualcosa del genere:
xenon-lornix:~> cat < /dev/tcp/127.0.0.1/22
SSH-2.0-OpenSSH_6.2p2 Debian-6
^C pressed here
Taa Daa!
Netcat è uno strumento utile:
nc 127.0.0.1 123 &> /dev/null; echo $?
Produrrà 0
se la porta 123 è aperta, e 1
se è chiuso.