Running Proxmox with two 10GbE interfaces, one in the LAN for directly accessible VMs and one in a separate INT network for Proxmox (and some VM).
Over IPv4 everything works fine, but over IPv6 I'm frequently disconnected from the server (SSH with
My Proxmox network setup:
(vmbr10/11 are bridges between VMs)
I think the issue is somewhere with `eno2`, when using a dedicated PCIe NIC passed through to the VM and eno2 disconnected I didn't experience those issues.
Over IPv4 everything works fine, but over IPv6 I'm frequently disconnected from the server (SSH with
root@server:~# client_loop: send disconnect: Broken pipe
for example). It isn't a general problem, other IPv6 connections both same network and through the firewall run perfectly fine.My Proxmox network setup:
Code:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
ovs_type OVSPort
ovs_bridge vmbr01
ovs_mtu 9000
#INT
auto eno2
iface eno2 inet manual
ovs_type OVSPort
ovs_bridge vmbr02
ovs_mtu 9000
#LAN
iface enp5s0 inet manual
auto veno1
iface veno1 inet dhcp
ovs_type OVSIntPort
ovs_bridge vmbr01
ovs_mtu 9000
#INT proxmox
iface veno1 inet6 dhcp
auto vmbr01
iface vmbr01 inet manual
ovs_type OVSBridge
ovs_ports eno1 veno1
ovs_mtu 9001
#INT bridge
auto vmbr02
iface vmbr02 inet manual
ovs_type OVSBridge
ovs_ports eno2
ovs_mtu 9000
#LAN bridge
auto vmbr10
iface vmbr10 inet manual
ovs_type OVSBridge
auto vmbr11
iface vmbr11 inet manual
ovs_type OVSBridge
post-up echo 1 > /proc/sys/net/ipv6/conf/all/accept_ra
I think the issue is somewhere with `eno2`, when using a dedicated PCIe NIC passed through to the VM and eno2 disconnected I didn't experience those issues.