Erro de rede no ubuntu 14.10

0

Eu tenho um servidor ubuntu 14.10 que demorou muito tempo para inicializar, quando ele inicializa, ele não faz com a rede (ele me deu longos atrasos na inicialização). dmesg | tail deu

[  225.013622] init: networking pre-start process (1401) terminated with status 1
[  225.015451] init: networking post-stop process (1405) terminated with status 100
[  228.512454] init: networking pre-start process (1415) terminated with status 1
[  228.514132] init: networking post-stop process (1419) terminated with status 100

Algum googling, esse problema parece estar relacionado ao arquivo / etc / network / interfaces, aqui está o conteúdo do arquivo: (em1 é o nome da única interface ethernet)

# 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 em1
iface em1 inet DHCP

# This is an autoconfigured IPv6 interface

Eu tenho que ligar um monitor e teclado, digite ifconfig em1; dhclient em1 para fazê-lo funcionar. Isso é bastante inconveniente. Alguma ideia? Obrigado.

    
por packetie 17.05.2015 / 23:37

1 resposta

1

Acho que você deve substituir "DHCP" por "dhcp":

# 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 em1
iface em1 inet dhcp

# This is an autoconfigured IPv6 interface

E reinicie a rede:

sudo /etc/init.d/networking restart
    
por Bilal 17.05.2015 / 23:48