Linux网络抓包


tcpdump

yum install -y tcpdump

截取本机(192.168.31.147)和主机114.114.114.114之间的数据

tcpdump -n -i eth0 host 192.168.31.147 and 114.114.114.114

截取全部进入服务器的数据

tcpdump -n -i eth0 dst 192.168.31.147

抓取全部进入服务器的TCP数据包

tcpdump -n -i eth0 dst 192.168.31.147 or 192.168.31.157 and tcp