नीचे Ubuntu पर करने की कोशिश कर रहा 12.04।
Eth0 और eth1 को कॉन्फ़िगर करने की कोशिश कर रहा है, eth0 ठीक काम करता है, लेकिन eth1 लाने में विफल रहा।
नीचे सेटिंग्स है /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
जब /etc/init.d/networking restart
किया जाता है, नीचे त्रुटि दे रहा है:
$ /etc/init.d/networking restart
RTNETLINK answers: File exists
Failed to bring up eth1
यहां तक कि ifdown eth1
और ifup eth1
ऊपर त्रुटि दे।
क्या कोई इसे हल करने में मदद कर सकता है?