I've got a test machine with a 10 gig NIC and two 1 gig NICs. The 10 gig NIC is connected to a 10 gig interface on my switch and one of the gigabit NICs is also connected to the same switch. As part of my testing I have set up these two NICs in an active-backup bond like so:
This works perfectly fine, I can SSH in, access the web UI, the whole nine yards. But if I go into the network tab and set the MTU for all the interfaces (physical and virtual) to 9000 and click Apply Configuration I can no longer SSH in or access the web UI. If I remote in using IPMI the node can ping google just fine. If I remove the MTU directives and reboot everything is fine again.
Anyone have any idea why this is happening?
Code:
auto lo
iface lo inet loopback
auto enp1s0
iface enp1s0 inet manual
auto eno1
iface eno1 inet manual
iface eno2 inet manual
auto bond0
iface bond0 inet manual
bond-slaves eno1 enp1s0
bond-miimon 100
bond-mode active-backup
bond-primary enp1s0
auto vmbr0
iface vmbr0 inet static
address 192.168.0.37/24
gateway 192.168.0.1
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
This works perfectly fine, I can SSH in, access the web UI, the whole nine yards. But if I go into the network tab and set the MTU for all the interfaces (physical and virtual) to 9000 and click Apply Configuration I can no longer SSH in or access the web UI. If I remote in using IPMI the node can ping google just fine. If I remove the MTU directives and reboot everything is fine again.
Anyone have any idea why this is happening?