O “/etc/init.d/networking restart” falha ao atualizar eth0 / eth1 no meu Ubuntu 14.04 LTS

1

No meu Ubuntu 14.04.1 LTS, "/etc/init.d/networking restart" não parece atualizar as interfaces eth0 / eth1. O Network Manager foi desligado na última reinicialização e "/ etc / network / interfaces" foi atualizado para usar IP estático em ambas as interfaces eth0 / eth1, além de adicionar rota estática a cada um. No entanto, nada muda depois de problemas "/etc/init.d/networking restart" ou "stop" & "começar".

    
por user401549 24.12.2014 / 02:48

2 respostas

2

O comando /etc/init.d/networking restart foi desativado em 14.04.

Para reiniciar suas interfaces, você precisa usar:

sudo ifdown eth0 && sudo ifdown eth1 && sudo ifup eth0 && sudo ifup eth1

Encontrei uma explicação para isso aqui - link :

Restarting networking on a desktop machine will cause dbus and a bunch of service to stop and never be started again, usually leading to the whole system being unusable.

As Ubuntu does event based network bring up, there quite simply isn't a way to undo it all and redo it all, so a restart just isn't plain possible. The recommended way instead is to use ifdown and ifup on the interfaces you actually want to reconfigure

    
por 24.12.2014 / 07:35
-1

Modifique o arquivo de interfaces e reinicie o computador. Não reinicie o serviço porque nem sempre funciona. Postar os arquivos de configuração também nos ajuda a identificar quaisquer erros.

    
por 24.12.2014 / 03:47