Eu tenho problemas com redes. Os problemas começaram quando o ISP (Fiber) forneceu a mesma sub-rede para ambas as linhas. eth0 78.56.xxx.xxx eth1 78.56.yyy.yyy
@:route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 78.56.255.254 0.0.0.0 UG 0 0 0 eth0
78.56.192.0 0.0.0.0 255.255.192.0 U 0 0 0 eth0
78.56.192.0 0.0.0.0 255.255.192.0 U 0 0 0 eth1
169.254.0.0 0.0.0.0 255.255.0.0 U 1000 0 0 lan1
172.22.22.0 0.0.0.0 255.255.255.0 U 0 0 0 lan1
@:ifconfig
eth0 inet addr:78.56.xxx.yyy Bcast:78.56.255.255 Mask:255.255.192.0
eth1 inet addr:78.56.yyy.yyy Bcast:78.56.255.255 Mask:255.255.192.0
Configuração (quando era antigo IP 85.206.YYY.YYY tudo funcionou bem):
allow-hotplug eth0
iface eth0 inet dhcp
allow-hotplug eth1
iface eth1 inet dhcp
post-up ip route add 78.56.192.0/18 dev eth1 src 78.56.yyy.yyy table eth1
post-up ip route add default via 78.56.255.254 dev eth1 table eth1
post-up ip rule add table eth1 from 78.56.yyy.yyy
E agora há um problema com a renovação do DHCP. Quando o eth1 é executado com ifup, tudo funciona bem, mas quando a renovação começa, o acesso à linha desaparece (ifdown eth1 & ifup eth1 e funciona bem novamente até a renovação)
dhclient[2823]: message repeated 8 times: [ DHCPREQUEST of 78.56.225.235 on eth1 to 78.56.255.254 port 67 (xid=0x6fe207d3)]
dhcpdump:
eth0
IP: 78.56.XXX.XXX (0:13:3b:f:48:e2) > 78.56.255.254 (0:0:5e:0:1:10)
eth1
IP: 0.0.0.0 (0:13:3b:f:48:e1) > 255.255.255.255 (ff:ff:ff:ff:ff:ff)
É possível corrigir esse problema? Talvez o que eu perdi ou fiz de errado?
Tags networking dhcp linux subnet