Hi, I am new to PROXMOX and definitely learning through issues. The new issue I encountered is that my VM (Win10) cant access the internet. My PROXMOX host is able to reach the internet, but not the VMs. I've followed instructions per https://pve.proxmox.com/pve-docs/chapter-sysadmin.html#sysadmin_network_routed.
Below is my proxmox config -
cat /etc/network/interface
	
	
	
		
Windows ip config - using 'vmbr0'
	
	
	
		
On the Win10 box (VM) I have changed the gateway to 10.101.0.4 and still didn't work. My host is able to access the internet, but not the Win10 (VM). Win 10 is able to ping the 10.101.0.4, but can't ping the gateway.
				
			Below is my proxmox config -
cat /etc/network/interface
		Code:
	
	auto lo
iface lo inet loopback
auto enp31s0
iface enp31s0 inet static
        address 10.101.0.4/24
        gateway 10.101.0.1
iface enp41s0f0 inet manual
iface enp41s0f1 inet manual
iface wlp30s0 inet manual
iface enp42s0f0 inet manual
iface enp42s0f1 inet manual
auto vmbr0
iface vmbr0 inet static
        address 10.0.0.1/24
        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.0.0/24' -o enp31s0 -j MASQUERADE
        post-down iptables -t nat -D POSTROUTING -s '10.0.0.0/24' -o enp31s0 -j MASQUERADE
auto vmbr1
iface vmbr1 inet static
        address 10.101.1.4/24
        bridge-ports enp41s0f0
        bridge-stp off
        bridge-fd 0
auto vmbr2
iface vmbr2 inet static
        address 10.0.0.1/24
        bridge-ports enp41s0f1
        bridge-stp off
        bridge-fd 0
source /etc/network/interfaces.d/*Windows ip config - using 'vmbr0'
		Code:
	
	Ethernet Adapter ...: (Simplified)
 Description: Red Hat VirtualIO Ethernet Adapter
 IPV4 address: 10.0.0.2
 Subnet Mask: 255.0.0.0
 Default Gateway: 10.0.0.1
 DNS: 8.8.8.8, 8.8.4.4On the Win10 box (VM) I have changed the gateway to 10.101.0.4 and still didn't work. My host is able to access the internet, but not the Win10 (VM). Win 10 is able to ping the 10.101.0.4, but can't ping the gateway.
 
	