需要linux支持nc命令:输入nc 回车
若没有安装,则显示 no such file or directory ,直接安装
yum install nc -y
两次输入nc命令显示帮助信息
usage: nc [-46DdhklnrStUuvzC] [-i interval] [-p source_port]
[-s source_ip_address] [-T ToS] [-w timeout] [-X proxy_version]
[-x proxy_address[:port]] [hostname] [port[s]]
查看某端口能否正常访问命令:
nc -z -w 1 192.168.1.222 22
若能正常访问则输出:
Connection to 192.168.1.222 22 port [tcp/ssh] succeeded!