Hi,
I have installed Proxmox on top of an existing Debian server (so I can encrypt all the disks) at home and the bridged network is working well:
However, this naturally means each container/KVM guest gets a public IP. For most of them however, I would rather they use NAT.
So my question is, what magic incantation is needed so I can have two networks in Proxmox, one on the 'public' bridge and another one that uses NAT only?
Thanks!
I have installed Proxmox on top of an existing Debian server (so I can encrypt all the disks) at home and the bridged network is working well:
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.0.31
netmask 255.255.255.0
gateway 192.168.0.1
bridge_ports eno1
bridge_stp off
bridge_fd 0
However, this naturally means each container/KVM guest gets a public IP. For most of them however, I would rather they use NAT.
So my question is, what magic incantation is needed so I can have two networks in Proxmox, one on the 'public' bridge and another one that uses NAT only?
Thanks!