網卡或者驅動丟包
之前講過,如果 ethtool -S eth0
中有 rx_***_errors
那么很可能是網卡有問題,導致系統丟包,需要聯系服務器或者網卡供應商進行處理。
# ethtool -S eth0 | grep rx_ | grep errors rx_crc_errors: 0 rx_missed_errors: 0 rx_long_length_errors: 0 rx_short_length_errors: 0 rx_align_errors: 0 rx_errors: 0 rx_length_errors: 0 rx_over_errors: 0 rx_frame_errors: 0 rx_fifo_errors: 0
[root@bogon ~]# ethtool -S enahisic2i3 | grep rx_ | grep errors rx_errors: 0 rx_over_errors: 0 rx_crc_errors: 0 rx_frame_errors: 0 rx_fifo_errors: 0 rx_missed_errors: 0 rx_length_errors: 0
