So I set a static IPv6 address (Unique Local Address) for my vmbr2 bridge and set the default gateway to my router's Link-Local Address.
Everything works just fine, but after a reboot of the Proxmox nodem the IPv6 address ONLY works after I do "ifup vmbr2". It won't come up automatically like IPv4 static addresses do. Why is this, and how can I make the IPv6 address come up automatically without issueing this extra command after a reboot?
Here's
Everything works just fine, but after a reboot of the Proxmox nodem the IPv6 address ONLY works after I do "ifup vmbr2". It won't come up automatically like IPv4 static addresses do. Why is this, and how can I make the IPv6 address come up automatically without issueing this extra command after a reboot?
Here's
/etc/network/interfaces
:
Code:
auto enp67s0
iface enp67s0 inet manual
mtu 9000
auto enp67s0d1
iface enp67s0d1 inet manual
mtu 9000
auto bond0
iface bond0 inet manual
bond-slaves enp67s0 enp67s0d1
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2+3
mtu 9000
auto vmbr0
iface vmbr0 inet static
address 192.168.3.3/24
bridge-ports eno1
bridge-stp off
bridge-fd 0
auto vmbr2
iface vmbr2 inet static
address 192.168.1.2/24
gateway 192.168.1.1
bridge-ports bond0
bridge-stp off
bridge-fd 0
mtu 9000
iface vmbr2 inet6 static
address fdac:0992:3af9::aca/64
gateway fe80::feec:daff:fed6:617f
netmask 64
auto vmbr1
iface vmbr1 inet manual
bridge-ports eno2
bridge-stp off
bridge-fd 0