Page:
Issue - IPv6
Pages
CLI - proxmox-boot-tool
CLI - pvebcache
CLI - pvessh
CLI - qm
CLI
CVE-2026-31431
Ceph - Deployment
Ceph - Maintenance
Ceph - RDMA
DirtyFrag
Hardware Requirements
Home
Install from Debian
Install from ISO
Install from openEuler
Issue - ARM 32-bit
Issue - IPv6
Issue - MSIx PBA Outside of Specified BAR
Issue - PCI Passthrough
Issue - Raspberry Pi
Issue - Rockchip
Issue - Win7 Internal Error
Proxmox Memory
Resources Download
Roadmap
SPDK
Setup - Linux on ARM64-Loongson
Setup - Migrate from Proxmox VE
Setup - Windows on x86
Software Repository (Upstream Lierfang)
Submodule pin conventions
UI
eNFS
vGPU - Moore Threads
vGPU - Nvidia
No results
1
Issue - IPv6
sebas edited this page 2026-08-21 07:13:32 +00:00
Table of Contents
IPv6
Archived from https://docs.pxvirt.lierfang.com/en/case/ipv6.html
IPv6
Bridge IPv6
This section covers IPv6 configuration for vmbrX bridges, based on the ifupdown2 backend (default).
Static IPv6
iface vmbr0 inet6 static
address 2001:ded:beef:2::1/64
Configuration explanation:
inet6 static: Specifies the use of a static IPv6 addressaddress: Specifies the IPv6 address and prefix length (/64 is the standard subnet mask)
SLAAC Auto-configuration
iface vmbr0 inet6 auto
autoconf 1
accept_ra 2
bridge-mcsnoop no
Configuration explanation:
inet6 auto: Enables IPv6 auto-configurationautoconf 1: Enables SLAAC (Stateless Address Auto-Configuration)accept_ra 2: Accept Router Advertisements (RA)0= Do not accept router advertisements1= Accept only in non-forwarding mode2= Accept even in forwarding mode (bridges typically operate in forwarding mode, so this must be set to 2)
bridge-mcsnoop no: Disables multicast snooping on the bridge- This is critical for IPv6, as the Neighbor Discovery Protocol (NDP) relies on multicast
- If not disabled, IPv6 multicast traffic may be incorrectly filtered, causing connectivity issues
Important Notes
- Bridges, as forwarding devices, must use
accept_ra 2to correctly receive router advertisements - Disabling
bridge-mcsnoopis essential for proper IPv6 operation, especially for the NDP protocol - Network service restart or system reboot is required for configuration changes to take effect