Hello
I am just wondering whether it is possible to have a outer tag that is passed between two trunks and have an inner VLAN from that put onto another interface. This is on an EX2300.
Example:
ge-0/0/0 Is a trunk and passes traffic with outer tag 1000
ge-0/0/1 is a trunk and passes traffic with outer tag 1000
ge-0/0/2 we want to have as an access port for inner tag 10 inside the outer tag 1000
Right now traffic tagged with 1000 (and all inner VLAN's) passes great from ge-0/0/0 to ge-0/0/1
But I cannot find a way to have ge-0/0/2 as an access port for the inner tag of that VLAN.
I have tried the following without success.
ge-0/0/0 {
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members [SVID1000 SVID1000CV10];
}
}
}
}
ge-0/0/1 {
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members [SVID1000 SVID1000CV10];
}
}
}
}
ge-0/0/2 {
unit 0 {
family ethernet-switching {
interface-mode access;
vlan {
members SVID1000CV10;
}
}
}
}
SVID1000 { vlan-tags outer 0x8100.1000; } SVID1000CV10 { vlan-tags outer 0x8100.1000 inner 0x8100.10; }
Is there a way or am I dreaming?
Cheers
Brent