Skip to content

测试远程端口是否连通

TCP端口 - telnet

telnet 127.0.0.1 443

UDP端口 - nc

telnet基于TCP,所以不能用其测试UDP端口。

可以使用nc工具:

nc 127.0.0.1 443