时间:2017年08月06日 | 作者 : liuhui | 分类 : 网络 | 浏览: 11294次 | 评论 0 人
阿里云限量代金券 | 此广告位出租25元/月 |
一般情况下测试端口是否监听都是使用的telnet命令,不过telnet只对tcp端口的监测时有用,如果要对udp端口的监听做测试就需要用到瑞士军刀nc了。
一、tenlnet测试tcp
[root@test ~]# telnet 192.168.10.100 123
Trying 192.168.10.100…
telnet: connect to address 192.168.10.100: Connection refused
telnet: Unable to connect to remote host: Connection refused
如上所示,是连接拒绝的情况。证明未监听或被墙 。正常连接的情况类以如下:
#telnet 192.168.10.88 110
+OK Dovecot ready.
上面显示的是一个mail服务器正常连接的情况。
二、nc测试udp端口
[root@test ~]# nc -vuz 192.168.10.100 123
Connection to 192.168.10.100 123 port [udp/ntp] succeeded!
实际使用时可以只用-u参数,-u代表udp协议 ,-v代表详细模式,-z代表只监测端口不发送数据。
推荐您阅读更多有关于“”的文章
Powered By Z-Blogphp
分享:
支付宝
微信