So che questa è una domanda di 1 anno, ma è la prima su Google, quindi forse posso aggiungere 5 centesimi ad essa.
Innanzitutto non ero a conoscenza di questa regola mod 8 sul campo del frame ... È una regola del driver o una regola del kernel?
Nella poca esperienza che ho, questi numeri sono abbastanza generici e ulteriori informazioni possono essere ottenute da ethtool
(se il driver lo supporta) es: questo è da watch
comando.
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
A seconda del driver, ci saranno diversi campi ethtool
e i
ifconfig
campi possono puntare anche a frame di dimensioni inferiori o grandi.
Se la tua scheda di rete e driver lo supportano puoi (o dovresti) fare es:
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
per ottenere maggiori informazioni (abilitare la visualizzazione delle informazioni in ethtool). Sto usando il driver macb qui ... quindi controlla il ethtool
tuo driver.
ethtool -i eth1
Questo è ciò che mi aiuta a capire di solito cosa sta succedendo.
A volte non ci sono errori ma i pacchetti sono danneggiati ... quindi è più un problema di PHYsical o di driver ... e a volte gli sniffer mostrano che tutto è corretto ma c'è un problema dopo che arriva al driver / kernel (questo è il caso sopra in realtà).
Alcuni altri possono essere ottenuti da netstat -s
, o se lo metti in uno script (per piccoli sistemi integrati):
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
poiché netstat -s
potrebbe non essere disponibile.