Esse é o seu problema, por padrão o debian vem com: allow-hotplug eth0
Confira a documentação oficial aqui: link
Eu tenho um servidor rodando Debian 6 com dois endereços IP estáticos atribuídos: eth0 e eth0: 1 (interface virtual da eth0). Na inicialização, os dois devem receber seus IPs atribuídos ... mas eth0 não.
/ etc / network / interfaces:
iface eth0 inet static
address 192.168.9.171
netmask 255.255.255.0
network 192.168.9.0
broadcast 192.168.9.255
gateway 192.168.9.23
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 192.168.9.23 192.168.9.41
dns-search ourdomain.local
auto eth0:1
iface eth0:1 inet static
address 192.168.9.11
netmask 255.255.255.0
network 192.168.9.0
broadcast 192.168.9.255
gateway 192.168.9.23
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 192.168.9.23 192.168.9.41
dns-search ourdomain.local
ifconfig:
encapsulamento eth0 Link: Ethernet HWaddr 00: 12: 79: 95: a4: e7 inet6 addr: fe80 :: 212: 79ff: fe95: a4e7 / 64 Escopo: Link UP TRANSMISSÃO EM FUNCIONAMENTO MULTICAST MTU: 1500 Métrica: 1 Pacotes RX: 10378 erros: 0 descartados: 8 overruns: 0 frame: 0 Pacotes TX: 2256 erros: 0 caiu: 0 superações: 0 portador: 0 colisões: 0 txqueuelen: 1000 Bytes RX: 1634657 (1,5 MiB) bytes TX: 453396 (442,7 KiB) Interrupção: 17
eth0: 1 Encaps de ligação: Ethernet HWaddr 00: 12: 79: 95: a4: e7 inet addr: 192.168.9.11 Bcast: 192.168.9.255 Máscara: 255.255.255.0 UP TRANSMISSÃO EM FUNCIONAMENTO MULTICAST MTU: 1500 Métrica: 1 Interrupção: 17
lo Link encap: loopback local inet addr: 127.0.0.1 Máscara: 255.0.0.0 inet6 addr: :: 1/128 Escopo: Host UP LOOPBACK RUNNING MTU: 16436 Métrica: 1 Pacotes RX: 550 errors: 0 dropped: 0 overruns: 0 frame: 0 Pacotes TX: 550 erros: 0 caiu: 0 superou: 0 portador: 0 colisões: 0 txqueuelen: 0 Bytes RX: 189714 (185,2 KiB) bytes TX: 189714 (185,2 KiB) '
Alguma ideia? A única maneira de obter um IP é se eu ifconfig eth0 192.168.9.171
.
Esse é o seu problema, por padrão o debian vem com: allow-hotplug eth0
Confira a documentação oficial aqui: link
Tags networking ifconfig linux