Hello,
Using Proxmox 7.1 on OVH using their provided template. I have successfully configured IPv4 but have doubts about getting IPv6 working. Kindly bear with as I am still learning and open to all advice .
Current /etc/network/interfaces output of PVE host:
Hence Ipv6 is not configured on server. Now order to provide IPv6 access to VM inside PVE, what I understand that I need to add following in /etc/network/interfaces for ipv6 bridge :
(Ovh has provided me 2001:41d1:2:fe55::/64 IPv6 range.)
In above , 2001:41d1:2:fe55:: is my first IP, hence assigning it to PVE host, gateway is chosen as per OVH article here .
Am I doing it right so far ?
Now issues or doubts:
--> As per OVH , I need to have virtual mac address generated but can't find way to do that for IPv6 from its control panel, can do easily for IPv4.
It is also mentioned here : https://pve.proxmox.com/wiki/OVH
--> In short, if above setup is correct, I want to have list of vmac and IPv6 so that I can provision VM automatically using API.
Using Proxmox 7.1 on OVH using their provided template. I have successfully configured IPv4 but have doubts about getting IPv6 working. Kindly bear with as I am still learning and open to all advice .
Current /etc/network/interfaces output of PVE host:
Bash:
auto lo
iface lo inet loopback
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet static
address 178.xx.xx.xx/24
gateway 178.xx.xx.xx.254
bridge-ports eno1
bridge-stp off
bridge-fd 0
hwaddress 00:25:90:BE:03:D0
Hence Ipv6 is not configured on server. Now order to provide IPv6 access to VM inside PVE, what I understand that I need to add following in /etc/network/interfaces for ipv6 bridge :
(Ovh has provided me 2001:41d1:2:fe55::/64 IPv6 range.)
Code:
auto lo
iface lo inet6 loopback
iface eth0 inet6 manual
auto vmbr0
iface vmbr0 inet6 static
address 2001:41d1:2:fe55::
netmask 64
gateway 2001:41d1:2:eff:ff:ff:ff:ff
bridge_ports eth0
bridge_stp off
bridge_fd 0
In above , 2001:41d1:2:fe55:: is my first IP, hence assigning it to PVE host, gateway is chosen as per OVH article here .
Am I doing it right so far ?
Now issues or doubts:
--> As per OVH , I need to have virtual mac address generated but can't find way to do that for IPv6 from its control panel, can do easily for IPv4.
It is also mentioned here : https://pve.proxmox.com/wiki/OVH
--> In short, if above setup is correct, I want to have list of vmac and IPv6 so that I can provision VM automatically using API.