TCPDump使用

## TCP 抓包

查看当前使用的网卡,一般就是流量变化最大的网卡:
watch  cat  /proc/net/dev

# 根据目标ip进行过滤
tcpdump -i eth2 dst 192.168.10.200

# 根据源端口进行过滤
tcpdump src port 8088

# 根据目标端口进行过滤
tcpdump dst port 8088

具体使用参考:
https://blog.csdn.net/weixin_...

你可能感兴趣的:(tcpdump)