有人可以详细说明输出RX packets
中各个字段之间的区别吗?ifconfig
例如,假设我运行ifconfig
并看到以下内容:
eth0 Link encap:Ethernet HWaddr AA:BB:CC:DD:EE:FF
inet addr:1.1.1.1 Bcast:1.1.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:202723544 errors:0 dropped:4959 overruns:0 frame:37
TX packets:158354057 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:4261083782 (3.9 GiB) TX bytes:1224803677 (1.1 GiB)
Interrupt:83 Memory:f6bf0000-f6c00000
errors:
dropped:
overruns
和有什么区别frame:
我在这一点上的猜测(基于一些模糊的谷歌搜索)是,frame:
当网卡分析传入帧时,它特别与 CRC 失败有关,这errors:
是一个更广泛的通用类别。话又说回来......如果是这样的话,我希望这两个字段都显示数字。
答案1
这些信息的记录很少。我会告诉你我从我的经历中了解到的情况。
frame
仅计算未对齐的帧,这意味着长度不能被 8 整除的帧。由于该长度不是有效帧,因此会被丢弃。同时
errors
计算 CRC 错误、太短帧和太长帧。overruns
计算 FIFO 溢出的次数,这是由于缓冲区已满且内核无法清空缓冲区的速率造成的。最后,
dropped
当接口未配置 IPv6 时,对意外的 VLAN 标记或接收的 IPv6 帧等进行计数。
答案2
我知道这是一个 1 年前的问题,但它在 Google 上排名第一,所以也许我可以添加 5 美分。
首先,我不知道帧字段上有这个 mod 8 规则...它是驱动程序规则还是内核规则?
根据我的经验,这些数字非常通用,可以从ethtool
(如果驱动程序支持它)获取更多信息,例如:这是来自watch
命令。
Every 1s: ethtool -S eth1 | grep rx_ && echo && ifconfig eth1 1970-01-01 00:21:07
rx_octets: 12635134290
rx_frames: 8488675
rx_broadcast_frames: 103
rx_multicast_frames: 0
rx_pause_frames: 0
rx_64_byte_frames: 113
rx_65_127_byte_frames: 47
rx_128_255_byte_frames: 186340
rx_256_511_byte_frames: 1
rx_512_1023_byte_frames: 0
rx_1024_1518_byte_frames: 8302174
rx_greater_than_1518_byte_frames: 0
rx_undersized_frames: 0
rx_oversize_frames: 0
rx_jabbers: 0
rx_frame_check_sequence_errors: 0
rx_length_field_frame_errors: 0
rx_symbol_errors: 0
rx_alignment_errors: 0
rx_resource_errors: 283
rx_overruns: 132
rx_ip_header_checksum_errors: 0
rx_tcp_checksum_errors: 0
rx_udp_checksum_errors: 0
eth1 Link encap:Ethernet HWaddr AA:BB:CC:DD:20:16
inet addr:192.168.0.10 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::a8bb:ccff:fedd:2016/64 Scope:Link
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:8488675 errors:415 dropped:4 overruns:132 frame:283
TX packets:647464 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:3892403548 (3.6 GiB) TX bytes:62273943 (59.3 MiB)
Interrupt:147 Base address:0xc000
根据驱动程序的不同,其中会有不同的字段,ethtool
并且
ifconfig
字段也可以指向尺寸过小/尺寸过大的帧。
如果您的网卡和驱动程序支持它,您可以(或应该)执行以下操作:
ifdown eth1 && modprobe -r macb && modprobe macb && ifup eth1 && ethtool -offload eth1 rx off tx off && ethtool -K eth1 gso off && ethtool --show-offload eth1
为了获得更多信息(允许在 ethtool 中显示信息)。我在这里使用 macb 驱动程序...所以请检查ethtool
您的驱动程序。
ethtool -i eth1
这通常可以帮助我理解正在发生的事情。
有时没有错误,但数据包已损坏...那么这更多是物理或驱动程序问题...有时嗅探器显示一切正确,但在到达驱动程序/内核后出现问题(这是上面的情况)实际上)。
更多信息可以从 获得netstat -s
,或者如果您将其放入脚本中(对于小型嵌入式系统):
awk '(f==0) { i=1; while ( i<=NF) {n[i] = $i; i++ }; f=1; next} (f==1){ i=2; while ( i<=NF){ printf "%s = %d\n", n[i], $i; i++}; f=0}' /proc/net/netstat
因为netstat -s
可能不可用。