Here is my network configuration in case it might help others trying to do a similar thing. I read several posts about people trying to setup a management interface on a vlan without interfering with the existing Proxmox networking. I was specifically trying to run my vms on several different vlans but have a firewall vm act as a router on a stick with 802.1q packet being passed though to the guest. This was surprisingly difficult since every time I brought a vm online on vmbr0vX it would disable all traffic on vmbr0. The way around this I found was to move the vlan interfaces to the bridge and not the underlying interface. In my case it as a bond0. This is what the config looked like. The only problem I still have is the Proxmox UI network scripts create a bond0.2 interface when adding a vlan tag to the network interfaces. I am not sure how to work around this other than to create all of the br vlan interfaces ahead of time which is not very dynamic. It would be nice to be able to check a box on the main vmbr0 interface to specify it as a trunk so that vlan interface are created on the vmbr0 interface instead of the underlying physical interface. Anyone else doing something similar?
# network interface settingsauto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
auto bond0
iface bond0 inet manual
slaves eth0 eth1
bond_miimon 100
bond_mode 802.3ad
auto vmbr0
iface vmbr0 inet manual
bridge_ports bond0
bridge_stp off
bridge_fd 0
auto vmbr0.2
iface vmbr0.2 inet manual
vlan_raw_device vmbr0
auto vmbr0v2
iface vmbr0v2 inet static
address 192.168.254.5
netmask 255.255.255.0
gateway 192.168.254.1
bridge_ports vmbr0.2
bridge_stp off
bridge_fd 0
# network interface settingsauto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
auto bond0
iface bond0 inet manual
slaves eth0 eth1
bond_miimon 100
bond_mode 802.3ad
auto vmbr0
iface vmbr0 inet manual
bridge_ports bond0
bridge_stp off
bridge_fd 0
auto vmbr0.2
iface vmbr0.2 inet manual
vlan_raw_device vmbr0
auto vmbr0v2
iface vmbr0v2 inet static
address 192.168.254.5
netmask 255.255.255.0
gateway 192.168.254.1
bridge_ports vmbr0.2
bridge_stp off
bridge_fd 0