VLAN tagging not working

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
 

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!