ifconfig-dropped

drop的包是因为网卡的buffer满了

查看当前网卡的buffer size情况
ethtool -g eth0
Ring parameters for eth0:
Pre-set maximums:
RX:             4096
RX Mini:        0
RX Jumbo:       0
TX:             4096
Current hardware settings:
RX:             256
RX Mini:        0
RX Jumbo:       0
TX:             256
 

用以下命令可以修改大小(需要根用户权限)。

$ ethtool -G eth0 rx 512

原文地址:https://www.cnblogs.com/laozhizi/p/4734911.html