码迷,mamicode.com
首页 > 其他好文 > 详细

测试utp端口是否开放

时间:2015-11-24 13:07:00      阅读:409      评论:0      收藏:0      [点我收藏+]

标签:udp端口 nc

测试tcp端口我们可以用  telnet ip port,来验证端口是否正常监听,但是UTP端口呢?

使用Telnet测试如下:

[root@saltslave ~]# telnet 192.168.18.120 514

Trying 192.168.18.120...

telnet: connect to address 192.168.18.120: Connection refused

很显然,telnet被拒绝了


使用nc来测试

[root@saltslave ~]# nc -uz 192.168.18.120 514

Connection to 192.168.18.120 514 port [udp/syslog] succeeded!


-u   udp模式

-z  使用输入/输出模式,只在扫描通信端口时使用

测试utp端口是否开放

标签:udp端口 nc

原文地址:http://frees.blog.51cto.com/7796020/1716213

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!