华为交换机:MSTP的基础配置

news/2025/1/12 3:57:34/

在这里插入图片描述

现状分析

某公司的总部包含4个部门,为了增加网络的可靠性,需要所在的交换机上配置MSTP,确保网络不会出现环路问题,同时实现负载均衡。

网络设计

  • 搭建网络拓扑,配置VLAN,Trunk,链路聚合。
  • 在4台交换机上配置MSTP,在交换机SW1创建两个实例,将vlan10,vlan20划分到实例1中,将vlan30,vlan40划分到实列2中。
  • 通过配置MSTP,使实实例1和2的MSTI具有不同的根桥。SW1是实例1的根桥(优先级为4096),是实例2的次根桥(优先级为8192);SW2是实例2的根桥(优先级为4096),是实例1的次根桥(优先级为8192)。- 对以上配置逐项进行测试,确保局域网中没有环路。

项目实施

MSTP的配置

SW1-SW4 配置STP模式为MSTP,配置MSTP域(SW1~SW4执行相同的命令)

[sw1]vlan batch 10 20 30 40   //创建VLAN
[sw1]stp mode mstp		//STP的模式改为MSTP
[sw1]stp region-configuration   //进入MST域视图
[sw1-mst-region]region-name pokes01   //MSTP域的名称pokes01
[sw1-mst-region]revision-level 1   //域的修订级别,默认MST域的修订级别为0
[sw1-mst-region]instance 1 vlan 10 20   //SMST实列和vlan映射关系
[sw1-mst-region]instance 2 vlan 30 40
[sw1-mst-region]active region-configuration   //激活MSTP域配置

纯净版便于复制

vlan batch 10 20 30 40
stp mode mstp
stp region-configuration
region-name pokes01
revision-level 1
instance 1 vlan 10 20
instance 1 vlan 30 40
active region-configuration

链路聚合

[sw1]int Eth-Trunk 1
[sw1-Eth-Trunk1]trunkport GigabitEthernet 0/0/1 to 0/0/2
[sw1-Eth-Trunk1]port link-type trunk
[sw1-Eth-Trunk1]port trunk allow-pass vlan 10 20 30 40[sw2]int Eth-Trunk 1
[sw2-Eth-Trunk1]trunkport GigabitEthernet 0/0/1 to 0/0/2
[sw2-Eth-Trunk1]port link-type trunk
[sw2-Eth-Trunk1]port trunk allow-pass vlan 10 20 30 40

接入层和核心层的trunk配置

[sw1-GigabitEthernet0/0/3]dis th
interface GigabitEthernet0/0/3port link-type trunkport trunk allow-pass vlan 10 20[sw1-GigabitEthernet0/0/4]dis th
interface GigabitEthernet0/0/4port link-type trunkport trunk allow-pass vlan 30 40[sw2-GigabitEthernet0/0/3]dis th
#
interface GigabitEthernet0/0/3port link-type trunkport trunk allow-pass vlan 30 40[sw1-GigabitEthernet0/0/3]dis th
#
interface GigabitEthernet0/0/4port link-type trunkport trunk allow-pass vlan 10 20[sw3-GigabitEthernet0/0/1]dis th
#
interface GigabitEthernet0/0/1port link-type trunkport trunk allow-pass vlan 10 20[sw3-GigabitEthernet0/0/2]dis th
#
interface GigabitEthernet0/0/2port link-type trunkport trunk allow-pass vlan 10 20[sw4-GigabitEthernet0/0/1]dis th
#
interface GigabitEthernet0/0/1port link-type trunkport trunk allow-pass vlan 30 40[sw4-GigabitEthernet0/0/2]dis th
#
interface GigabitEthernet0/0/2port link-type trunkport trunk allow-pass vlan 30 40

接入层的vlan配置

sw3

interface GigabitEthernet0/0/12port link-type accessport default vlan 10
#
interface GigabitEthernet0/0/13port link-type accessport default vlan 20

sw4

interface GigabitEthernet0/0/14port link-type accessport default vlan 30
#
interface GigabitEthernet0/0/15port link-type accessport default vlan 40

至此已经基本配置完毕了,接下来我们需要调试SMTP的优先级

调试SMTP的优先级

[SW1]stp instance 0 priority 4096
[sw1]stp instance 1 priority 4096
[sw1]stp instance 2 priority 8192[sw2]stp instance 0 priority 8192
[sw2]stp instance 1 priority 8192
[sw2]stp instance 2 priority 4096

查看信息

[sw1]dis stp region-configuration Oper configurationFormat selector    :0     //格式选择器Region name        :pokes01    //配置名称Revision level     :1	//修订级别Instance   VLANs Mapped		//实列和VLAN映射表0       1 to 9, 11 to 19, 21 to 29, 31 to 39, 41 to 40941       10, 202       30, 40[sw1]dis stp topology-change CIST topology change information     //CIST拓扑变化信息Number of topology changes             :42	//从MSTP初始化开始,发送拓扑变化的总计次数Time since last topology change        :0 days 0h:0m:48s	//距离最近一次变化时间Topology change initiator(notified)    :Eth-Trunk1	//收到报文而触发的端口Topology change last received from     :4c1f-cce1-3e13	//拓扑变化报文来源的桥MAC地址Number of generated topologychange traps :   21	//产生的告警次数Number of suppressed topologychange traps:   2	//抑制的告警次数MSTI 1 topology change informationNumber of topology changes             :25Time since last topology change        :0 days 0h:0m:48sTopology change initiator(notified)    :Eth-Trunk1Topology change last received from     :4c1f-cce1-3e13Number of generated topologychange traps :   21Number of suppressed topologychange traps:   2MSTI 2 topology change informationNumber of topology changes             :2Time since last topology change        :0 days 0h:0m:16sTopology change initiator(detected)    :GigabitEthernet0/0/4Number of generated topologychange traps :   21Number of suppressed topologychange traps:   2

http://www.ppmy.cn/news/1107851.html

相关文章

SpringMVC之JSR303和拦截器

认识JSR303 JSR303是一项Java标准规范,也叫做Bean Validation规范,提供了一种JavaBean数据验证的规范方式。在SpringMVC中,可以通过引入JSR303相关的依赖,来实现数据的校验。 在使用JSR303进行校验时,需要在需要校验的…

华为HCIA学习(一)

文章目录 一.根据考试题总结知识点(一题一点)二.上午学习三.下午学习四.今天只做了70题,需要的可以找我 一.根据考试题总结知识点(一题一点) 二.上午学习 ① VRP系统是VRP是华为公司从低端到高端的全系列路由器、交换…

阿里云acp云计算认证考试科目有哪些?

阿里云ACP云计算认证考试科目包括以下内容: 阿里云云计算基础知识:包括云计算的定义、特点、服务模式、部署模式、虚拟化技术等相关知识。阿里云产品:包括阿里云ECS、RDS、SLB、OSS、DNS等核心产品的架构、使用方法、优化技巧等相关知识。云…

如何构建一个简单的前端框架

先让我来解释一下什么是前端框架。所谓的前端框架&#xff0c;就是一种能够让我们避免去写常规的HTML和JavaScript代码 <p id"cool-para"></p> <script>const coolPara Test;const el document.getElementById(cool-para);el.innerText coolPa…

更灵活的 serverless framework 配置文件

更灵活的 serverless framework 配置文件 前言 再经过前置教程的部署之后&#xff0c;不知道你有没有注意这样一个问题&#xff0c;就是我们部署的函数名&#xff0c;以及 API网关 的 endpoint&#xff0c;它们的名称和路径都带一个 dev? 这个就是 stage 导致的了&#xff…

【LeetCode题目详解】第九章 动态规划part16 583. 两个字符串的删除操作 ● 72. 编辑距离 ● 编辑距离总结篇 (day56补)

本文章代码以c为例&#xff01; 本文章转自代码随想录 一、力扣第583题&#xff1a;两个字符串的删除操作 题目&#xff1a; 给定两个单词 word1 和 word2 &#xff0c;返回使得 word1 和 word2 相同所需的最小步数。 每步 可以删除任意一个字符串中的一个字符。 示例 1…

vite + react + typescript + uni-app + node 开发一个生态系统

简介 使用 vite react typescript uni-app node 来开发一个简易的生态系统案例&#xff0c;包含 APP&#xff0c;H5&#xff0c;微信小程序&#xff0c;控制台&#xff0c;服务端 开发 admin 技术栈&#xff1a;vite react typescript初始化控制台项目选择自定义预设…

5.后端·新建子模块与开发(自动模式)

文章目录 学习资料自动生成模式创建后端三层 学习资料 https://www.bilibili.com/video/BV13g411Y7GS?p11&spm_id_frompageDriver&vd_sourceed09a620bf87401694f763818a31c91e 自动生成模式创建后端三层 首先&#xff0c;运行起来若依的前后端整个项目&#xff0c;…