Configure a VPWS between R1 and CE5, using redundancy for R1. This is the same as the previous lab, but now CE5 is the CE instead of CE8. The connection to R2 should be primary, and R4 should be standby.
R1 and CE5 are already configured with the 10.1.5.X/24 subnet.
Answer
#R2
int gi6
no ip address
service instance 1 eth
encapsulation default
exit
!
l2vpn xconnect context R1_CE8
member gi6 service-instance 1
member 11.11.11.11 15 encapsulation mpls
#R4
int gi4
no ip address
service instance 1 eth
encapsulation default
exit
!
l2vpn xconnect context R1_CE8
member gi4 service-instance 1
member 11.11.11.11 15 encapsulation mpls
#XR1
interface GigabitEthernet0/0/0/3
l2transport
!
!
l2vpn
xconnect group VPWS
p2p R1_CE5
interface GigabitEthernet0/0/0/3
neighbor ipv4 2.2.2.2 pw-id 15
backup neighbor 4.4.4.4 pw-id 15
Explanation/Verification
Just like with IOS-XE, we can configure VPWS redundancy on IOS-XR. We do this with the backup neighbor statement.