Tentando fazer abaixo no Ubuntu 12.04.
Tentando configurar eth0 e eth1, eth0 funciona bem, mas não conseguiu trazer eth1.
Abaixo estão as configurações /etc/network/interfaces
:
auto eth0 eth1
iface eth0 inet static
address 172.19.20.186
netmask 255.255.255.252
network 172.19.20.184
broadcast 172.19.20.187
gateway 172.19.20.185
iface eth1 inet static
address 172.18.182.55
netmask 255.255.254.0
gateway 172.18.182.1
up route add -net 172.19.26.0/23 gw 172.19.20.185 dev eth0
up route add -net 172.19.24.0/23 gw 172.19.20.185 dev eth0
up route add default gw 172.18.182.1 dev eth1
Quando /etc/init.d/networking restart
terminar, dê abaixo o erro:
$ /etc/init.d/networking restart
RTNETLINK answers: File exists
Failed to bring up eth1
Mesmo ifdown eth1
e ifup eth1
dando erro acima.
Alguém pode ajudar a resolver isso?
networking
ethernet
interface
Test1234
fonte
fonte
Respostas:
Eu acho que você só precisa de um gateway padrão. Você configurou 3:
gateway 172.19.20.185
,gateway 172.18.182.1
eup route add default gw 172.18.182.1 dev eth1
.Experimente o seguinte arquivo de interfaces:
EDIT : Tente isso para configurar manualmente as interfaces, para que possamos ver onde está o erro.
ifconfig eth0 down; ifconfig eth1 down; ifconfig eth2 down; ifconfig eth3 down
ifconfig eth0 172.19.20.186 netmask 255.255.255.252 up
ifconfig eth1 172.18.182.55 netmask 255.255.254.0 up
route add default gw 172.18.182.1
route add -net 172.19.26.0/23 gw 172.19.20.185 dev eth0
route add -net 172.19.24.0/23 gw 172.19.20.185 dev eth0
fonte
Às vezes, liberar a interface antes de trazê-la funciona:
fonte
Muito provavelmente o seu NetworkManager está em conflito com as interfaces / etc / network /. Não tenho certeza sobre o caso dhcp, mas se você configurou os IPs estáticos usando a GUI do NetworkManager, essas interfaces teriam sido definidas em dois locais separados, daí o conflito.
Tente desativar o seu Network Manager usando os seguintes comandos.
você pode ativar seu gerente de rede novamente
depois disso, sua configuração em / etc / network / interfaces será tomada na reinicialização.
fonte