Linux desarme meu endereço ip

0

Parece que meu Ubuntu 14 continua excluindo o endereço IP da minha eth0.

Alguém viu isso acontecer antes? Onde devo começar a verificar?

Eu não tenho nenhum log para mostrar: depois de definir o endereço com ifconfig eth0 10.10.0.4 netmask 255.0.0.0 o IP é visível em ifconfig, mas desaparece depois de alguns minutos.

EDITAR:

$ dmesg | grep eth0
[    5.293971] tg3 0000:04:00.0 eth0: Tigon3 [partno(BCM95723) rev 5784100] (PCI Express) MAC address 3c:4a:92:b2:a2:1e
[    5.293974] tg3 0000:04:00.0 eth0: attached PHY is 5784 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
[    5.293976] tg3 0000:04:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[    5.293978] tg3 0000:04:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
[    9.124499] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   10.758438] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   10.758756] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   13.183081] tg3 0000:04:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   13.183091] tg3 0000:04:00.0 eth0: Flow control is on for TX and on for RX
[   13.183104] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    
por Romain Jouin 30.10.2015 / 00:12

1 resposta

0

Você terá que configurá-lo no arquivo / etc / network / interfaces

O formato é assim para um IP estático:

auto eth0
iface eth0 inet static
  address 10.10.0.4
  netmask 255.0.0.0
  gateway 10.10.0.1
  broadcast 10.255.255.255
  network 10.0.0.0
  dns-nameservers 8.8.8.8 8.8.4.4
  dns-search domain-search.com

Se você quiser o dhcp:

auto eth0
iface eth0 inet dhcp

Depois disso, salve o arquivo e reinicie sua rede: /etc/init.d/networking restart (acredito que esta é a maneira antiga de fazer isso, mas deve funcionar).

    
por 30.10.2015 / 00:48

Tags