MSR系列路由器
MPLS TE Shortcut + Relative
Metric功能的配置
关键字:MSR;MPLS;TE;CRLDP;OSPF;IGP Shortcut; Relative Metric
一、组网需求:
RTA、RTB、RTC、RTD通过OSPF发布路由,RTA通过CR-LDP建立一条到RTD的TE隧道,RTA通过IGP
Shortcut方式引入流量
设备清单:MSR系列路由器4台
二、组网图:
三、配置步骤:
设备和版本:MSR系列、Version 5.20, Release
1509
RTA配置 |
# router id # mpls lsr-id # # mpls //全局使能TE mpls te //使能cspf mpls te
cspf # //使能mpls ldp mpls ldp # interface Ethernet0/0 port link-mode route description connects to
RTB ip address mpls //接口使能mpls te mpls te //指定接口的最大链路带宽BC0 mpls te
max-link-bandwidth 100 //指定接口的最大预留带宽BC1,必须小于BC0 mpls te
max-reservable-bandwidth 50 //接口使能ldp mpls ldp # interface LoopBack0 ip address # interface Tunnel0 ip address //指定隧道类型 tunnel-protocol
mpls te //指定te信令协议为crldp mpls te
signal-protocol crldp //指定隧道目的 destination
//指定隧道需要预留的bc0带宽 mpls te
bandwidth bc0 20 //指定使用IGP OSPF
Shortcut mpls te igp shortcut ospf //指定Tunnel的Metric为OSPF链路Metric -1 mpls te igp
metric relative -1 //执行上述配置 mpls te
commit # ospf 1 //支持type 10 LSA的发送与接收 opaque-capability enable enable
traffic-adjustment are network network //将Tunnel口添加到OSPF计算中 network
//使能该区域的te数据采集 mpls-te
enable # |
RTB配置 |
# router id # mpls lsr-id # mpls //全局使能TE mpls te //使能cspf mpls te
cspf # //使能mpls ldp mpls ldp # interface Ethernet0/0 port link-mode route description connects to
RTA ip address mpls //接口使能mpls te mpls te //指定接口的最大链路带宽BC0 mpls te
max-link-bandwidth 100 //指定接口的最大预留带宽BC1,必须小于BC0 mpls te
max-reservable-bandwidth 50 //接口使能ldp mpls ldp # interface Ethernet0/1 port link-mode route description connects to
RTC ip address mpls //接口使能mpls te mpls te //指定接口的最大链路带宽BC0 mpls te
max-link-bandwidth 100 //指定接口的最大预留带宽BC1,必须小于BC0 mpls te
max-reservable-bandwidth 50 //接口使能ldp mpls ldp # interface LoopBack0 ip address # ospf 1 //支持type 10 LSA的发送与接收 opaque-capability enable are network network network //使能该区域的te数据采集 mpls-te enable # |
RTC配置 |
# router id # mpls lsr-id # mpls //全局使能TE mpls te //使能cspf mpls te
cspf # //使能mpls ldp mpls ldp # interface Ethernet0/0 port link-mode route description connects to
RTB ip address mpls //接口使能mpls te mpls te //指定接口的最大链路带宽BC0 mpls te
max-link-bandwidth 100 //指定接口的最大预留带宽BC1,必须小于BC0 mpls te
max-reservable-bandwidth 50 //接口使能ldp mpls ldp # interface Ethernet0/1 port link-mode route description connects to
RTD ip address mpls //接口使能mpls te mpls te //指定接口的最大链路带宽BC0 mpls te
max-link-bandwidth 100 //指定接口的最大预留带宽BC1,必须小于BC0 mpls te
max-reservable-bandwidth 50 //接口使能ldp mpls ldp # interface LoopBack0 ip address # ospf 1 //支持type 10 LSA的发送与接收 opaque-capability enable are network network network //使能该区域的te数据采集 mpls-te enable # |
RTD配置 |
# router id # mpls lsr-id # mpls //全局使能TE mpls te //使能cspf mpls te
cspf # //使能mpls ldp mpls ldp # interface Ethernet0/0 port link-mode route description connects to
RTC ip address mpls //接口使能mpls te mpls te //指定接口的最大链路带宽BC0 mpls te
max-link-bandwidth 100 //指定接口的最大预留带宽BC1,必须小于BC0 mpls te
max-reservable-bandwidth 50 //接口使能ldp mpls ldp # interface LoopBack0 ip address # ospf 1 //支持type 10 LSA的发送与接收 opaque-capability enable are network network //使能该区域的te数据采集 mpls-te enable # |
四、配置关键点:
1) 在CRLDP + OSPF配置正确的基础上稍作修改;
2) 去掉RTA的静态路由引入方式;
3) RTA的Tunnel口上配置mpls te igp shortcut;
4) RTA的Tunnel口上要配置mpls te metric,要比igp计算的metric小,才可能引入流量;
5) RTA的OSPF需要使能traffic-adjustment,还需要将Tunnel口加入到OSPF区域中;
6) 如果IGP是ISIS,不需要也没有traffic-adjustment,只需要在Tunnel口上是能ISIS即可。