一、查看某個埠接收到的數據 [root@localhost ~]# tcpdump -i eth0 port 3120 # 監聽從3120埠進來的數據包 [root@localhost ~]# tcpdump -s 0 -X 'tcp dst port 3120' 1. 其中etho為網卡名稱, ...
一、查看某個埠接收到的數據
[root@localhost ~]# tcpdump -i eth0 port 3120 # 監聽從3120埠進來的數據包 [root@localhost ~]# tcpdump -s 0 -X 'tcp dst port 3120'
1. 其中etho為網卡名稱,查看網卡可以通過:ifconfig命令查看。
2. 把port改為你想要監聽的埠即可在linux下監聽某個埠的數據。但是列印出來的數據不是很人性化。如果是udp,記得修改tcp為udp。
https://blog.csdn.net/qq_41262248/article/details/80683423
https://blog.csdn.net/lihe55966/article/details/53611666