当前位置:   article > 正文

什么是MSTP?有哪些专业术语,附华为MSTP实验配置

mstp

1概述

mstp是多实例生成树,是IEEE802.1s中定义的生成树协议,通过生成多个生成树,来解决以太网环路问题。

作用

在以太网中部署MSTP协议后可实现如下功能:

  • 形成多棵无环路的树,解决广播风暴并实现冗余备份。

  • 多棵生成树在VLAN间实现负载均衡,不同VLAN的流量按照不同的路径转发。

MSTP基本概念

MST域(MST Region)

都启动了MSTP。

  • 具有相同的域名。

  • 具有相同的VLAN到生成树实例映射配置。

  • 具有相同的MSTP修订级别配置。

一个局域网可以存在多个MST域,各MST域之间在物理上直接或间接相连。用户可以通过MSTP配置命令把多台交换设备划分在同一个MST域内。

VLAN映射表:

VLAN映射表是MST域的属性,它描述了VLAN和MSTI之间的映射关系。

CST

公共生成树CST(Common Spanning Tree)是连接交换网络内所有MST域的一棵生成树。

如果把每个MST域看作是一个节点,CST就是这些节点通过STP或RSTP协议计算生成的一棵生成树。

IST

内部生成树IST(Internal Spanning Tree)是各MST域内的一棵生成树。

IST是一个特殊的MSTI,MSTI的ID为0,通常称为MSTI0。

IST是CIST在MST域中的一个片段。

SST

运行STP或RSTP的交换设备只能属于一个生成树。

MST域中只有一个交换设备,这个交换设备构成单生成树。

CIST

公共和内部生成树CIST(Common and Internal Spanning Tree)是通过STP或RSTP协议计算生成的,连接一个交换网络内所有交换设备的单生成树。

域根

域根(Regional Root)分为IST域根和MSTI域根。

一个MST域内可以生成多棵生成树,每棵生成树都称为一个MSTI。MSTI域根是每个多生成树实例的树根。

总根

总根是CIST(Common and Internal Spanning Tree)的根桥。

主桥

主桥(Master Bridge)也就是IST Master,它是域内距离总根最近的交换设备。

端口角色

根端口、指定端口、Alternate端口、Backup端口和边缘端口的作用同RSTP协议中定义。

除边缘端口外,其他端口角色都参与MSTP的计算过程。

同一端口在不同的生成树实例中可以担任不同的角色。

2实验

2.1:实验目的

实现trunk链路的负载均衡

2.2:实验环境

  • ENSP

  • 三台交换机

  • 两台PC

  • 一台路由器

2.3:实验拓扑结构图

拓补图

2.4:实验配置

  1. SW1
  2. <Huawei>undo terminal monitor
  3. <Huawei>sys
  4. [Huawei]sysn SW1
  5. [SW1]user-interface console 0
  6. [SW1-ui-console0]idle-timeout 0 0
  7. [SW1]v b 10 20
  8. [SW1]int e0/0/1
  9. [SW1-Ethernet0/0/1]p h p v 10
  10. [SW1-Ethernet0/0/1]p h u v a
  11. [SW1-Ethernet0/0/1]int g0/0/1
  12. [SW1-GigabitEthernet0/0/1]p l t
  13. [SW1-GigabitEthernet0/0/1]p t a v a
  14. [SW1-GigabitEthernet0/0/1]int g0/0/2
  15. [SW1-GigabitEthernet0/0/2]p h p v 10
  16. [SW1-GigabitEthernet0/0/2]p h u v 10 20
  17. [SW1-GigabitEthernet0/0/2]q
  18. [SW1]stp mode mstp
  19. [SW1]stp region-configuration
  20. [SW1-mst-region]region-name huawei
  21. [SW1-mst-region]revision-level 1
  22. [SW1-mst-region]instance 1 vlan 10
  23. [SW1-mst-region]instance 2 vlan 20
  24. [SW1-mst-region]active region-configuration
  25. [SW1-mst-region]q
  26. [SW1]stp instance 1 root primary
  27. [SW1]stp instance 2 root secondary
  1. SW2
  2. <Huawei>undo terminal monitor
  3. <Huawei>sys
  4. [Huawei]sysn SW2
  5. [SW2]user-interface console 0
  6. [SW2-ui-console0]id
  7. [SW2-ui-console0]idle-timeout 0 0
  8. [SW2-Ethernet0/0/1]q
  9. [SW2]v b 10 20
  10. [SW2]int e0/0/1
  11. [SW2-Ethernet0/0/1]p h p v 20
  12. [SW2-Ethernet0/0/1]p h u v 10 20
  13. [SW2-Ethernet0/0/1]int g0/0/1
  14. [SW2-GigabitEthernet0/0/1]p l t
  15. [SW2-GigabitEthernet0/0/1]p t a v a
  16. [SW2-GigabitEthernet0/0/1]int g0/0/2
  17. [SW2-GigabitEthernet0/0/2]p h p v 20
  18. [SW2-GigabitEthernet0/0/2]p h u v 10 20
  19. [SW2-GigabitEthernet0/0/2]q
  20. [SW2]stp mode mstp
  21. [SW2]stp region-configuration
  22. [SW2-mst-region]region-name huawei
  23. [SW2-mst-region]revision-level 1
  24. [SW2-mst-region]instance 1 vlan 10
  25. [SW2-mst-region]instance 2 vlan 20
  26. [SW2-mst-region]active region-configuration
  27. [SW2-mst-region]q
  28. [SW2]stp instance 1 root secondary
  29. [SW2]stp instance 2 root primary
  1. SW3
  2. <Huawei>undo terminal monitor
  3. <Huawei>sys
  4. [Huawei]sysn SW3
  5. [SW3]user-interface console 0
  6. [SW3-ui-console0]idle-timeout 0 0
  7. [SW3]v b 10 20
  8. [SW3]int e0/0/1
  9. [SW3-Ethernet0/0/1]p h p v 10
  10. [SW3-Ethernet0/0/1]p h u v 10 20
  11. [SW3-Ethernet0/0/1]int e0/0/3
  12. [SW3-Ethernet0/0/3]p h p v 10
  13. [SW3-Ethernet0/0/3]p h u v 10 20
  14. [SW3-Ethernet0/0/3]int e0/0/2
  15. [SW3-Ethernet0/0/2]p h p v 20
  16. [SW3-Ethernet0/0/2]p h u v 10 20
  17. [SW3-Ethernet0/0/2]int e0/0/4
  18. [SW3-Ethernet0/0/4]p h p v 20
  19. [SW3-Ethernet0/0/4]p h u v 10 20
  20. [SW3-Ethernet0/0/4]q
  21. [SW3]stp mode mstp
  22. [SW3]stp region-configuration
  23. [SW3-mst-region]region-name huawei
  24. [SW3-mst-region]revision-level 1
  25. [SW3-mst-region]instance 1 vlan 10
  26. [SW3-mst-region]instance 2 vlan 20
  27. [SW3-mst-region]active region-configuration
  1. R1
  2. <Huawei>undo terminal mo
  3. <Huawei>sys
  4. [Huawei]sysn R1
  5. [R1]user-interface console 0
  6. [R1-ui-console0]idle-timeout 0 0
  7. [R1-ui-console0]int g0/0/0
  8. [R1-GigabitEthernet0/0/0]ip add 192.168.10.1 24
  9. [R1-GigabitEthernet0/0/0]int g0/0/1
  10. [R1-GigabitEthernet0/0/1]ip add 192.168.20.1 24
  11. [R1-GigabitEthernet0/0/1]int loo 0
  12. [R1-LoopBack0]ip add 1.1.1.1 32


 

2.5:实验总结

  1. <Huawei>undo terminal monitor 关闭提醒
  2. <Huawei>sys
  3. [SW]user-interface console 0
  4. [SW-ui-console0]idle-timeout 0 0 设置永不超时
  5. [SW]stp mode mstp stp模式设置为mstp
  6. [SW]stp region-configuration 进入mstp区域设置
  7. [SW-mst-region]region-name huawei 区域名称
  8. [SW-mst-region]revision-level 1 版本级别为1
  9. [SW-mst-region]instance 1 vlan 10 定义示例1为vlan10
  10. [SW-mst-region]instance 2 vlan 20
  11. [SW-mst-region]active region-configuration 对mstp配置保存
  12. [SW-mst-region]q
  13. [SW]stp instance 1 root primary 定义本交换机为实例1的根
  14. [SW]stp instance 2 root secondary 定义本交换机为实例2的备选根
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/428072
推荐阅读
相关标签
  

闽ICP备14008679号