端口检测方法

By | 2024 年 10 月 17 日

TCP的可以用telnet

telnet xx.xxx.xx.xx port

UDP的,linux下需要安装netcat包

nc -vuz xxx.xxx.xxx.xxx port

如果有防火墙拦截,nc命令也是succeeded。因为UDP本身就只有单向发的能力,所以...

UDP检测,就需要在对端,执行监听命令,来显示接收到的数据。

nc -u -l -p port
当然也可输出到文件
nohub nc -u -l -p 5000>/path/to/logfile.log 2>&1 &
2>&1 确保标准错误 stderr也能输出进入文件

发表回复

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据