LDP Configuration on Nokia Routers

LDP-configuratio
To do an LDP Configuration Example , we will use the below basic topology. Here, we will configure these two routers to become an LDP peer and establish an LSP session.
LDP configuration example topology, Nokia Service Routers, SR 7750
LDP Configuration Example Topology
Configuration on Router A
A:RouterA>config>router #
			interface “to_RouterB”
				address 10.0.0.1/24
				port 1/1/1
				exit
			interface “system”
				address 1.1.1.1/32
				exit
			exit
A:RouterA>config>router>ldp#
			interface-parameters
				interface “to_RouterB”
				exit
			exit
Configuration on Router B
B:RouterB>config>router #
			interface “to_RouterA”
				address 10.0.0.2/24
				port 1/1/2
				exit
			interface “system”
				address 2.2.2.2/32
				exit
			exit

B:RouterB>config>router>ldp#
			interface-parameters
				interface “to_RouterA”
				exit
			exit
Here, I would like to inform you about an important point. LDP sessions established between “transport addresses” of the routers. In Nokia Service Routers, this transport addresses are “system addresses”. The session is established between these system addresses. So, before LDP neighbour discovery, system addresses must be configured. [sc name=”ContentRMessage”] For more information about LDP, T-LDP and CR-LDP, check the related following RFCs… RFC 5036: LDP Specification RFC 3815: Definitions of Managed Objects for the MPLS,LDP RFC 3478: Graceful Restart Mechanism for Label Distribution Protocol RFC 5443: LDP IGP Synchronization RFC 7307: LDP Extensions for Multi-Topology RFC 7361: LDP Extensions for Optimized MAC Address Withdrawal in a H-VPLS RFC 3212: Constraint-Based LSP Setup using LDP RFC 3213: Applicability Statement for CR-LDP RFC 3214: LSP Modification Using CR-LDP

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

Networking Certifications has served as a stepping stone for those seeking to advance their careers in Networking, h they are...
Router Logs are very important for a Network Engineer during troubleshooting. A good  Network Engineer, check the right logs and...
Dynamic Routing Protocol   Dynamic Routing is the routing process that is done via a Routing Protocols in networking. The...
In this lesson, we will talk about ECMP (Equal Cost Multipath) Configuration on Nokia Routers. To explaint ECMP better, we...