Proxmox-Version: 2.3-12
When adding some other IPv4-Addresses via the proxmox Interface to a container, the v6 configuration gets removed. (one can set it again with vzctl set <VMID> --save --ipadd <IP-Addr>)
As far as I can see, there's still no bit of v6 support added to proxmox (besides the default OS configuration). Are you even thinking about supporting v6 in the future?
What do I have to do to get at least basic v6 support added to proxmox? Can I get this implemented when buying a support subscription?
Again, here's what needs to be done to get v6 working with proxmox:
1. Add this to your /etc/sysctl.conf:
2. Add the v6-Address to your container:
3. Add a proxy ARP entry:
4. OPTIONAL: Verify:
When adding some other IPv4-Addresses via the proxmox Interface to a container, the v6 configuration gets removed. (one can set it again with vzctl set <VMID> --save --ipadd <IP-Addr>)
As far as I can see, there's still no bit of v6 support added to proxmox (besides the default OS configuration). Are you even thinking about supporting v6 in the future?
What do I have to do to get at least basic v6 support added to proxmox? Can I get this implemented when buying a support subscription?
Again, here's what needs to be done to get v6 working with proxmox:
1. Add this to your /etc/sysctl.conf:
Code:
net.ipv6.conf.all.forwarding=1
net.ipv6.conf.all.proxy_ndp=1
2. Add the v6-Address to your container:
Code:
vzctl set 102 --save --ipadd 2a04:a04:3:102::1
3. Add a proxy ARP entry:
Code:
ip -6 neigh add proxy 2a04:a04:3:102::1 dev vmbr0
4. OPTIONAL: Verify:
Code:
ping6 2a04:a04:3:102::1
PING 2a04:a04:3:102::1(2a04:a04:3:102::1) 56 data bytes
64 bytes from 2a04:a04:3:102::1: icmp_seq=1 ttl=58 time=27.6 ms
64 bytes from 2a04:a04:3:102::1: icmp_seq=2 ttl=58 time=27.3 ms
64 bytes from 2a04:a04:3:102::1: icmp_seq=3 ttl=58 time=27.6 ms
64 bytes from 2a04:a04:3:102::1: icmp_seq=4 ttl=58 time=27.9 ms
^C
--- 2a04:a04:3:102::1 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3004ms
rtt min/avg/max/mdev = 27.375/27.665/27.989/0.247 ms
Last edited: