Hello, first time proxmox user. I am familiar with other platforms such as ESXi, Hyper-V, OpenStack, OpenShift, etc. I have heard many good things about Proxmox over the years and because of some quirkiness (involving Dual Actuator hard drives) with my new server, it turns out ESXi is not the best choice.
Anyways, long story short I can not figure out how to get VM's to communicate with anything past the proxmox host itself. VM's can communicate with each other as well as the proxmox host, but like I said nothing past proxmox such as the default gateway or any other network devices.
In order to simplify as much as possible I have put proxmox on a simple 192.168.1.1/24 network with just a switch and a router.
Ping from VM (192.168.1.45) to Proxmox (192.168.1.44) works & vice versa.
Ping from VM (192.168.1.45) to VM (192.168.1.46) works & vice versa.
Ping from Proxmox (192.168.1.44) to Default Gateway (192.168.1.1) works.
Ping from VMs (192.168.1.45 & 192.168.1.46) to Default Gateway fail.
Ping from VMs (192.168.1.45 & 192.168.1.46) to anything else on network & internet fail.
Strangely enough, VM's are getting DHCP addresses from 192.168.1.1
Things I have tried:
Rebooting (duh)
Disabling Proxmox firewall at Datacenter, Host and VM layers
Making sure network is configured correctly (vmbr0 using enp9s0 as bridge. vmbr0 on correct subnet with correct default gateway)
Different network adapters in the VM's (tried VirtIO, Intel and Realtek)
Both Windows and Ubuntu
Reinstalled Proxmox
Tried VLAN Aware
Here is ip a
here is /etc/network/interfaces
here is ip route
Anyways, long story short I can not figure out how to get VM's to communicate with anything past the proxmox host itself. VM's can communicate with each other as well as the proxmox host, but like I said nothing past proxmox such as the default gateway or any other network devices.
In order to simplify as much as possible I have put proxmox on a simple 192.168.1.1/24 network with just a switch and a router.
Ping from VM (192.168.1.45) to Proxmox (192.168.1.44) works & vice versa.
Ping from VM (192.168.1.45) to VM (192.168.1.46) works & vice versa.
Ping from Proxmox (192.168.1.44) to Default Gateway (192.168.1.1) works.
Ping from VMs (192.168.1.45 & 192.168.1.46) to Default Gateway fail.
Ping from VMs (192.168.1.45 & 192.168.1.46) to anything else on network & internet fail.
Strangely enough, VM's are getting DHCP addresses from 192.168.1.1
Things I have tried:
Rebooting (duh)
Disabling Proxmox firewall at Datacenter, Host and VM layers
Making sure network is configured correctly (vmbr0 using enp9s0 as bridge. vmbr0 on correct subnet with correct default gateway)
Different network adapters in the VM's (tried VirtIO, Intel and Realtek)
Both Windows and Ubuntu
Reinstalled Proxmox
Tried VLAN Aware
Here is ip a
Code:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host noprefixroute
valid_lft forever preferred_lft forever
2: enp9s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP group default qlen 1000
link/ether 40:01:7a:ff:0b:f5 brd ff:ff:ff:ff:ff:ff
3: enp10s0: <BROADCAST,MULTICAST> mtu 9000 qdisc noop state DOWN group default qlen 1000
link/ether 40:01:7a:ff:0b:f6 brd ff:ff:ff:ff:ff:ff
4: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 40:01:7a:ff:0b:f5 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.44/24 scope global vmbr0
valid_lft forever preferred_lft forever
inet6 fe80::4201:7aff:feff:bf5/64 scope link
valid_lft forever preferred_lft forever
8: tap100i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master vmbr0 state UNKNOWN group default qlen 1000
link/ether 0e:54:dd:77:eb:64 brd ff:ff:ff:ff:ff:ff
9: tap101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master vmbr0 state UNKNOWN group default qlen 1000
link/ether 5a:96:aa:49:d6:6a brd ff:ff:ff:ff:ff:ff
10: vmbr0v1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 40:01:7a:ff:0b:f5 brd ff:ff:ff:ff:ff:ff
11: enp9s0.1@enp9s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0v1 state UP group default qlen 1000
link/ether 40:01:7a:ff:0b:f5 brd ff:ff:ff:ff:ff:ff
here is /etc/network/interfaces
Code:
auto lo
iface lo inet loopback
auto enp9s0
iface enp9s0 inet manual
iface enp10s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.44/24
gateway 192.168.1.1
bridge-ports enp9s0
bridge-stp on
mtu 1500
source /etc/network/interfaces.d/*
here is ip route
Code:
default via 192.168.1.1 dev vmbr0 proto kernel onlink
192.168.1.0/24 dev vmbr0 proto kernel scope link src 192.168.1.44