Hello,
I set fresh Proxmox on dedicated server with Hetzner. I have only one IPv4 and IPv6 subnet. Everything is working fine means:
- 3 interfaces: eno1, vmbr0 routed and vmbr1 with NAT.
- I can reach VM directly through ipv6
- VM can reach ipv4 network through NAT
/etc/network/interfaces
Read more
I set fresh Proxmox on dedicated server with Hetzner. I have only one IPv4 and IPv6 subnet. Everything is working fine means:
- 3 interfaces: eno1, vmbr0 routed and vmbr1 with NAT.
- I can reach VM directly through ipv6
- VM can reach ipv4 network through NAT
/etc/network/interfaces
Code:
### LOOPBACK ###
auto lo
iface lo inet loopback
iface lo inet6 loopback
### IPv4 ###
# Main IPv4 from Host
auto eno1
iface eno1 inet static
address <MAIN IP>
netmask 255.255.255.255
gateway...
Read more