For a while now I've been using Proxmox VE 5.2 with bridged IPv4 addresses to (amongst other things) host some websites for friends and family. I've been asked if I can get IPv6 working but this has turned out to be problematic because my dedicated server supplier, Hetzner, does not support bridging with IPv6.
Is it possible to run bridged IPv4 and routed IPv6 addresses on the same machine? If so, how do I go about it?
I've included my current host and one vm network configuration as it stands (IP addresses modified) and any help you can offer would be appreciated.
Thanks.
Host Config:
VM Config:
Is it possible to run bridged IPv4 and routed IPv6 addresses on the same machine? If so, how do I go about it?
I've included my current host and one vm network configuration as it stands (IP addresses modified) and any help you can offer would be appreciated.
Thanks.
Host Config:
Code:
auto lo
iface lo inet loopback
iface lo inet6 loopback
auto enp2s0
iface enp2s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.2
netmask 255.255.255.192
gateway 192.168.1.1
bridge_ports enp2s0
bridge_stp off
bridge_fd 0
iface vmbr0 inet6 static
address 100::2
netmask 64
gateway fe80::1
VM Config:
Code:
auto lo
iface lo inet loopback
# The primary network interface
auto ens18
iface ens18 inet static
address 192.168.2.2
netmask 255.255.255.192
gateway 192.168.2.1