]> git.proxmox.com Git - pve-manager.git/commitdiff
bridgevlan : allow filtering on tagged interfaces
authorAlexandre Derumier <aderumier@odiso.com>
Tue, 15 Sep 2015 11:02:55 +0000 (13:02 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Wed, 16 Sep 2015 08:44:22 +0000 (10:44 +0200)
It's possible to create 802.1ad vlan interfaces (for QinQ)
like

ip link add link eth0 eth0.100 type vlan proto 802.1ad id 100

So,we want to be able to use them in bridge vlan aware (802.1q)

Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
bridgevlan

index bf9cf82e90c1842464af72912942829383cc19a1..ea7161728213a33f729dda64316309cc7b420b6e 100755 (executable)
@@ -39,9 +39,6 @@ do
   do
     if [ "$MODE" = "start" ] && [ -d /sys/class/net/$IFACE/brif/$port ]; then
       case "$port" in
-       *.[0-9]*)
-           # do nothing
-       ;;
        *)
           # we allow vlan to pass through attached interface
           if [ -n "$IF_BRIDGE_VIDS" ]