• 全部
  • 经验案例
  • 典型配置
  • 技术公告
  • FAQ
  • 漏洞说明
  • 全部
  • 全部
  • 大数据引擎
  • 知了引擎
产品线
搜索
取消
案例类型
发布者
是否解决
是否官方
时间
搜索引擎
匹配模式
高级搜索

MSR路由器MPLS TE 快速重路由链路保护功能的配置

2006-09-08 发表
  • 0关注
  • 0收藏 664浏览
粉丝: 关注:

MSR路由器

MPLS TE 快速重路由功能的配置

 

关键字:MSR;MPLS;TE;Fast-Reroute;快速重路由;RSVP-TE

 

一、组网需求

RTARTBRTCRTDRTE通过ISIS发布路由,RTA通过RSVP-TE + 显式路径建立一条到RTDTE隧道,RTB为保护节点,通过显式路径建立一条经过RTERTC的链路,保护RTBRTC的直连链路

设备清单:MSR路由器5

二、组网图:

三、配置步骤:

适用设备和版本:MSRVersion 5.20, Beta 1105后所有版本。

RTA配置

#

 router id 1.1.1.1

#

mpls lsr-id 1.1.1.1

#

#

mpls

mpls te

//使能RSVP-TE,快速重路由只能使用RSVP-TE,不能使用CRLDP

mpls rsvp-te

mpls te cspf

#

 //定义严格显式路径建立TE隧道主路径

 explicit-path pri

  next hop 1.2.0.2

  next hop 2.3.0.3

  next hop 3.4.0.4

  next hop 4.4.4.4

#

isis 1

 is-level level-2

cost-style wide

 network-entity 01.0000.1111.1111.1111.00

 is-name RTA

 traffic-eng level-2

#

interface Ethernet0/0

 port link-mode route

 description connects to RTB

 ip address 1.2.0.1 255.255.255.0

 isis enable 1

 isis small-hello

 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

 isis enable 1

#

interface Tunnel0

 ip address 1.4.0.1 255.255.255.0

 tunnel-protocol mpls te

 destination 4.4.4.4

 isis enable 1

 isis small-hello

 mpls te record-route label

 mpls te bandwidth bc0 10

 //根据显式路径建立隧道

 mpls te path explicit-path pri

 //使隧道使能快速重路由感知

 mpls te fast-reroute

 mpls te igp shortcut

 mpls te igp metric absolute 20

 mpls te commit

#

RTB配置

#

router id 2.2.2.2

#

mpls lsr-id 2.2.2.2

#

mpls

mpls te

 mpls rsvp-te

mpls te cspf

#

 //用于保护主链路的旁路显式路径

 explicit-path bypass

  next hop 2.5.0.5

  next hop 3.5.0.3

  next hop 3.3.3.3

#

isis 1

 is-level level-2

 cost-style wide

 network-entity 01.0000.2222.2222.2222.00

 is-name RTB

 traffic-eng level-2

#

interface Ethernet5/0

 port link-mode route

 description connects to RTE

 ip address 2.5.0.2 255.255.255.0

 isis enable 1

 isis small-hello

 mpls

 mpls te

 mpls te max-link-bandwidth 100

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

interface LoopBack0

 ip address 2.2.2.2 255.255.255.255

 isis enable 1

#

interface Ethernet0/0

 port link-mode route

 description connects to RTA

 ip address 1.2.0.2 255.255.255.0

 isis enable 1

 isis small-hello

 mpls

 mpls te

 mpls te max-link-bandwidth 100

 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

 isis enable 1

 isis small-hello

 mpls

 mpls te

 mpls te max-link-bandwidth 100

 mpls te max-reservable-bandwidth 50

 //绑定重路由的旁路

 mpls te fast-reroute bypass-tunnel Tunnel0

 mpls rsvp-te

#

//定义旁路TE隧道

interface Tunnel0

 ip address 2.3.1.1 255.255.255.0

 tunnel-protocol mpls te

 destination 3.3.3.3

 mpls te record-route label

 //根据显式路径建立,必配

 mpls te path explicit-path bypass

 //指定备份带宽,必配

 mpls te backup bandwidth 10

 mpls te commit

#

RTC配置

#

router id 3.3.3.3

#

mpls lsr-id 3.3.3.3

#

mpls

 mpls te

 mpls rsvp-te

 mpls te cspf

#

isis 1

 is-level level-2

cost-style wide

 network-entity 01.0000.3333.3333.3333.00

 is-name RTC

 traffic-eng level-2

#

interface Ethernet5/0

 port link-mode route

 description connects to RTE

 ip address 3.5.0.3 255.255.255.0

 isis enable 1

 isis small-hello

 mpls

 mpls te

 mpls te max-link-bandwidth 100

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

interface LoopBack0

 ip address 3.3.3.3 255.255.255.255

 isis enable 1

#

interface Ethernet0/0

 port link-mode route

 description connects to RTD

 ip address 3.4.0.3 255.255.255.0

 isis enable 1

 isis small-hello

 mpls

 mpls te

 mpls te max-link-bandwidth 100

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

interface Ethernet0/1

 port link-mode route

 description connects to RTB

 ip address 2.3.0.3 255.255.255.0

 isis enable 1

 isis small-hello

 mpls

 mpls te

 mpls te max-link-bandwidth 100

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

RTD配置

#

router id 4.4.4.4

#

mpls lsr-id 4.4.4.4

#

mpls

 mpls te

 mpls rsvp-te

mpls te cspf

#

isis 1

 is-level level-2

cost-style wide

 network-entity 01.0000.4444.4444.4444.00

 is-name RTD

 traffic-eng level-2

#

interface Ethernet0/0

 port link-mode route

 description connects to RTC

 ip address 3.4.0.4 255.255.255.0

 isis enable 1

 isis small-hello

 mpls

 mpls te

 mpls te max-link-bandwidth 100

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

RTE配置

#

 router id 5.5.5.5

#

mpls lsr-id 5.5.5.5

#

mpls

 mpls te

 mpls rsvp-te

 mpls te cspf

#

isis 1

 is-level level-2

 bandwidth-reference 10000

 cost-style wide

 network-entity 01.0000.5555.5555.5555.00

 is-name RTE

 traffic-eng level-2

#

interface Ethernet0/0

 port link-mode route

 description connnects to RTB

 ip address 2.5.0.5 255.255.255.0

 isis enable 1

 isis small-hello

 mpls

 mpls te

 mpls te max-link-bandwidth 100

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

interface Ethernet0/1

 port link-mode route

 description connects to RTC

 ip address 3.5.0.5 255.255.255.0

 isis enable 1

 isis small-hello

 mpls

 mpls te

 mpls te max-link-bandwidth 100

 mpls te max-reservable-bandwidth 50

 mpls rsvp-te

#

interface LoopBack0

 ip address 5.5.5.5 255.255.255.255

 isis enable 1

#

四、配置关键点

1) 快速重路由只能使用RSVP-TE作为信令协议;

2) 需要在RTA和RTB上建立显式路径,并且根据显式路径建立隧道;

3) RTA的Tunnel口上需要配置快速重路由感知;

4) RTB的Tunnel口必须要配置备份带宽;

5) RTB 将旁路Tunnel绑定在主隧道的出接口上。

若您有关于案例的建议,请反馈:

作者在2010-09-13对此案例进行了修订
0 个评论

该案例暂时没有网友评论

编辑评论

举报

×

侵犯我的权益 >
对根叔知了社区有害的内容 >
辱骂、歧视、挑衅等(不友善)

侵犯我的权益

×

泄露了我的隐私 >
侵犯了我企业的权益 >
抄袭了我的内容 >
诽谤我 >
辱骂、歧视、挑衅等(不友善)
骚扰我

泄露了我的隐私

×

您好,当您发现根叔知了上有泄漏您隐私的内容时,您可以向根叔知了进行举报。 请您把以下内容通过邮件发送到pub.zhiliao@h3c.com 邮箱,我们会尽快处理。
  • 1. 您认为哪些内容泄露了您的隐私?(请在邮件中列出您举报的内容、链接地址,并给出简短的说明)
  • 2. 您是谁?(身份证明材料,可以是身份证或护照等证件)

侵犯了我企业的权益

×

您好,当您发现根叔知了上有关于您企业的造谣与诽谤、商业侵权等内容时,您可以向根叔知了进行举报。 请您把以下内容通过邮件发送到 pub.zhiliao@h3c.com 邮箱,我们会在审核后尽快给您答复。
  • 1. 您举报的内容是什么?(请在邮件中列出您举报的内容和链接地址)
  • 2. 您是谁?(身份证明材料,可以是身份证或护照等证件)
  • 3. 是哪家企业?(营业执照,单位登记证明等证件)
  • 4. 您与该企业的关系是?(您是企业法人或被授权人,需提供企业委托授权书)
我们认为知名企业应该坦然接受公众讨论,对于答案中不准确的部分,我们欢迎您以正式或非正式身份在根叔知了上进行澄清。

抄袭了我的内容

×

原文链接或出处

诽谤我

×

您好,当您发现根叔知了上有诽谤您的内容时,您可以向根叔知了进行举报。 请您把以下内容通过邮件发送到pub.zhiliao@h3c.com 邮箱,我们会尽快处理。
  • 1. 您举报的内容以及侵犯了您什么权益?(请在邮件中列出您举报的内容、链接地址,并给出简短的说明)
  • 2. 您是谁?(身份证明材料,可以是身份证或护照等证件)
我们认为知名企业应该坦然接受公众讨论,对于答案中不准确的部分,我们欢迎您以正式或非正式身份在根叔知了上进行澄清。

对根叔知了社区有害的内容

×

垃圾广告信息
色情、暴力、血腥等违反法律法规的内容
政治敏感
不规范转载 >
辱骂、歧视、挑衅等(不友善)
骚扰我
诱导投票

不规范转载

×

举报说明

提出建议

    +

亲~登录后才可以操作哦!

确定

亲~检测到您登陆的账号未在http://hclhub.h3c.com进行注册

注册后可访问此模块

跳转hclhub

你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作