02-28-2025 08:03 AM
Hello Cisco Community,
I need assistance configuring a port on my router (.61) to establish connectivity between two routers: .83 and .60.
I have configured VPLS on routers .61 and .83. The xconnect status shows UP, and there is connectivity between .61 and .60 because I used encapsulation untagged. However, there is no traffic to .83, where I used encapsulation default.
Router: 10.2.1.61 (Cisco A901-6CZ-F-A)
Router: 10.2.1.83(ASR920 Software (PPC_LINUX_IOSD-UNIVERSALK9_NPE-M), Version 17.3.3)
Router: 10.2.1.83(ASR920 Software (PPC_LINUX_IOSD-UNIVERSALK9_NPE-M), Version 17.3.3)
03-03-2025 10:06 PM
Hello @Muhammad-ly
To troubleshoot and resolve the issue with traffic not flowing between the routers, let's break this down step by step. Based on your description, the issue seems to be related to the encapsulation mismatch or configuration on the VPLS or xconnect setup. Here's how you can approach the problem:
Ensure that the VPLS configuration on both routers (.61 and .83) matches. A mismatch in encapsulation or VLAN tagging can cause traffic to drop.
Check the VPLS configuration:
show running-config | section l2vpn
Look for the xconnect or VPLS configuration and verify the encapsulation type. Since you mentioned using encapsulation untagged
on .61, ensure that this is consistent with the configuration on .83.
Similarly, check the VPLS configuration:
show running-config | section l2vpn
If you are using encapsulation default
on .83, this might be causing the issue. The encapsulation type must match between the two routers. If .61 is using untagged
, .83 should also use untagged
.
Verify the xconnect status on both routers to ensure the pseudowire is up and operational.
show l2vpn xconnect
show l2vpn xconnect
The output should show the xconnect status as UP
. If it is not UP
, there may be an issue with the configuration or the underlying transport.
The encapsulation type must match on both ends of the VPLS. If one side is using encapsulation untagged
and the other is using encapsulation default
, traffic will not flow.
Check the encapsulation configuration:
show running-config interface <interface>
Ensure that the encapsulation is set to untagged
if that is what you are using.
Check the encapsulation configuration:
show running-config interface <interface>
If the encapsulation is set to default
, change it to untagged
to match .61.
To change the encapsulation on .83:
interface <interface>
encapsulation untagged
If you are using VLANs, ensure that the VLAN configuration is consistent across all routers. For example, if you are using VLAN 100 for the VPLS, ensure that VLAN 100 is configured on all interfaces participating in the VPLS.
show vlan brief
show vlan brief
If VLANs are not consistent, update the configuration to match.
An MTU mismatch can cause traffic to drop. Ensure that the MTU is consistent across all interfaces participating in the VPLS.
show interface <interface> | include MTU
show interface <interface> | include MTU
If there is an MTU mismatch, update the MTU to match on both routers:
interface <interface>
mtu <value>
After making the necessary changes, test connectivity between the routers.
ping 10.2.1.83
ping 10.2.1.61
If the pings are successful, the issue is resolved.
If the issue persists, enable debugging to gather more information.
debug l2vpn xconnect
debug mpls ldp
debug l2vpn xconnect
debug mpls ldp
Monitor the logs for any errors or issues.
show mpls ldp neighbor
show mpls ldp bindings
By ensuring that the encapsulation, VLANs, MTU, and transport network are consistent and operational, you should be able to resolve the issue with traffic not flowing to .83.
Hope This Helps!!!
AshSe
Community Etiquette:
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide