Hey...
Another question on configuring bridging.
Take a look at this code please:
interfaces {
xe-0/0/0 {
vlan-tagging;
encapsulation extended-vlan-bridge;
unit 100 {
vlan-id 100;
}
unit 200 {
vlan-id 200;
}
}
Okay…
So according to Reynolds...
vlan-tagging:
This option modifies the IFD to operate in IEEE 802.1Q mode, also known as a trunk interface.
extended-vlan-bridge:
This encapsulation is applied to the IFD to enable bridging on all IFLs.
According to Juniper's website,
extended-vlan-bridge is used to:
Use extended VLAN bridge encapsulation on Ethernet interfaces that have IEEE
802.1Q VLAN tagging and bridging enabled and that must accept packets carrying TPID 0x8100 or a user-defined TPID.
These commands seem redundant to me. The command
vlan-tagging modifies the physical interface to operate it 802.1Q mode, and the command
extended-vlan-bridge is, according to Juniper's definition, used on interfaces that must accept packets carrying TPID 0x8100.
If enabling
vlan-tagging modifies the interface to operate in 802.1Q mode, then doesn't that imply that the interface should accept 802.1Q packets since that what VLAN Tagging is? Why is a second command of
extended-vlan-bridge needed?
This is very confusing...