我正在寻找是什么导致在接口上丢弃数据包:
RX packets:9064457 errors:0 dropped:4736 overruns:0 frame:0 TX packets:6388938 errors:0 dropped:0 overruns:0 carrier:0
我知道这不是防火墙,因为它甚至在它达到之前就被丢弃了。
我做了一个转储文件:tcpdump -n -s0 -w interface_errors.pcap -i eth1
然后我尝试用tshark / tcpdump来分析(重放)这个转储:
tshark -r interface_errors.pcap not ip and not ipv6 and not arp
有了这个基本上我得到的是一些LLDP多播,IPX数据包从一些Windows机器。 有没有办法进一步debugging,以确定接口上的这些错误的根本原因?
谢谢