Hi all
I'm very new to Proxmox and reviewing it as a VMware alternative. Trying to 'de-vmware' myself away from the VMware terminology is a bit of a process but I'm slowly figuring things out so please excuse anything dumb I've done
I'm stuck on getting VMs to talk to the internet and have a feeling my traffic isn't leaving the bridge correctly.
To complicate things (and with some irony given my reason for looking at proxmox) my current environment is a PoC/lab that is running nested inside VMware machines (only infra I have easy access to at the moment). Below is a summary:
When assigning vlan58 to a VM NIC and even assigning a static IP, I'm not getting any connectivity either to the internet or the other proxmox hosts that are on the same subnet (apart from the one the VM is on, which tells me it's getting stuck at the bridge). If I understand correctly, tagging the VM NIC with vlan58 should be passing that through to the bridge, after which it should be treated the same as my proxmox host that has a vlan interface on vlan58 and has full connectivity to the internet and other hosts.
Have I missed something dumb? I'm not eliminating an issue on the VMware side either as this is an unfortunate complication, however the fact the hosts can communicate using the port group tells me there shouldn't be an issue there.
Just from a couple of days reading this forum I've picked up heaps from the helpful people on here so any insight is greatly appreciated!
I'm very new to Proxmox and reviewing it as a VMware alternative. Trying to 'de-vmware' myself away from the VMware terminology is a bit of a process but I'm slowly figuring things out so please excuse anything dumb I've done
I'm stuck on getting VMs to talk to the internet and have a feeling my traffic isn't leaving the bridge correctly.
To complicate things (and with some irony given my reason for looking at proxmox) my current environment is a PoC/lab that is running nested inside VMware machines (only infra I have easy access to at the moment). Below is a summary:
- 3 PVE hosts (VMware VMs) running a single NIC each, connected to a trunking port group carrying vlans 58, 99 and 100
- Single bridge (vmbr0) on each PVE host with vlan awareness enabled
- Separate linux vlan interfaces on each host for management (vlan58), clustering (vlan99) and test NFS storage (vlan100)
- Test VMs connected to vmbr0 and tagged on vlan58 (vlan58 has DHCP available, internet access and the PVE hosts also use this for management and can reach the internet ok)
Code:
auto lo
iface lo inet loopback
iface ens160 inet manual
mtu 9000
auto vmbr0
iface vmbr0 inet manual
bridge-ports ens160
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
mtu 9000
#vSwitch
auto vmbr0.58
iface vmbr0.58 inet static
address 10.1.30.201/16
gateway 10.1.255.254
mtu 9000
#MGMT
auto vmbr0.99
iface vmbr0.99 inet static
address 192.168.99.201/24
mtu 9000
#Cluster
auto vmbr0.100
iface vmbr0.100 inet static
address 192.168.100.201/24
mtu 9000
#Storage
When assigning vlan58 to a VM NIC and even assigning a static IP, I'm not getting any connectivity either to the internet or the other proxmox hosts that are on the same subnet (apart from the one the VM is on, which tells me it's getting stuck at the bridge). If I understand correctly, tagging the VM NIC with vlan58 should be passing that through to the bridge, after which it should be treated the same as my proxmox host that has a vlan interface on vlan58 and has full connectivity to the internet and other hosts.
Have I missed something dumb? I'm not eliminating an issue on the VMware side either as this is an unfortunate complication, however the fact the hosts can communicate using the port group tells me there shouldn't be an issue there.
Just from a couple of days reading this forum I've picked up heaps from the helpful people on here so any insight is greatly appreciated!