Linux测试端口是否可用
Posted 飞入云端_blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux测试端口是否可用相关的知识,希望对你有一定的参考价值。
Linux测试端口是否可用
TCP 端口测试
格式:telnet ip port
telnet 10.25.5.13 22 Trying 10.25.5.13... Connected to 10.25.5.13. //端口通 Escape character is ‘^]‘. 退出使用 quit
telnet 10.25.5.13 80 Trying 10.25.5.13... telnet:connect to address 10.25.5.13: Connection refused //端口不通
UDP 端口测试
例如测试告警信息通过syslog发送到某IP端口 nc -vuz 10.25.5.62 514 Connection to 10.25.5.62 514 port [udp/syslog] succeeded! //端口通
以上是关于Linux测试端口是否可用的主要内容,如果未能解决你的问题,请参考以下文章