Eth0 liga com o DHCP após a reinicialização

1

Eu tenho o SUPERMICRO SYS-5015A-EHF-D525 com IPMI e estou tendo um problema estranho durante a reinicialização. Estou executando o servidor LTS do Ubuntu 12.04.2.

A interface de rede "primária" que está sendo usada para atividade é eth1. Está definido para um endereço estático de 10.10.35.70 (veja o código abaixo).

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
#auto eth1
#iface eth1 inet dhcp

auto eth1
iface eth1 inet static
        address 10.10.35.70
        netmask 255.255.255.0
        gateway 10.10.35.1
        dns-nameservers 208.67.222.222 208.67.220.220

A interface IPMI compartilha eth0. Eu pensei que estava desativado, mas na reinicialização ele age como se fosse configurado para dhcp e agarra e endereço IP. A interface IPMI está configurada para usar 10.10.35.71, mas não está definida no Ubuntu. Saída de ifconfig após a reinicialização:

~$ ifconfig
eth0      Link encap:Ethernet  HWaddr 00:25:90:c8:0b:98
          inet addr:10.10.35.100  Bcast:10.10.35.255  Mask:255.255.255.0
          inet6 addr: fe80::225:90ff:fec8:b98/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1032849 errors:0 dropped:1 overruns:0 frame:0
          TX packets:427403 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:194936769 (194.9 MB)  TX bytes:62104825 (62.1 MB)
          Interrupt:16 Memory:fe9e0000-fea00000

eth1      Link encap:Ethernet  HWaddr 00:25:90:c8:0b:99
          inet addr:10.10.35.70  Bcast:10.10.35.255  Mask:255.255.255.0
          inet6 addr: fe80::225:90ff:fec8:b99/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:4089738 errors:0 dropped:1400 overruns:0 frame:0
          TX packets:1561324 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:3533629321 (3.5 GB)  TX bytes:149875516 (149.8 MB)
          Interrupt:17 Memory:feae0000-feb00000

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:7628905 errors:0 dropped:0 overruns:0 frame:0
          TX packets:7628905 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:1978672469 (1.9 GB)  TX bytes:1978672469 (1.9 GB)

Quando o sistema reinicializa, os endereços IP duplos causam problemas de roteamento e conectividade em alguns casos. Eu posso executar sudo ifconfig eth0 down , mas gostaria de determinar uma maneira de impedir que a eth0 obtenha um endereço IP em primeiro lugar.

    
por Everette Mills 16.09.2013 / 22:37

1 resposta

1

Adicione uma estrofe para o seu cartão eth0 em /etc/network/interfaces com a linha, isso impedirá que o gerente de rede faça o que quiser.

iface eth0 inet manual
    
por stedotmartin 16.09.2013 / 22:42