• 产品与解决方案
  • 行业解决方案
  • 服务
  • 支持
  • 合作伙伴
  • 新华三人才研学中心
  • 关于我们

H3C S12500R系列交换路由器 典型配置举例-Release 36xx系列-6W100

目录

62-MPLS SR典型配置举例

本章节下载 62-MPLS SR典型配置举例  (225.23 KB)

docurl=/cn/Service/Document_Software/Document_Center/Switches/Catalog/S12500/S12500R/Configure/Typical_Configuration_Example/H3C_S12500R_CE_36xx/202104/1400540_30005_0.htm

62-MPLS SR典型配置举例

H3C S12500R产品MPLS SR典型配置举例

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Copyright © 2021 新华三技术有限公司 版权所有,保留一切权利。

非经本公司书面许可,任何单位和个人不得擅自摘抄、复制本文档内容的部分或全部,并不得以任何形式传播。

除新华三技术有限公司的商标外,本手册中出现的其它公司的商标、产品标识及商品名称,由各自权利人拥有。

本文档中的信息可能变动,恕不另行通知。



1  简介

本文档介绍MPLS SR特性的配置举例。

SR采用源路径选择机制,预先在源节点封装好路径所要经过节点分配的SID,当报文经过SR节点时,该节点根据报文的SID对报文进行转发。除源节点外,其它节点无需维护路径状态。MPLS SR是指在MPLS网络中使用SR、将标签作为SID对报文进行转发。

2  配置前提

本文档中的配置均是在实验室环境下进行的配置和验证,配置前设备的所有参数均采用出厂时的缺省配置。如果您已经对设备进行了配置,为了保证配置效果,请确认现有配置和以下举例中的配置不冲突。

本文档假设您已了解MPLS SR特性。

3  MPLS SR over LDP网络互通配置举例

3.1  组网需求

图1所示,MPLS SR网络被LDP网络隔断,为了实现MPLS SR网络间用户互通,需要完成MPLS SR和LDP网络间标签的连接,及当Device A通过SRLSP将流量转发给Device E时,需要在Device B和Device D上完成MPLS SR和LDP标签的连接。

图1 MPLS SR over LDP网络互通组网图

 

设备

接口

IP地址

设备

接口

IP地址

Device A

Loop1

1.1.1.1/32

Device B

Loop1

2.2.2.2/32

 

HGE1/0/1

10.0.0.1/24

 

HGE1/0/1

10.0.0.2/24

Device C

Loop1

3.3.3.3/32

 

HGE1/0/2

11.0.0.1/24

 

HGE1/0/1

12.0.0.1/24

Device D

Loop1

4.4.4.4/32

 

HGE1/0/2

11.0.0.2/24

 

HGE1/0/2

12.0.0.2/24

Device E

Loop1

5.5.5.5/32

 

HGE1/0/1

13.0.0.1/24

 

HGE1/0/1

13.0.0.2/24

 

 

 

 

3.2  配置思路

·     设备Device A、Device B、Device C、Device D和Device E运行IS-IS实现互通。

·     设备Device B、Device C、Device D均配置LDP;Device A、Device B、Device D和Device E配置IS-IS SR功能。

3.3  使用版本

本举例是在R3606版本上进行配置和验证的。

3.4  配置步骤

3.4.1  配置Device A

# 按照图1配置各接口的IP地址和掩码,包括LoopBack接口,具体配置过程略。

# 配置IS-IS协议实现网络层互通,开销值类型为wide。

<DeviceA> system-view

[DeviceA] isis 1

[DeviceA-isis-1] network-entity 00.0000.0000.0001.00

[DeviceA-isis-1] cost-style wide

[DeviceA-isis-1] quit

[DeviceA] interface hundredgige 1/0/1

[DeviceA-HundredGigE1/0/1] isis enable 1

[DeviceA-HundredGigE1/0/1] quit

[DeviceA] interface loopback 1

[DeviceA-LoopBack1] isis enable 1

[DeviceA-LoopBack1] quit

# 配置节点的MPLS LSR ID。

[DeviceA] mpls lsr-id 1.1.1.1

# 开启IS-IS SR功能。

[DeviceA] isis 1

[DeviceA-isis-1] address-family ipv4

[DeviceA-isis-1-ipv4] segment-routing mpls

[DeviceA-isis-1-ipv4] quit

# 配置IS-IS SR的SRGB。

[DeviceA-isis-1] segment-routing global-block 16000 16999

[DeviceA-isis-1] quit

# 配置前缀SID索引。

[DeviceA] interface loopback 1

[DeviceA-LoopBack1] isis prefix-sid index 10

[DeviceA-LoopBack1] quit

3.4.2  配置Device B

# 按照图1配置各接口的IP地址和掩码,包括LoopBack接口,具体配置过程略。

# 配置IS-IS协议实现网络层互通,开销值类型为wide。

<DeviceB> system-view

[DeviceB] isis 1

[DeviceB-isis-1] network-entity 00.0000.0000.0002.00

[DeviceB-isis-1] cost-style wide

[DeviceB-isis-1] quit

[DeviceB] interface hundredgige 1/0/1

[DeviceB-HundredGigE1/0/1] isis enable 1

[DeviceB-HundredGigE1/0/1] quit

[DeviceB] interface hundredgige 1/0/2

[DeviceB-HundredGigE1/0/2] isis enable 1

[DeviceB-HundredGigE1/0/2] quit

[DeviceB] interface loopback 1

[DeviceB-LoopBack1] isis enable 1

[DeviceB-LoopBack1] quit

# 配置节点的MPLS LSR ID。

[DeviceB] mpls lsr-id 2.2.2.2

# 配置节点的LDP功能。

[DeviceB] mpls ldp

[DeviceB-ldp] quit

[DeviceB] interface hundredgige 1/0/2

[DeviceB-HundredGigE1/0/2] mpls enable

[DeviceB-HundredGigE1/0/2] mpls ldp enable

[DeviceB-HundredGigE1/0/2] quit

# 开启IS-IS SR功能。

[DeviceB] isis 1

[DeviceB-isis-1] address-family ipv4

[DeviceB-isis-1-ipv4] segment-routing mpls

[DeviceB-isis-1-ipv4] quit

# 配置IS-IS SR的SRGB。

[DeviceB-isis-1] segment-routing global-block 17000 17999

[DeviceB-isis-1] quit

# 配置前缀SID索引。

[DeviceB] interface loopback 1

[DeviceB-LoopBack1] isis prefix-sid index 20

[DeviceB-LoopBack1] quit

3.4.3  配置Device C

# 按照图1配置各接口的IP地址和掩码,包括LoopBack接口,具体配置过程略。

# 配置IS-IS协议实现网络层互通,开销值类型为wide。

<DeviceC> system-view

[DeviceC] isis 1

[DeviceC-isis-1] network-entity 00.0000.0000.0003.00

[DeviceC-isis-1] cost-style wide

[DeviceC-isis-1] quit

[DeviceC] interface hundredgige 1/0/1

[DeviceC-HundredGigE1/0/1] isis enable 1

[DeviceC-HundredGigE1/0/1] quit

[DeviceC] interface hundredgige 1/0/2

[DeviceC-HundredGigE1/0/2] isis enable 1

[DeviceC-HundredGigE1/0/2] quit

[DeviceC] interface loopback 1

[DeviceC-LoopBack1] isis enable 1

[DeviceC-LoopBack1] quit

# 配置节点的MPLS LSR ID。

[DeviceC] mpls lsr-id 3.3.3.3

# 配置节点的LDP功能。

[DeviceC] mpls ldp

[DeviceC-ldp] quit

[DeviceC] interface hundredgige 1/0/1

[DeviceC-HundredGigE1/0/1] mpls enable

[DeviceC-HundredGigE1/0/1] mpls ldp enable

[DeviceC-HundredGigE1/0/1] quit

[DeviceC] interface hundredgige 1/0/2

[DeviceC-HundredGigE1/0/2] mpls enable

[DeviceC-HundredGigE1/0/2] mpls ldp enable

[DeviceC-HundredGigE1/0/2] quit

3.4.4  配置Device D

# 按照图1配置各接口的IP地址和掩码,包括LoopBack接口,具体配置过程略。

# 配置IS-IS协议实现网络层互通,开销值类型为wide。

<DeviceD> system-view

[DeviceD] isis 1

[DeviceD-isis-1] network-entity 00.0000.0000.0004.00

[DeviceD-isis-1] cost-style wide

[DeviceD-isis-1] quit

[DeviceD] interface hundredgige 1/0/1

[DeviceD-HundredGigE1/0/1] isis enable 1

[DeviceD-HundredGigE1/0/1] quit

[DeviceD] interface hundredgige 1/0/2

[DeviceD-HundredGigE1/0/2] isis enable 1

[DeviceD-HundredGigE1/0/2] quit

[DeviceD] interface loopback 1

[DeviceD-LoopBack1] isis enable 1

[DeviceD-LoopBack1] quit

# 配置节点的MPLS LSR ID。

[DeviceD] mpls lsr-id 4.4.4.4

# 配置节点的LDP功能。

[DeviceD] mpls ldp

[DeviceD-ldp] quit

[DeviceD] interface hundredgige 1/0/1

[DeviceD-HundredGigE1/0/1] mpls enable

[DeviceD-HundredGigE1/0/1] mpls ldp enable

[DeviceD-HundredGigE1/0/1] quit

# 开启IS-IS SR功能。

[DeviceD] isis 1

[DeviceD-isis-1] address-family ipv4

[DeviceD-isis-1-ipv4] segment-routing mpls

[DeviceD-isis-1-ipv4] quit

# 配置IS-IS SR的SRGB。

[DeviceD-isis-1] segment-routing global-block 18000 18999

[DeviceD-isis-1] quit

# 配置前缀SID索引。

[DeviceD] interface loopback 1

[DeviceD-LoopBack1] isis prefix-sid index 40

[DeviceD-LoopBack1] quit

3.4.5  配置Device E

# 按照图1配置各接口的IP地址和掩码,包括LoopBack接口,具体配置过程略。

# 配置IS-IS协议实现网络层互通,开销值类型为wide。

<DeviceE> system-view

[DeviceE] isis 1

[DeviceE-isis-1] network-entity 00.0000.0000.0005.00

[DeviceE-isis-1] cost-style wide

[DeviceE-isis-1] quit

[DeviceE] interface hundredgige 1/0/1

[DeviceE-HundredGigE1/0/1] isis enable 1

[DeviceE-HundredGigE1/0/1] quit

[DeviceE] interface loopback 1

[DeviceE-LoopBack1] isis enable 1

[DeviceE-LoopBack1] quit

# 配置节点的MPLS LSR ID。

[DeviceE] mpls lsr-id 5.5.5.5

# 开启IS-IS SR功能。

[DeviceE] isis 1

[DeviceE-isis-1] address-family ipv4

[DeviceE-isis-1-ipv4] segment-routing mpls

[DeviceE-isis-1-ipv4] quit

# 配置IS-IS SR的SRGB。

[DeviceE-isis-1] segment-routing global-block 19000 19999

[DeviceE-isis-1] quit

# 配置前缀SID索引。

[DeviceE] interface loopback 1

[DeviceE-LoopBack1] isis prefix-sid index 50

[DeviceE-LoopBack1] quit

3.5  验证配置

# 在Device B上查看LDP标签分配情况。

[DeviceB] display mpls ldp lsp

Status Flags: * - stale, L - liberal, B - backup, N/A - unavailable

FECs: 5            Ingress: 3          Transit: 3      Egress: 2

 

FEC                In/Out Label        Nexthop         OutInterface/LSINDEX

1.1.1.1/32         24116/-

                   -/24117(L)

2.2.2.2/32         3/-

                   -/24120(L)

3.3.3.3/32         -/3                 11.0.0.2        HGE1/0/2

                   24121/3             11.0.0.2        HGE1/0/2

4.4.4.4/32         -/24119             11.0.0.2        HGE1/0/2

                   24118/24119         11.0.0.2        HGE1/0/2

5.5.5.5/32         -/24118             11.0.0.2        HGE1/0/2

                   24117/24118         11.0.0.2        HGE1/0/2

# 在Device B上查看IS-IS SR到达Device D和Device E的出标签关联上了LDP标签。

[DeviceB] display mpls lsp protocol isis

FEC                         Proto    In/Out Label    Interface/Out NHLFE

1.1.1.1/32                  ISIS     17010/3         HGE1/0/1

1.1.1.1/32                  ISIS     -/3             HGE1/0/1

2.2.2.2/32                  ISIS     17020/-         -

4.4.4.4/32                  ISIS     17040/24119     HGE1/0/2

4.4.4.4/32                  ISIS     -/24119         HGE1/0/2

5.5.5.5/32                  ISIS     17050/24118     HGE1/0/2

5.5.5.5/32                  ISIS     -/24118         HGE1/0/2

3.6  配置文件

·     Device A:

#

isis 1

 cost-style wide

 segment-routing global-block 16000 16999

 network-entity 00.0000.0000.0001.00

 #

 address-family ipv4 unicast

  segment-routing mpls

#

 mpls lsr-id 1.1.1.1

#

interface LoopBack1

 ip address 1.1.1.1 255.255.255.255

 isis enable 1

 isis prefix-sid index 10

#

interface HundredGigE1/0/1

 port link-mode route

 ip address 10.0.0.1 255.255.255.0

 isis enable 1

#

·     Device B:

#

isis 1

 cost-style wide

 segment-routing global-block 17000 17999

 network-entity 00.0000.0000.0002.00

 #

 address-family ipv4 unicast

  segment-routing mpls

#

 mpls lsr-id 2.2.2.2

#

mpls ldp

#

interface LoopBack1

 ip address 2.2.2.2 255.255.255.255

 isis enable 1

 isis prefix-sid index 20

#

interface HundredGigE1/0/1

 port link-mode route

 ip address 10.0.0.2 255.255.255.0

 isis enable 1

#

interface HundredGigE1/0/2

 port link-mode route

 ip address 11.0.0.1 255.255.255.0

 isis enable 1

 mpls enable

 mpls ldp enable

#

·     Device C:

#

isis 1

 cost-style wide

 network-entity 00.0000.0000.0003.00

#

 mpls lsr-id 3.3.3.3

#

mpls ldp

#

interface LoopBack1

 ip address 3.3.3.3 255.255.255.255

 isis enable 1

#

interface HundredGigE1/0/1

 port link-mode route

 ip address 12.0.0.1 255.255.255.0

 isis enable 1

 mpls enable

 mpls ldp enable

#

interface HundredGigE1/0/2

 port link-mode route

 ip address 11.0.0.2 255.255.255.0

 isis enable 1

 mpls enable

 mpls ldp enable

#

·     Device D:

#

isis 1

 cost-style wide

 segment-routing global-block 18000 18999

 network-entity 00.0000.0000.0004.00

 #

 address-family ipv4 unicast

  segment-routing mpls

#

 mpls lsr-id 4.4.4.4

#

mpls ldp

#

interface LoopBack1

 ip address 4.4.4.4 255.255.255.255

 isis enable 1

 isis prefix-sid index 40

#

interface HundredGigE1/0/1

 port link-mode route

 ip address 13.0.0.1 255.255.255.0

 isis enable 1

#

interface HundredGigE1/0/2

 port link-mode route

 ip address 12.0.0.2 255.255.255.0

 isis enable 1

 mpls enable

 mpls ldp enable

#

·     Device E:

#

isis 1

 cost-style wide

 segment-routing global-block 19000 19999

 network-entity 00.0000.0000.0005.00

 #

 address-family ipv4 unicast

  segment-routing mpls

#

 mpls lsr-id 5.5.5.5

#

interface LoopBack1

 ip address 5.5.5.5 255.255.255.255

 isis enable 1

 isis prefix-sid index 50

#

interface HundredGigE1/0/1

 port link-mode route

 ip address 13.0.0.2 255.255.255.0

 isis enable 1

#

4  相关资料

·     H3C S12500R系列交换路由器 Segment Routing配置指导-R3606

·     H3C S12500R系列交换路由器 Segment Routing命令参考-R3606

不同款型规格的资料略有差异, 详细信息请向具体销售和400咨询。H3C保留在没有任何通知或提示的情况下对资料内容进行修改的权利!

新华三官网
联系我们