Bagus dan bertele-tele! Dari halaman manual.
Port tunggal:
nc -zv 127.0.0.1 80
Beberapa port:
nc -zv 127.0.0.1 22 80 8080
Rentang port:
nc -zv 127.0.0.1 20-30
Bash telah dapat mengakses port TCP dan UDP untuk sementara waktu. Dari halaman manual:
/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.
Jadi Anda bisa menggunakan sesuatu seperti ini:
xenon-lornix:~> cat < /dev/tcp/127.0.0.1/22
SSH-2.0-OpenSSH_6.2p2 Debian-6
^C pressed here
Taa Daa!
Netcat adalah alat yang berguna:
nc 127.0.0.1 123 &> /dev/null; echo $?
Akan menampilkan 0
jika port 123 terbuka, dan 1
jika ditutup.