So I have a proxmox server running 4.4 (let's say at 172.16.16.16), and on it are several containers. I can get these containers networked if I set them up using NAT via iptables MASQUERADE, however if i try to bridge them to the host to use the same subnet they cannot ping out and I cannot ping them from other devices on the network, yet from the proxmox server can ping the address of the container (say 172.16.16.18) and get a response. I have below my /etc/network/interfaces of the host and the /etc/network/interfaces of the container.
Host interfaces:
Guest interfaces:
Host interfaces:
Code:
auto lo
iface lo inet loopback
auto vmbr0
iface vmbr0 inet static
address 172.16.16.16
netmask 255.255.255.0
gateway 172.16.16.1
bridge_ports eth0
bridge_stp off
bridge_fd 0
Guest interfaces:
Code:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 172.16.16.18
netmask 255.255.255.0
gateway 172.16.16.1
Last edited: