利用TELNET命令和NC命令检测服务器端口是否开通(TCP/UDP)
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
Linux下 Netstat工具 简称NC,号称是网络工具中的“瑞士军刀”。 我们都知道检测TCP端口是否可通的命令是telnet,在Windows和Linux都可以用,但telnet不能检测udp包。
nc连接交换机测试端口
[root@free ~] nc 172.24.0.75 23
Telnet 检测TCP端口
[root@free ~]# telnet 127.0.0.1 8080
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
NC 检测TCP端口
[root@test ~]# nc -vz 127.0.0.1 8080
Connection to 127.0.0.1 8080 port [tcp/*] succeeded!
NC 检测UDP端口
检测UDP端口的时候不会立即返回测试结果,可能需要等待几秒钟
[root@test ~]# nc -uz 127.0.0.1 8080
Connection to 127.0.0.1 8080 port [udp/*] succeeded!
测试UDP连接方法
A机器,发布服务端口。监听机器上运行:
使用UDP模式监听本机的8080 端口
nc -ul 8090
B机器,连接A机器上运行:
nc -u x.x.x.x 1080
接下来就可以使用UDP模式向该IP的8090 端口发送&接收信息。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献4条内容
所有评论(0)