Lack of IPv6 Support

Shannon Barber

Active Member
Jun 27, 2019
15
5
43
47
Could better IPv6 support please be prioritized.
The change needed to make it work with Ubuntu containers is very minor.
It's one setting in one file that PVE overrides to the wrong value.

IPv6AcceptRA in /etc/systemd/network/eth0.network needs to be true not false.
IPv6AcceptRA = true

 
Here's the patch ...

Code:
diff --git a/src/PVE/LXC/Setup/Base.pm b/src/PVE/LXC/Setup/Base.pm
--- a/src/PVE/LXC/Setup/Base.pm
+++ b/src/PVE/LXC/Setup/Base.pm
@@ -267,6 +267,7 @@ sub setup_systemd_networkd {     if (defined(my $ip = $d->{ip6})) {
         if ($ip eq 'dhcp') {
             $dhcp |= $DHCP6;           $accept_ra = 'true';
       } elsif ($ip eq 'auto') {
           $accept_ra = 'true';
       } elsif ($ip ne 'manual') {
 
Last edited:
Is there a specific reason why Proxmox Node/host GUI/web-portal network settings does not support SLAAC configuration like it's possible for LXCs?
I know I can modify `/etc/network/interfaces` but changes there would be removed when anything in the GUI is modified afterwards.