Hello!
I've recently updated 3 of our 4 nodes Proxmox 5.4 cluster to v6.0.
While I was preparing to update the latest node, I found out that my VMs migrated on the updated nodes are losing network access after a few minutes.
If I live migrate the VM to the node still in 5.4, the network is back in the VM and it stays working.
At soon as I migrate it back to a Proxmox 6 node, the network inside the VM work for a few minutes and then goes bozo again.
I noticed this in the dmesg, on the PVE 6.x nodes:
(the attribute type 5 thingy seems suspicious to me, it's only on the pve 6 nodes)
Network config is 2 x 2 x10gnic bounds. One bound is trunk port for VM traffic, the other bond is dedicated for network storage.
Interfaces:
Any idea what could be wrong. Some commands I might try for openvswitch to get some informations ?
I'm a OVS newbie
Thanks you!
I've recently updated 3 of our 4 nodes Proxmox 5.4 cluster to v6.0.
While I was preparing to update the latest node, I found out that my VMs migrated on the updated nodes are losing network access after a few minutes.
If I live migrate the VM to the node still in 5.4, the network is back in the VM and it stays working.
At soon as I migrate it back to a Proxmox 6 node, the network inside the VM work for a few minutes and then goes bozo again.
I noticed this in the dmesg, on the PVE 6.x nodes:
Code:
[ 214.767305] netlink: 'ovs-vswitchd': attribute type 5 has an invalid length.
[ 493.020271] device tap108i0 entered promiscuous mode
[ 493.066847] fwbr108i0: port 1(tap108i0) entered blocking state
[ 493.066851] fwbr108i0: port 1(tap108i0) entered disabled state
[ 493.067128] fwbr108i0: port 1(tap108i0) entered blocking state
[ 493.067134] fwbr108i0: port 1(tap108i0) entered forwarding state
[ 493.088534] netlink: 'ovs-vswitchd': attribute type 5 has an invalid length.
[ 493.088859] device fwln108o0 entered promiscuous mode
[ 493.110525] fwbr108i0: port 2(fwln108o0) entered blocking state
[ 493.110528] fwbr108i0: port 2(fwln108o0) entered disabled state
[ 493.110749] fwbr108i0: port 2(fwln108o0) entered blocking state
[ 493.110752] fwbr108i0: port 2(fwln108o0) entered forwarding state
[ 552.054034] device tap111i0 entered promiscuous mode
[ 552.098076] fwbr111i0: port 1(tap111i0) entered blocking state
[ 552.098080] fwbr111i0: port 1(tap111i0) entered disabled state
[ 552.098358] fwbr111i0: port 1(tap111i0) entered blocking state
[ 552.098361] fwbr111i0: port 1(tap111i0) entered forwarding state
[ 552.119806] netlink: 'ovs-vswitchd': attribute type 5 has an invalid length.
[ 552.120138] device fwln111o0 entered promiscuous mode
[ 552.140908] fwbr111i0: port 2(fwln111o0) entered blocking state
[ 552.140912] fwbr111i0: port 2(fwln111o0) entered disabled state
[ 552.141179] fwbr111i0: port 2(fwln111o0) entered blocking state
[ 552.141182] fwbr111i0: port 2(fwln111o0) entered forwarding state
[ 684.551647] device tap110i0 entered promiscuous mode
[ 684.596609] netlink: 'ovs-vswitchd': attribute type 5 has an invalid length.
[ 1509.438479] device tap109i0 entered promiscuous mode
[ 1509.485649] netlink: 'ovs-vswitchd': attribute type 5 has an invalid length.
(the attribute type 5 thingy seems suspicious to me, it's only on the pve 6 nodes)
Network config is 2 x 2 x10gnic bounds. One bound is trunk port for VM traffic, the other bond is dedicated for network storage.
Interfaces:
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual
iface eno3 inet manual
iface eno4 inet manual
iface enp4s0f0 inet manual
iface enp4s0f1 inet manual
iface enp4s0f2 inet manual
iface enp4s0f3 inet manual
#Management + Trunk bond
allow-vmbr0 bond0
iface bond0 inet manual
ovs_bonds eno1 eno2
ovs_type OVSBond
ovs_bridge vmbr0
ovs_options bond_mode=active-backup
#Storage bond
allow-vmbr1 bond1
iface bond1 inet manual
ovs_bonds eno3 eno4
ovs_type OVSBond
ovs_bridge vmbr1
ovs_options bond_mode=active-backup
# Management + Trunk bridge
auto vmbr0
iface vmbr0 inet manual
ovs_type OVSBridge
ovs_ports bond0 mgmt
# Storage bridge
auto vmbr1
iface vmbr1 inet manual
ovs_type OVSBridge
ovs_ports bond1 stor
#Management local interface
allow-vmbr0 mgmt
iface mgmt inet static
address 10.111.11.104
netmask 255.255.0.0
gateway 10.111.0.6
ovs_type OVSIntPort
ovs_bridge vmbr0
#Storage local interface
allow-vmbr1 stor
iface stor inet static
address 10.50.50.104
netmask 255.255.255.0
ovs_type OVSIntPort
ovs_bridge vmbr1
Any idea what could be wrong. Some commands I might try for openvswitch to get some informations ?
I'm a OVS newbie
Thanks you!