Questo è il mio file di interfacce:
auto eth0
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
auto eth1
iface eth1 inet static
address 192.168.2.10
netmask 255.255.255.0
gateway 192.168.2.1
Se ricomincio rete demone ottengo questo errore: eth1 is not up
. Voglio due gateway predefiniti per ottenere ciò che è menzionato nella risposta accettata alla domanda qui . Ecco come dovrebbe essere la mia tabella di routing:
Destination Gateway Genmask Flags Metric Ref Use Iface
default 192.168.1.1 0.0.0.0 UG 0 0 0 eth0
default 192.168.2.1 0.0.0.0 UG 0 0 0 eth1
192.168.1.0 * 255.255.255.0 U 0 0 0 eth0
192.168.2.0 * 255.255.255.0 U 0 0 0 eth1
Ho ottenuto la tabella sopra usando ifconfig
e route add default gw
comandi. Ma voglio farlo con il /etc/network/interfaces
file. Come posso farlo?
Update1:
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
up ip route del 192.168.1.0/24
post-up ip route add 192.168.1.0/24 dev eth0 metric 1
up route add default gw 192.168.1.1 metric 1