I am struggling to get Vlan's to work on Proxmox, I just moved over from ESXI(so I am used to port groups etc and vswitches)
I am trying to do what I think is a simple setup, but it is proving to not be.
Right now 2 nice
One is the Management NIC
One is my VLAN 255 nic that hooks to a HP switch in trunk mode with VLan 30, 254-255 membership.
The VM is on bridge vmbr255 with vlan tag of 255
In this config I can prom the proxmox ssh console ping the ip 192.168.255.100 which is the static ip of the box.
The box itself can't ping anything the gatway 192.168.255.1 or anything else.
What am I missing?
I am trying to do what I think is a simple setup, but it is proving to not be.
Right now 2 nice
One is the Management NIC
One is my VLAN 255 nic that hooks to a HP switch in trunk mode with VLan 30, 254-255 membership.
Code:
auto lo
iface lo inet loopback
iface enp2s0 inet manual
iface enp4s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.253.2/24
gateway 192.168.253.1
bridge-ports enp2s0
bridge-stp off
bridge-fd 0
auto vmbr255
iface vmbr255 inet manual
bridge-ports enp4s0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vlan255
iface vlan255 inet manual
vlan-raw-device vmbr255
vlan-id 255
The VM is on bridge vmbr255 with vlan tag of 255
In this config I can prom the proxmox ssh console ping the ip 192.168.255.100 which is the static ip of the box.
The box itself can't ping anything the gatway 192.168.255.1 or anything else.
What am I missing?