簡單紀錄一下 Linux 的 Netcat 這個工具,在 Linux 中的指令是 nc
如果是 minimal 安裝需要 yum install nc
nc 指令通常用來檢測指定 port 是否開啟
檢測 TCP port 是否開啟 $ nc 192.168.121.100 22 也可以用來 Port Scanning $ nc -z 192.168.121.100 10-100
檢測 UDP port 是否開啟 $ nc -zu 192.168.121.100 53 udp Port Scanning $ nc -zu 192.168.121.100 10-100
nc 指令通常都拿來檢測 UDP port,或是掃描單個 IP,若要範圍還是使用 nmap 會比較好用
其他的功能參數都有更好用的替代品了!!