好消息,超酷的在线虚拟网络实验室上线了!点击开始实验

为获得更好的浏览效果,建议您使用 Firefox 或者 Chrome 浏览器



MSR系列路由器

MPLS TE CRLSP Hot-Standby功能的配置

 

关键字:MSR;MPLS;TE;RSVP-TE;OSPF;Hot-Standby;热备份

 

一、组网需求

RTARTBRTCRTD通过OSPF发布路由,RTARTC之间通过RSVP-TE建立2条隧道,经过RTB的为主隧道,经过RTD的为备份隧道

设备清单:MSR系列路由器4

二、组网图:

三、配置步骤:

设备和版本:MSR系列、Version 5.20, Release 1509

RTA配置

#

 router id 1.1.1.1

#

mpls lsr-id 1.1.1.1

#

#

mpls

 //全局使能TE

 mpls te

 mpls rsvp-te

//使能cspf

 mpls te cspf

#

interface Ethernet0/0

 port link-mode route

 description connects to RTB

 ip address 1.2.0.1 255.255.255.0

mpls

 //接口使能mpls te

 mpls te

 //指定接口的最大链路带宽BC0

 mpls te max-link-bandwidth 100

 //指定接口的最大预留带宽BC1必须小于BC0

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

interface Ethernet0/1

 port link-mode route

 description connects to RTD

 ip address 1.4.0.1 255.255.255.0

 mpls

 mpls te

 mpls te max-link-bandwidth 100

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

interface LoopBack0

 ip address 1.1.1.1 255.255.255.255

#

interface Tunnel0

 ip address 1.3.0.1 255.255.255.252

 tunnel-protocol mpls te

destination 3.3.3.3

mpls te bandwidth bc0 20

 //指定热备份

mpls te backup hot-standby

 mpls te igp shortcut

 mpls te igp metric absolute 1

 mpls te commit

#

ospf 1

 //支持type 10 LSA的发送与接收

 opaque-capability enable

 //使能traffic-adjustment

 enable traffic-adjustment

 area 0.0.0.0

  network 1.1.1.1 0.0.0.0

  network 1.2.0.0 0.0.0.255

  network 1.4.0.0 0.0.0.255

  //Tunnel口添加到OSPF计算中

  network 1.3.0.0 0.0.0.3

  //使能该区域的te数据采集

  mpls-te enable

#

RTB配置

#

router id 2.2.2.2

#

mpls lsr-id 2.2.2.2

#

mpls

//全局使能TE

 mpls te

 mpls rsvp-te

//使能cspf

 mpls te cspf

#

interface Ethernet0/0

 port link-mode route

 description connects to RTA

 ip address 1.2.0.2 255.255.255.0

mpls

 //接口使能mpls te

 mpls te

 //指定接口的最大链路带宽BC0

 mpls te max-link-bandwidth 100

 //指定接口的最大预留带宽BC1必须小于BC0

 mpls te max-reservable-bandwidth 50

mpls rsvp-te

#

interface Ethernet0/1

 port link-mode route

 description connects to RTC

 ip address 2.3.0.2 255.255.255.0

mpls

 //接口使能mpls te

 mpls te

 //指定接口的最大链路带宽BC0

 mpls te max-link-bandwidth 100

 //指定接口的最大预留带宽BC1必须小于BC0

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

interface LoopBack0

 ip address 2.2.2.2 255.255.255.255

#

ospf 1

//支持type 10 LSA的发送与接收

 opaque-capability enable

 area 0.0.0.0

  network 2.2.2.2 0.0.0.0

  network 1.2.0.0 0.0.0.255

  network 2.3.0.0 0.0.0.255

  //使能该区域的te数据采集

  mpls-te enable

#

RTC配置

#

router id 3.3.3.3

#

mpls lsr-id 3.3.3.3

#

mpls

//全局使能TE

 mpls te

 mpls rsvp-te

//使能cspf

 mpls te cspf

#

interface Ethernet0/0

 port link-mode route

 description connects to RTB

 ip address 2.3.0.3 255.255.255.0

mpls

 //接口使能mpls te

 mpls te

 //指定接口的最大链路带宽BC0

 mpls te max-link-bandwidth 100

 //指定接口的最大预留带宽BC1必须小于BC0

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

interface Ethernet0/1

 port link-mode route

 description connects to RTD

 ip address 3.4.0.3 255.255.255.0

mpls

 //接口使能mpls te

 mpls te

 //指定接口的最大链路带宽BC0

 mpls te max-link-bandwidth 100

 //指定接口的最大预留带宽BC1必须小于BC0

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

interface LoopBack0

 ip address 3.3.3.3 255.255.255.255

#

ospf 1

//支持type 10 LSA的发送与接收

 opaque-capability enable

 area 0.0.0.0

  network 3.3.3.3 0.0.0.0

  network 2.3.0.0 0.0.0.255

  network 3.4.0.0 0.0.0.255

  //使能该区域的te数据采集

  mpls-te enable

#

RTD配置

#

router id 4.4.4.4

#

mpls lsr-id 4.4.4.4

#

mpls

//全局使能TE

 mpls te

 mpls rsvp-te

//使能cspf

 mpls te cspf

#

interface Ethernet0/0

 port link-mode route

 description connects to RTA

 ip address 1.4.0.4 255.255.255.0

mpls

 //接口使能mpls te

 mpls te

 //指定接口的最大链路带宽BC0

 mpls te max-link-bandwidth 100

 //指定接口的最大预留带宽BC1必须小于BC0

 mpls te max-reservable-bandwidth 50

mpls rsvp-te

#

interface Ethernet0/1

 port link-mode route

 description connects to RTC

 ip address 3.4.0.4 255.255.255.0

mpls

 //接口使能mpls te

 mpls te

 //指定接口的最大链路带宽BC0

 mpls te max-link-bandwidth 100

 //指定接口的最大预留带宽BC1必须小于BC0

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

interface LoopBack0

 ip address 4.4.4.4 255.255.255.255

#

ospf 1

//支持type 10 LSA的发送与接收

 opaque-capability enable

 area 0.0.0.0

  network 4.4.4.4 0.0.0.0

  network 1.4.0.0 0.0.0.255

  network 3.4.0.0 0.0.0.255

  //使能该区域的te数据采集

  mpls-te enable

#

四、配置关键点

1) RSVP-TE + OSPF配置正确的基础上稍作修改;

2) RTATunnel口上配置mpls te backup hot-standby

X Close
X Close