Quantcast
Channel: All Ethernet Switching posts
Viewing all articles
Browse latest Browse all 10307

Bridge QinQ inner VLAN and regular VLAN together

$
0
0

Hi,

 

I think this should be possible, but I couldn't get it working yet. The situation is as follows:

 

To our office we deliver a couple of QinQ VLANs on an interface, which is working fine. The next thing we want to do on the interface is bridging the inner vlan of a QinQ interface with a single VLAN on the other. This is what I currently have configured:

 

Interface where QinQ goes out:

interface ge-1/1/4 {
    flexible-vlan-tagging;
    encapsulation flexible-ethernet-services;
    unit 5103 {
        encapsulation vlan-bridge;
        vlan-tags outer 0x8100.1 inner 0x8100.600;
    }
}

This VLAN needs to be bridged with this interface:

interface ge-1/0/0 {
    flexible-vlan-tagging;
    encapsulation flexible-ethernet-services;
    unit 600 {
        encapsulation vlan-bridge;
        vlan-id 600;
    }
}

 

The bridge:

bridge-600 {
    domain-type bridge;
    vlan-id 600;
    interface ge-1/0/0.600;
    interface ge-1/1/4.5103;
}

Is there anything else I'm missing?

 

Marijn


Viewing all articles
Browse latest Browse all 10307

Trending Articles