Hi,
I just upgraded to pve 7.4 (iso) and, as I had to reboot anyway, added a dual 10GbE card.
Unfortunately, the lower port on the card turned out to be ens3f1 and not ens3f0 as I thought.
So I had to move the IP to the other port.
After that, it still didn't work.
Turns out applying the changes moved the IP but didn't delete the route, so I ended up with two routes for the same net:
# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default fritz.box 0.0.0.0 UG 0 0 0 vmbr0
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 vmbr0
192.168.2.0 0.0.0.0 255.255.255.0 U 0 0 0 bond0
192.168.3.0 0.0.0.0 255.255.255.0 U 0 0 0 ens3f0
192.168.3.0 0.0.0.0 255.255.255.0 U 0 0 0 ens3f1
After deleting the stale route manually with
But that should happen automatically when an IP is removed from an iface, right?
I just upgraded to pve 7.4 (iso) and, as I had to reboot anyway, added a dual 10GbE card.
Unfortunately, the lower port on the card turned out to be ens3f1 and not ens3f0 as I thought.
So I had to move the IP to the other port.
After that, it still didn't work.
Turns out applying the changes moved the IP but didn't delete the route, so I ended up with two routes for the same net:
# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default fritz.box 0.0.0.0 UG 0 0 0 vmbr0
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 vmbr0
192.168.2.0 0.0.0.0 255.255.255.0 U 0 0 0 bond0
192.168.3.0 0.0.0.0 255.255.255.0 U 0 0 0 ens3f0
192.168.3.0 0.0.0.0 255.255.255.0 U 0 0 0 ens3f1
After deleting the stale route manually with
route del -net 192.168.3.0/24 ens3f0
, everything works.But that should happen automatically when an IP is removed from an iface, right?