I use the following configuration connected to vmbr1 to get IPv4 working through OVH vRACK
vmbr1 is set up with the following on the Proxmox node
An OVH has quoted the following
But how do I configure that exactly so I can use other IPv6 blocks allocated to my other servers. There is no option to add a IPv6 block in OVH vRACK.
Code:
network:
version: 2
ethernets:
eth0:
addresses:
- 51.195.1xx.89/28
- 2001:41d0:802:8xxx::3/128
gateway4: 51.195.1xx.94
gateway6: fe80::1
match:
macaddress: ce:bf:ed:79:2c:99
nameservers:
addresses:
- 213.186.33.99
search: []
set-name: eth0
vmbr1 is set up with the following on the Proxmox node
Code:
auto vmbr1
iface vmbr1 inet static
address 192.168.0.122/16
bridge-ports bond1
bridge-stp off
bridge-fd 0
An OVH has quoted the following
vRack is a plain l2 network, so nothing special to get IPv6 to work. You however don't have a publicly routable range given to you, so 2 choices for IP addressing: either autconfiguration or use you own addressing in private ULA (fd00::/8)
But how do I configure that exactly so I can use other IPv6 blocks allocated to my other servers. There is no option to add a IPv6 block in OVH vRACK.