本篇内容介绍了“Linux的udp端口怎么测试”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
一、tenlnet测试tcp
[root@test ~]# telnet 192.168.209.121 123 Trying 192.168.209.121… telnet: connect to address 192.168.209.121: Connection refused telnet: Unable to connect to remote host: Connection refused
如上所示,是连接拒绝的情况。证明未监听或被墙 。正常连接的情况类以如下:
#telnet 192.168.209.121 110 +OK Dovecot ready.
上面显示的是一个mail服务器正常连接的情况。
二、nc测试udp端口
安装nc
yum install -y nc
测试
[root@test ~]# nc -vuz 192.168.209.121 123 Connection to 192.168.209.121 123 port [udp/ntp] succeeded!
实际使用时可以只用-u参数,-u代表udp协议 ,-v代表详细模式,-z代表只监测端口不发送数据。