Hello,
@Cloud wrote:
Hi
Yes, as you saw I don't set any vlan config on router A.
Because switch A connecting to router A by using the access mode without tag vlan id.
I hope side A without vlan can connect to any vlan on side B.
Is it possbile to reach this target ?
Not with plain L2circuits. Plain Type-4 L2circuits are point-to-point only, meaning the number of VLANs is 1 on each side.
You will need VPLS (BGP VPLS., or if You don't need/want/can't afford BGP VPLS).
If LDP VPLS, then the L2circuit config can stay on one side (let's say side A for certainty) and the following config would be needed only on the other side (i.e. side B for certainty):
routing-instances {
LDP-VPLS {
instance-type vpls;
vlan-id none;
interface xe-1/2/0.123; ## local IFL with tag 123
interface xe-2/3/0.456; ## local IFL with tag 456
no-local-switching;
protocols {
vpls {
no-tunnel-services;
vpls-id 1024; ## the virtual-circuit-id on the side A must be also 1024
neighbor 203.0.113.41 {
encapsulation-type ethernet;
}
}
}
}
}
HTH
Thx
Alex