VLAN tagging not working

  • Thread starter Thread starter Reolin
  • Start date Start date
R

Reolin

Guest
Hello. I am running latest Proxmox 2.3-13.
I am having problems setting vlan-bridge.
My config is:
Code:
# network interface settings
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
        address  10.10.10.123
        netmask  255.255.255.0
        gateway  10.10.10.1

auto eth1
iface eth1 inet manual

auto eth2
iface eth2 inet manual

auto vmbr2
iface vmbr2 inet static
        address  192.168.3.1
        netmask  255.255.255.0
        bridge_ports eth2.2
        bridge_stp off
        bridge_fd 0


Switch port is configured as 'tagged'.
With the config above I am unable to ping (or do anything else) proxmox host from other clients in vlan2.
Can anyone give me some ideas?
 
Hello. I am running latest Proxmox 2.3-13.
I am having problems setting vlan-bridge.
{snip}
Can anyone give me some ideas?


Try this instead:

Code:
auto bond0
iface bond0 inet manual
        slaves eth0


auto bond1
iface bond1 inet manual
        slaves eth1


auto bond2
iface bond2 inet manual
        slaves eth2


auto vmbr0
iface vmbr0 inet static
        address  10.10.10.123
        netmask  255.255.255.0
        gateway  10.10.10.1
        bridge_ports bond0
        bridge_stp off
        bridge_fd 0


auto vmbr2
iface vmbr2 inet static
        address  192.168.3.1
        netmask  255.255.255.0
        bridge_ports bond2.2
        bridge_stp off
        bridge_fd 0