Compreender netstat -i flgs

2

Alguém pode me explicar o que cada opção em Flg significa?

[root@apple ~]# netstat -i
Kernel Interface table
Iface       MTU Met    RX-OK RX-ERR RX-DRP RX-OVR    TX-OK TX-ERR TX-DRP TX-OVR Flg
eth0       1500   0   110512      0      0      0     6660      0      0      0 BMRU
eth1       1500   0   110713      0      0      0     4533      0      0      0 BMRU
eth2       1500   0      733      0      0      0       17      0      0      0 BMRU
lo        16436   0       45      0      0      0       45      0      0      0 LRU

E há mais alguma coisa?

    
por Ask and Learn 14.01.2014 / 04:49

1 resposta

3

Eles são abordados aqui no guia: Guia de administradores de rede do Linux Capítulo 5. Configurando a Rede TCP / IP .

trecho

The last column shows the flags that have been set for this interface. These characters are one-character versions of the long flag names that are printed when you display the interface configuration with ifconfig:

  • B = Um endereço de transmissão foi definido.
  • L = Esta interface é um dispositivo de loopback.
  • M = Suporta multicast
  • O = O ARP está desativado para esta interface.
  • P = Esta é uma conexão ponto-a-ponto.
  • R = A interface está em execução.
  • U = Interface está ativa.
por 14.01.2014 / 05:15