ifconfig + FAILED de ifconfig em máquinas solaris

1

por favor conselho - qual o significado da palavra FAILED do comando ifconfig

  1. Dose significa que a rede da NIC não é estável até o momento?
  2. Não claramente se ifconfig ler o status da rede a cada alguns mili segundos ?, quer dizer, se a rede é estável, então o ifconfig deve retornar o status FAILED para OK?

yael

 ifconfig -a

   lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
       inet 127.0.0.1 netmask ff000000 
    e1000g0: flags=19000802<BROADCAST,MULTICAST,IPv4,NOFAILOVER,FAILED> mtu 0 index 2
         inet 0.0.0.0 netmask 0 
         groupname Mgmt_ipmp
         ether 0:21:28:58:ff:6 
    e1000g1: flags=11000803<UP,BROADCAST,MULTICAST,IPv4,FAILED> mtu 1500 index 3
          inet 0.0.0.0 netmask ff000000 broadcast 0.255.255.255
          groupname Mgmt_ipmp
          ether 0:21:28:58:ff:7 
    
por yael 22.10.2012 / 15:18

1 resposta

1

man ifconfig

seção chamada "INTERFACE FLAGS"

 FAILED

     The  interface  has  failed.  New  addresses  cannot  be
     created  on this interface. If this interface is part of
     an IP network multipathing group, a failover will  occur
     to another interface in the group, if possible

Às vezes, o IPMP percebe um problema com uma interface e a marca como FAILED (isso significa que o teste falhou e não que há um problema de hardware). Isso ocorre porque ser "o link está inativo" ou "o teste de ping falhou" (supondo que você tenha endereços de teste).

    
por 22.10.2012 / 17:06