Hi Guys,
Having a few issues with getting vlan tagging from inside the guests working.
I am putting the eth0 of the guest into vmbr0 and then tagging from the guest with vlan 103. This is confirmed working (tcpdump on tap interface facing vm). The issue that I encounter is that doing a tcpdump on eth0 of the host I see the frame from the Guest with QinQ tagging with the management vlan as the outer.
Here is my /etc/network/interfaces file from the host:
And my brctl show
Does anyone have any ideas what might be causing this?
Thanks
Fraser
Having a few issues with getting vlan tagging from inside the guests working.
I am putting the eth0 of the guest into vmbr0 and then tagging from the guest with vlan 103. This is confirmed working (tcpdump on tap interface facing vm). The issue that I encounter is that doing a tcpdump on eth0 of the host I see the frame from the Guest with QinQ tagging with the management vlan as the outer.
Code:
[COLOR=#333333][FONT=lucida grande]21:41:54.905877 ae:f9:37:25:8f:79 > ff:ff:ff:ff:ff:ff, ethertype 802.1Q (0x8100), length 64: vlan 50, p 0, ethertype 802.1Q, vlan 103, p 0, ethertype ARP, Request who-has [/FONT][/COLOR][URL="http://10.0.103.254/"]10.0.103.254[/URL][COLOR=#333333][FONT=lucida grande] tell [/FONT][/COLOR][URL="http://10.0.103.250/"]10.0.103.250[/URL][COLOR=#333333][FONT=lucida grande], length 42[/FONT][/COLOR]
Here is my /etc/network/interfaces file from the host:
Code:
auto eth0
iface eth0 inet manual
auto vmbr0
iface vmbr0 inet manual
bridge_ports eth0
bridge_stp off
bridge_fd 0
#Management Network
auto eth0.50
iface eth0.50 inet manual
vlan-raw-device eth0
auto vmbr50
iface vmbr50 inet static
address 10.0.101.61
netmask 255.255.255.224
gateway 10.0.101.62
bridge_ports eth0.50
bridge_stp off
bridge_fd 0
And my brctl show
Code:
bridge name bridge id STP enabled interfaces
vmbr0 8000.c86000706be7 no eth0
tap100i0
vmbr50 8000.c86000706be7 no eth0.50
Does anyone have any ideas what might be causing this?
Thanks
Fraser