使用telnet检测端口是否开放
telnet ip 端口 命令
打开的 运行 窗口中输入 cmd 回车,dos命令行窗口中输入 telnet然后 回车,出现
Escape 字符为 'CTRL+]' Microsoft Telnet>
证明 telnet可以正常使用。
netstat 工具检测开放端口
netstat -nupl (UDP类型的端口)
netstat -ntpl (TCP类型的端口)
a 表示所有
n 表示不查询dns
t 表示tcp协议
u 表示udp协议
p 表示查询占用的程序
l 表示查询正在监听的程序
lsof 工具检测开放端口
lsof -i:端口号
lsof -i:80