当前位置:   article > 正文

华为配置OSPF的Stub区域示例

华为配置OSPF的Stub区域示例

配置OSPF的Stub区域示例

组网图形

图1 配置OSPF Stub区域组网图

  • Stub区域简介
  • 配置注意事项
  • 组网需求
  • 配置思路
  • 操作步骤
  • 配置文件

Stub区域简介

Stub区域的ABR不传播它们接收到的自治系统外部路由,在Stub区域中路由器的路由表规模以及路由信息传递的数量都会大大减少。为保证到自治系统外的路由依旧可达,该区域的ABR将生成一条缺省路由,并发布给Stub区域中的其他非ABR路由器。

例如H公司有一台设备通过单链路与骨干区域连接,这台设备的性能较低,路由表规格也比较小。对于这台设备来说,这个区域需要访问其他区域,或者是OSPF域外的网段的时候,它的路由的下一跳都是这个单链路所对应的下一跳核心设备的IP。所以这个区域没有必要学习到大量的OSPF外部路由,此时就可以考虑将该区域配置成Stub区域。这样就能减小这个区域的路由表规模,降低对设备性能资源的消耗。

配置注意事项
  • 骨干区域不能配置成Stub区域。
  • Stub区域内不能存在ASBR,即自治系统外部的路由不能在本区域内传播。
  • 虚连接不能穿过Stub区域。
  • 如果要将一个区域配置成Stub区域,则该区域中的所有路由器都要配置Stub区域属性。
  • 如果要将一个区域配置成Totally Stub区域,该区域中的所有路由器必须配置stub命令,而其中该区域的ABR路由器需要配置stub no-summary命令。
  • stub no-summary命令仅能用于ABR上,用于禁止ABR向Stub区域内发布3类LSA。在ABR上配置该命令以后该区域成为Totally Stub区域,这时区域内的路由表项进一步减少,只有区域内路由和ABR通告的一条缺省路由。
  • 本举例适用的产品包括:
    • V200R011C10及之后版本的S2720-EI
    • S3700-EI、S3700-HI
    • S5700-EI、S5700-HI、S5710-EI、S5710-HI、S5720-LI、S5720S-LI、S5720-SI、S5720S-SI、S5720I-SI、S5720-EI、S5720-HI、S5730-HI、S5730-SI、S5730S-EI、S5731-H、S5731-S、S5731S-S、S5731S-H、S5731-H-K、S5732-H、S5732-H-K、S2730S-S、S5735-L-I、S5735-L1、S300、S5735-L、S5735S-L1、S5735S-L、S5735S-L-M、S500、S5735-S、S5735S-S、S5735-S-I、S5735S-H、S5736-S
    • S6700-EI、S6720-LI、S6720S-LI、S6720-SI、S6720S-SI、S6720-EI、S6720S-EI、S6720-HI、S6730-H、S6730-S、S6730S-S、S6730S-H、S6730-H-K
    • S7703、S7706、S7712、S7710、S7703 PoE、S7706 PoE、S7905、S7908
    • S9703、S9706、S9712
  • 本举例中产品的默认适用版本请参见“案例适用的产品和版本说明”中的表1

如需了解交换机软件配套详细信息,请点击Info-Finder,在选择产品系列或产品型号后,在“硬件中心”进行查询。

S5731-L和S5731S-L属于远端模块,不支持Web管理、YANG和命令行,仅支持通过中心交换机对其下发配置,相关操作请参见《S300, S500, S2700, S5700, S6700 V200R022C00 配置指南-设备管理》中的“智能极简园区网络配置(小行星方案)”。

组网需求

图1所示,三台交换机之间运行OSPF协议,整个OSPF网络被划分为Area0和Area1两个区域,其中SwitchB作为ASBR与OSPF外部网络实现互通。现要求在不影响通信的情况下减少SwitchC上OSPF路由表的规模。

配置思路

采用如下的思路配置OSPF Stub区域:

  1. 在各交换机上配置OSPF基本功能,实现OSPF网络的基本互通。

  2. 在SwitchB上配置静态路由,并引入到OSPF路由表中,实现OSPF网络到外部网络路由可达。

  3. 配置Area1为Stub区域,初步减少SwitchC上OSPF路由表的规模。

  4. 在Area1的ABR(SwitchA)上配置禁止向Stub区域通告Type3 LSA,即将Area1配置为Totally Stub区域,达到最大限度减少SwitchC上OSPF路由表规模的目的。

操作步骤
  1. 配置各接口所属的VLAN

    1. # 配置SwitchASwitchBSwitchC的配置与SwitchA类似。
    2. <HUAWEI> system-view
    3. [HUAWEI] sysname SwitchA
    4. [SwitchA] vlan batch 10 20
    5. [SwitchA] interface gigabitethernet 0/0/1
    6. [SwitchA-GigabitEthernet0/0/1] port link-type trunk
    7. [SwitchA-GigabitEthernet0/0/1] port trunk allow-pass vlan 10
    8. [SwitchA-GigabitEthernet0/0/1] quit
    9. [SwitchA] interface gigabitethernet 0/0/2
    10. [SwitchA-GigabitEthernet0/0/2] port link-type trunk
    11. [SwitchA-GigabitEthernet0/0/2] port trunk allow-pass vlan 20
    12. [SwitchA-GigabitEthernet0/0/2] quit

  2. 配置各VLANIF接口的IP地址

    1. # 配置SwitchASwitchBSwitchC的配置与SwitchA类似。
    2. [SwitchA] interface vlanif 10
    3. [SwitchA-Vlanif10] ip address 192.168.0.1 24
    4. [SwitchA-Vlanif10] quit
    5. [SwitchA] interface vlanif 20
    6. [SwitchA-Vlanif20] ip address 192.168.1.1 24
    7. [SwitchA-Vlanif20] quit

  3. 配置OSPF基本功能

    1. # 配置SwitchA
    2. [SwitchA] ospf 1 router-id 10.1.1.1
    3. [SwitchA-ospf-1] area 0
    4. [SwitchA-ospf-1-area-0.0.0.0] network 192.168.0.0 0.0.0.255
    5. [SwitchA-ospf-1-area-0.0.0.0] quit
    6. [SwitchA-ospf-1] area 1
    7. [SwitchA-ospf-1-area-0.0.0.1] network 192.168.1.0 0.0.0.255
    8. [SwitchA-ospf-1-area-0.0.0.1] quit
    9. [SwitchA-ospf-1] quit
    10. # 配置SwitchB
    11. [SwitchB] ospf 1 router-id 10.2.2.2
    12. [SwitchB-ospf-1] area 0
    13. [SwitchB-ospf-1-area-0.0.0.0] network 192.168.0.0 0.0.0.255
    14. [SwitchB-ospf-1-area-0.0.0.0] quit
    15. [SwitchB-ospf-1] quit
    16. # 配置SwitchC
    17. [SwitchC] ospf 1 router-id 10.3.3.3
    18. [SwitchC-ospf-1] area 1
    19. [SwitchC-ospf-1-area-0.0.0.1] network 192.168.1.0 0.0.0.255
    20. [SwitchC-ospf-1-area-0.0.0.1] quit
    21. [SwitchC-ospf-1] quit

  4. 配置SwitchB引入静态路由

    1. [SwitchB] ip route-static 10.0.0.0 8 null 0
    2. [SwitchB] ospf 1
    3. [SwitchB-ospf-1] import-route static type 1 //SwitchB作为ASBR,引入外部路由
    4. [SwitchB-ospf-1] quit
    5. # 查看SwitchCOSPF路由表信息,可以看到OSPF路由表中存在AS外部的路由。
    6. [SwitchC] display ospf routing
    7. OSPF Process 1 with Router ID 10.3.3.3
    8. Routing Tables
    9. Routing for Network
    10. Destination Cost Type NextHop AdvRouter Area
    11. 192.168.1.0/24 1 Transit 192.168.1.2 10.3.3.3 0.0.0.1
    12. 192.168.0.0/24 2 Inter-area 192.168.1.1 10.1.1.1 0.0.0.1
    13. Routing for ASEs
    14. Destination Cost Type Tag NextHop AdvRouter
    15. 10.0.0.0/8 3 Type1 1 192.168.1.1 10.2.2.2
    16. Total Nets: 3
    17. Intra Area: 1 Inter Area: 1 ASE: 1 NSSA: 0

  5. 配置Area1为Stub区域

    1. # 配置SwitchA
    2. [SwitchA] ospf 1
    3. [SwitchA-ospf-1] area 1
    4. [SwitchA-ospf-1-area-0.0.0.1] stub //配置area 1区域为stub区域,area 1内的所有路由器都要配置stub命令
    5. [SwitchA-ospf-1-area-0.0.0.1] quit
    6. [SwitchA-ospf-1] quit
    7. # 配置SwitchC
    8. [SwitchC] ospf 1
    9. [SwitchC-ospf-1] area 1
    10. [SwitchC-ospf-1-area-0.0.0.1] stub //配置area 1区域为stub区域,area 1内的所有路由器都要配置stub命令
    11. [SwitchC-ospf-1-area-0.0.0.1] quit
    12. [SwitchC-ospf-1] quit
    13. # 查看SwitchCOSPF路由表信息,发现此时AS外部的路由10.0.0.0/8已经消失,但是多了一条通往区域外部的缺省路由。
    14. [SwitchC] display ospf routing
    15. OSPF Process 1 with Router ID 10.3.3.3
    16. Routing Tables
    17. Routing for Network
    18. Destination Cost Type NextHop AdvRouter Area
    19. 192.168.1.0/24 1 Transit 192.168.1.2 10.3.3.3 0.0.0.1
    20. 0.0.0.0/0 2 Inter-area 192.168.1.1 10.1.1.1 0.0.0.1
    21. 192.168.0.0/24 2 Inter-area 192.168.1.1 10.1.1.1 0.0.0.1
    22. Total Nets: 3
    23. Intra Area: 1 Inter Area: 2 ASE: 0 NSSA: 0

  6. 配置Area1为Totally Stub区域

    1. [SwitchA] ospf 1
    2. [SwitchA-ospf-1] area 1
    3. [SwitchA-ospf-1-area-0.0.0.1] stub no-summary //配置area 1区域为Totally Stub区域,area 1内的ABR要配置stub no-summary命令,其他设备配置stub命令
    4. [SwitchA-ospf-1-area-0.0.0.1] quit
    5. [SwitchA-ospf-1] quit

  7. 验证配置结果

    1. # 查看SwitchCOSPF路由表,发现目的地址为192.168.0.0/24的区域间路由也消失了,仅保留了区域内的OSPF路由以及一条通往区域外部缺省路由。
    2. [SwitchC] display ospf routing
    3. OSPF Process 1 with Router ID 10.3.3.3
    4. Routing Tables
    5. Routing for Network
    6. Destination Cost Type NextHop AdvRouter Area
    7. 192.168.1.0/24 1 Transit 192.168.1.2 10.3.3.3 0.0.0.1
    8. 0.0.0.0/0 2 Inter-area 192.168.1.1 10.1.1.1 0.0.0.1
    9. Total Nets: 2
    10. Intra Area: 1 Inter Area: 1 ASE: 0 NSSA: 0

配置文件
    1. SwitchA的配置文件
    2. #
    3. sysname SwitchA
    4. #
    5. vlan batch 10 20
    6. #
    7. interface Vlanif10
    8. ip address 192.168.0.1 255.255.255.0
    9. #
    10. interface Vlanif20
    11. ip address 192.168.1.1 255.255.255.0
    12. #
    13. interface GigabitEthernet0/0/1
    14. port link-type trunk
    15. port trunk allow-pass vlan 10
    16. #
    17. interface GigabitEthernet0/0/2
    18. port link-type trunk
    19. port trunk allow-pass vlan 20
    20. #
    21. ospf 1 router-id 10.1.1.1
    22. area 0.0.0.0
    23. network 192.168.0.0 0.0.0.255
    24. area 0.0.0.1
    25. network 192.168.1.0 0.0.0.255
    26. stub no-summary
    27. #
    28. return
    29. SwitchB的配置文件
    30. #
    31. sysname SwitchB
    32. #
    33. vlan batch 10
    34. #
    35. interface Vlanif10
    36. ip address 192.168.0.2 255.255.255.0
    37. #
    38. interface GigabitEthernet0/0/1
    39. port link-type trunk
    40. port trunk allow-pass vlan 10
    41. #
    42. ospf 1 router-id 10.2.2.2
    43. import-route static type 1
    44. area 0.0.0.0
    45. network 192.168.0.0 0.0.0.255
    46. #
    47. ip route-static 10.0.0.0 255.0.0.0 NULL0
    48. #
    49. return
    50. SwitchC的配置文件
    51. #
    52. sysname SwitchC
    53. #
    54. vlan batch 20
    55. #
    56. interface Vlanif20
    57. ip address 192.168.1.2 255.255.255.0
    58. #
    59. interface GigabitEthernet0/0/1
    60. port link-type trunk
    61. port trunk allow-pass vlan 20
    62. #
    63. ospf 1 router-id 10.3.3.3
    64. area 0.0.0.1
    65. network 192.168.1.0 0.0.0.255
    66. stub
    67. #
    68. return

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/257230
推荐阅读
相关标签
  

闽ICP备14008679号