Configuring a Basic MPLS P Router
Problem
You want to set up the core of an MPLS network.
Solution
For the P routers in the core of the MPLS network, the primary requirement is to enable CEF and turn on MPLS on each of the interfaces that will be forwarding MPLS tagged packets. In this example, we have also enabled OSPF as a dynamic routing protocol within the MPLS core:
Router-P1#configure terminal
Enter configuration commands, one per line. End with CNTL/Z. Router-P1(config)#ip cef
Router-P1(config)#mpls ip
Router-P1(config)#interface
Router-P1(config-if)#
FastEthernet0/0
description
Router-P1(config-if)#
connection to Router-PE2
ip address
Router-P1(config-if)#
10.1.2.11 255.255.255.0
mpls ip
Router-P1(config-if)#exit
Router-P1(config)#interface
Router-P1(config-if)#
Serial0/0
description
Router-P1(config-if)#
connection to Router-PE1
ip address
Router-P1(config-if)#
10.1.1.14 255.255.255.252
mpls ip
Router-P1(config-if)#exit
Router-P1(config)#interface
Router-P1(config-if)#
Serial0/1
description
Router-P1(config-if)#
connection to Router-PE3
ip address
Router-P1(config-if)#
10.1.1.10 255.255.255.252
mpls ip
Router-P1(config-if)#exit
Router-P1(config)#interface
Router-P1(config-if)#
Loopback0
ip address
Router-P1(config-if)#
10.0.0.11 255.255.255.255
exit
Router-P1(config)#router ospf
Router-P1(config-router)#
99
router-id
Router-P1(config-router)#
10.0.0.11
network
10.0.0.0 0.255.255.255
area
Router-P1(config-router)#
0
exit
Router-P1(config)#end
Router-P1#
Discussion
There are several things to ...
Get Cisco IOS Cookbook, 2nd Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.