MSR系列路由器MPLS基本功能的配置
关键词:MSR;MPLS;LDP;LSP
一、组网需求:
实现网络部分流量走MPLS标签转发,缺省情况下MPLS LDP只为环回接口的32位主机路由分配标签,即目的地址是3台路由器环回接口才使用标签转发。
设备清单:MSR系列路由器3台
二、组网图:
三、配置步骤:
RTC配置:
#
router id
#
mpls
lsr-id
#
mpls //全局使能MPLS
#
mpls ldp //全局使能MPLS LDP
#
interface
Ethernet0/0
port link-mode route
ip address
mpls //接口使能MPLS
mpls ldp //接口使能MPLS LDP
#
interface LoopBack0 //router id 和 MPLS LSR-ID
ip
address
#
ospf 1 //OSPF保证全网互通
are
network
network
#
RTA配置:
#
router id
#
mpls lsr-id
#
mpls //使能MPLS
#
mpls ldp //全局使能MPLS LDP
#
interface
Ethernet0/0
port link-mode route
ip address
mpls //接口使能MPLS
mpls ldp //接口使能MPLS LDP
#
interface
Ethernet0/1
port link-mode route
ip address
mpls //接口使能MPLS
mpls ldp //接口使能MPLS LDP
#
interface LoopBack0 //router id 和 MPLS LSR-ID
ip
address
#
ospf 1 //OSPF保证全网互通
are
network
network
network
#
RTB配置:
#
router id
#
mpls lsr-id
#
mpls //全局使能MPLS
#
mpls ldp //全局使能MPLS LDP
#
interface
Ethernet0/0
port link-mode route
ip address
mpls //接口使能MPLS
mpls ldp //接口使能MPLS LDP
#
interface LoopBack0 //router id 和 MPLS LSR-ID
ip
address
#
ospf 1
are
network
network
#
四、配置关键点:
router id和mpls lsr-id最好都使用同一个Loopback口的地址,在保证OSPF连通性的情况下在路由器全局和接口视图下都使能MPLS和MPLS LDP。