需要先yum安装:
yum install nc
启动TCP服务:
nc -l 80
启动一个udp协议端口:
nc -l -u 8888
监控udp数据包:
tcpdump -i eth1 -s 0 port 8888
客户端测试:
nc -vuz 10.42.160.231 8888