Pěkné a výstižné! Z manuálových stránek.
Jediný port:
nc -zv 127.0.0.1 80
Více portů:
nc -zv 127.0.0.1 22 80 8080
Rozsah portů:
nc -zv 127.0.0.1 20-30
Bash měl na chvíli přístup k portům TCP a UDP. Z manuálové stránky:
/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.
Takže můžete použít něco takového:
xenon-lornix:~> cat < /dev/tcp/127.0.0.1/22
SSH-2.0-OpenSSH_6.2p2 Debian-6
^C pressed here
Taa Daa!
Netcat je užitečný nástroj:
nc 127.0.0.1 123 &> /dev/null; echo $?
Vypíše 0
pokud je otevřený port 123, a 1
pokud je zavřeno.