People, please help.
1. Installed latest Proxmox
2. Firewall works fine for Host
3. Installed Guest Ubuntu Server 16.04
4. For my Guest I enabled Firewall and specified rules:
in DROP
out DROP
but they do not work,
when I login to Guest I can for example > curl google.com
and it works...
I really stuck how to disable ALL in firewall for Guest...
Also my Host /etc/network/interfaces:
	
	
	
		
Is it possible that Firewall works only for non-Nat cases?
If someone can help - I will create a clean install and let you enter there to check.
Thanks a lot for help!
				
			1. Installed latest Proxmox
2. Firewall works fine for Host
3. Installed Guest Ubuntu Server 16.04
4. For my Guest I enabled Firewall and specified rules:
in DROP
out DROP
but they do not work,
when I login to Guest I can for example > curl google.com
and it works...
I really stuck how to disable ALL in firewall for Guest...
Also my Host /etc/network/interfaces:
		Code:
	
	auto eth0
iface eth0 inet dhcp
auto vmbr200
iface vmbr200 inet static
    address  10.0.200.1
    netmask  255.255.255.0
    bridge_ports none
    bridge_stp off
    bridge_fd 0
    post-up echo 1 > /proc/sys/net/ipv4/ip_forward
    post-up   iptables -t nat -A POSTROUTING -s '10.0.200.0/24' -o eth0 -j MASQUERADE
    post-down iptables -t nat -D POSTROUTING -s '10.0.200.0/24' -o eth0 -j MASQUERADE
	Is it possible that Firewall works only for non-Nat cases?
If someone can help - I will create a clean install and let you enter there to check.
Thanks a lot for help!
	
	
