tx_packets: Trasmitted packets rx_packets: Received packets tx_errors: Trasmission errors rx_errors: Received errors rx_missed: Recieved misses align_errors: Received alignment errors tx_single_collisions: Trasmitted singular collisions tx_multi_collisions: Trasmitted multiple collisions unicast: Received unicast broadcast: Received broadcast multicast: Recieved multicast tx_aborted: Aborted trasmissions tx_underrun: Aborted underruns
Para uma melhor compreensão da terminologia:
An underrun error on an ethernet is a transmission error. The way most ethernet chips transmit packets is that they DMA packet data from memory into their internal transmit fifo for sending. They do not ususally load the entire packet into the fifo before transmitting (some may have fifos smaller than the max. pkt size), so they go grab the data as they need it - there is usually a low-water mark in the fifo which triggers this. A transmit fifo underrun will occur if the ethernet chip cannot obtain the local bus in order to get more packet data for the fifo, and the fifo becomes empty before the end of the packet has been reached.
multicast - imagine tentar se comunicar de um sistema para um número selecionado de outros broadcast - imagine tentar se comunicar de um sistema para todos os outros sistemas colisão - imagine o que acontecerá quando dois sistemas estiverem tentando se comunicar uns com os outros simultaneamente eles acabam bloqueando um ao outro alinhamento - imagine que você só pode se comunicar em unidades específicas. Palavras de 4 caracteres por vez apenas. Se houver um desalinhamento de caracteres, os sistemas não poderão se comunicar entre si. É o mesmo aqui.
Se você estiver interessado, pode valer a pena dar uma olhada no seguinte.