I have recently attempted to connect the Ubuntu 20.04 LXC containers on my Proxmox 6.2 host via IPv6. My goal was to provide the containers with their addresses via DHCPv6, so I set up a dnsmasq with router advertisements to do the job.
The issue I am running into now is that, despite being set to IPv6 via DHCP in the web interface, the containers have router advertisements disabled in both sysctl and systemd-networkd like this:
When I manually set both these values to true and 1 respectively and restart systemd-networkd, everything works as it should, but unfortunately that isn't reboot-proof.
Is this a bug or is there an option in the web interface or configuration somewhere that controls this behavior? Thank you in advance!
The issue I am running into now is that, despite being set to IPv6 via DHCP in the web interface, the containers have router advertisements disabled in both sysctl and systemd-networkd like this:
Code:
# cat /etc/systemd/network/eth0.network
[Match]
Name = eth0
[Network]
Description = Interface eth0 autoconfigured by PVE
DHCP = both
IPv6AcceptRA = false
Code:
# sysctl net.ipv6.conf.eth0.accept_ra
net.ipv6.conf.eth0.accept_ra = 0
When I manually set both these values to true and 1 respectively and restart systemd-networkd, everything works as it should, but unfortunately that isn't reboot-proof.
Is this a bug or is there an option in the web interface or configuration somewhere that controls this behavior? Thank you in advance!