EoMPLS P2P basic Pseudowire

Scenario

R1 and R3 are PE routers. R2 is a P router. A pseudowire (aka xconnect) is configured between R1 and R3 with VCID 100. The R1 interface assigned to the pseudowire is Gi0/0/0/0.10. IS-IS is configured to advertise the loopbacks used for the xconnects (connected subnets are advertised too but not needed). The relevant config for R1 is shown.

IOS-vs-XR_xconnect

IOS Config

hostname R1
!
pseudowire-class CLASS_ONE
encapsulation mpls
!
interface Loopback0
ip address 1.1.1.1 255.255.255.255
!
interface GigabitEthernet0/0/0/0.10
description Pseudowire Subinterface
encapsulation dot1Q 10
xconnect 3.3.3.3 100 pw-class CLASS_ONE
!
interface GigabitEthernet0/0/0/1
description link to R2
ip address 10.1.2.1 255.255.255.252
ip router isis LAB
mpls ip
isis circuit-type level-2-only
isis network point-to-point
isis csnp-interval 10
!
router isis LAB
net 49.0500.0000.0000.0002.00
is-type level-2-only
passive-interface Loopback0
!

XR Config

Back to top