首页 > 其他分享 >MSTP+VRRP典型案例(二层)

MSTP+VRRP典型案例(二层)

时间:2024-12-19 09:26:43浏览次数:6  
标签:LSW2 LSW3 LSW1 二层 region MSTP 192.168 VRRP 20

拓扑图

![[Pasted image 20241218201142.png]]

接口说明
  1. VLAN10对应的网段为192.168.10.0/24;VLAN20对应的网段为192.168.20.0/24;
    VLAN30对应的网段为192.168.30.0/24;VLAN40对应的网段为192.168.40.0/24;
    各VLAN的网关均为.254的地址,该地址为VRRP组的虚拟地址;
  2. LSW1的vlanif10和vlanif20的IP地址分别为:192.168.10.253、192.168.20.253
    LSW1的vlanif30和vlanif40的IP地址分别为:192.168.30.252、192.168.40.252
  3. LSW1的vlanif10和vlanif20的IP地址分别为:192.168.10.252、192.168.20.252
    LSW1的vlanif30和vlanif40的IP地址分别为:192.168.30.253、192.168.40.253
  4. 网络中有4个VLAN:10、20、30、40;
需求/目的
  1. 由于网络中VLAN较多,并且存在二层环路因此使用MSTP实现环路避免,同时实现负载分担。
  2. 将vlan10、20映射到MSTP实例1;将vlan30、40映射到MSTP实例2;
  3. MSTP实例1Block掉的端口为LSW3的GE0/0/4;实例2Block掉的端口为LSW2的GE0/0/5;
  4. 为了提高网络的网关层冗余能力,在SW1及SW2的vlanif10、vlanif20、vlanif30、vlanif40上部署VRRP,一共4组。而VRRP的Master及Backup需与MSTP的主、备根重叠。也就是说LSW1的vlanif10及vlanif20为各自VRRP组的Master,此外vlanif30及vlanif40为各自VRRP组的Backup;LSW2正好相反。
实验步骤
<进入系统视图>
<Huawei>sy
Enter system view, return user view with Ctrl+Z.
<关闭状态检测,在实际生产环境中不用关闭>
[Huawei]undo in en   
Info: Information center is disabled.
<重命名>
[Huawei]sysname LSW3
[LSW3]

LSW1配置

  1. 划分vlan并接入
[LSW1]vlan batch 10 20 30 40
Info: This operation may take a few seconds. Please wait for a moment...done.
[LSW1]int g0/0/3
[LSW1-GigabitEthernet0/0/3]p l t                  (port link-type trunk)
[LSW1-GigabitEthernet0/0/3]p t a v 10 20 30 40   (或者全放all)(port trunk allow-pass vlan 10 20 30 40)
<打印此接口配置信息>
[LSW1-GigabitEthernet0/0/3]d th     (display this)
#
interface GigabitEthernet0/0/3
 port link-type trunk
 port trunk allow-pass vlan 10 20 30 40
#
return
[LSW1-GigabitEthernet0/0/3]int g0/0/4
[LSW1-GigabitEthernet0/0/4]p l t
[LSW1-GigabitEthernet0/0/4]p t a v 10 20 30 40  
<打印此接口配置信息>
[LSW1-GigabitEthernet0/0/4]d th

![[Pasted image 20241218202402.png]]

  1. MSTP配置
    • 配置MSTP,将vlan10 20映射到实例1,将vlan30 40映射到实例2
    • 将LSW1的MSTP设置为实例1的主根,实例2的次根
[LSW1]stp mode mstp 
[LSW1]stp region-configuration 
[LSW1-mst-region]region-name chp	
[LSW1-mst-region]instance 1 vlan 10 20 	
[LSW1-mst-region]instance 2 vlan 30 40
[LSW1-mst-region]active region-configuration 
Info: This operation may take a few seconds. Please wait for a moment...done.
<打印此接口配置信息>
[LSW1-mst-region]d th
#
stp region-configuration
 region-name chp
 instance 1 vlan 10 20
 instance 2 vlan 30 40
 active region-configuration
#
return
####################
[LSW1]stp instance 1 root primary 
[LSW1]stp instance 2 root secondary 	
[LSW1]stp enable 

![[Pasted image 20241218202339.png]]

![[Pasted image 20241218202552.png]]

  1. 配置VRRP
    • 配置vlanif10、vlanif20、vlanif30、vlanif40
    • 配置vlanif10、vlanif20、vlanif30、vlanif40,分别加入VRRP组1,2,3,4
    • 其中LSW1为VRRP组1及2的Master,为组3及4的Backup
<进入接口>
[LSW1]interface Vlanif 10
<配置IP>
[LSW1-Vlanif10]ip address 192.168.10.253 24
<配置VRRP虚拟IP>
[LSW1-Vlanif10]vrrp vrid 1 virtual-ip 192.168.10.254
<配置vrrp vrid 1 的优先级,默认100 ,越大越优先>
[LSW1-Vlanif10]vrrp vrid 1 priority 120	
<启用抢占模式并将延迟时间设置为20 秒,发生故障,等待20秒接管>
[LSW1-Vlanif10]vrrp vrid 1 preempt-mode timer delay 20
[LSW1-Vlanif10]d th
#
interface Vlanif10
 ip address 192.168.10.253 255.255.255.0
 vrrp vrid 1 virtual-ip 192.168.10.254
 vrrp vrid 1 priority 120
 vrrp vrid 1 preempt-mode timer delay 20
#
return
##############
[LSW1-Vlanif10]int vlanif 20	
[LSW1-Vlanif20]ip address 192.168.20.253 24
[LSW1-Vlanif20]vrrp vrid 2 virtual-ip 192.168.20.254
[LSW1-Vlanif20]vrrp vrid 2 priority 120
[LSW1-Vlanif20]vrrp vrid 2 preempt-mode timer delay 20
##############
[LSW1-Vlanif20]int vlanif 30
[LSW1-Vlanif30]ip address 192.168.30.252 24
[LSW1-Vlanif30]vrrp vrid 3 virtual-ip 192.168.30.254
##############
[LSW1-Vlanif30]int vlanif 40
[LSW1-Vlanif40]ip address 192.168.40.252 24
[LSW1-Vlanif40]vrrp vrid 4 virtual-ip 192.168.40.254

LSW2配置(和LSW1差不多,就是调转)

  1. 划分VLAN
[LSW2]vlan batch 10 20 30 40
Info: This operation may take a few seconds. Please wait for a moment...done.
[LSW2]int g0/0/3
[LSW2-GigabitEthernet0/0/3]p l t 
[LSW2-GigabitEthernet0/0/3]p t a v 10 20 30 40
[LSW2-GigabitEthernet0/0/3]d th 
#
interface GigabitEthernet0/0/3
 port link-type trunk
 port trunk allow-pass vlan 10 20 30 40
#
return
[LSW2-GigabitEthernet0/0/3]int g0/0/5
[LSW2-GigabitEthernet0/0/5]p l t 
[LSW2-GigabitEthernet0/0/5]p t a v 10 20 30 40
  1. MSTP配置
    • 配置MSTP,将vlan10 20映射到实例1,将vlan30 40映射到实例2
    • 将LSW2的MSTP设置为实例2的主根,实例1的次根
[LSW2]stp mode mstp 
[LSW2]stp region-configuration 
[LSW2-mst-region]region-name chp
[LSW2-mst-region]instance 1 vlan 10 20
[LSW2-mst-region]instance 2 vlan 30 40
[LSW2-mst-region]active region-configuration 
Info: This operation may take a few seconds. Please wait for a moment...done.
[LSW2-mst-region]q
[LSW2]stp instance 1 root secondary 
[LSW2]stp instance 2 root primary 
[LSW2]stp enable 
  1. 配置VRRP
    • 配置vlanif10、vlanif20、vlanif30、vlanif40
    • 配置vlanif10、vlanif20、vlanif30、vlanif40,分别加入VRRP组1,2,3,4
    • 其中LSW2为VRRP组3及4的Master,为组1及2的Backup
[LSW2]int vlanif10	
[LSW2-Vlanif10]ip address 192.168.10.252 24
[LSW2-Vlanif10]vrrp vrid 1 virtual-ip 192.168.10.254

[LSW2-Vlanif10]int vlanif20
[LSW2-Vlanif20]ip address 192.168.20.252 24
[LSW2-Vlanif20]vrrp vrid 2 virtual-ip 192.168.20.254

[LSW2-Vlanif20]int vlanif30
[LSW2-Vlanif30]ip address 192.168.30.252 24
[LSW2-Vlanif30]vrrp vrid 3 virtual-ip 192.168.30.254
[LSW2-Vlanif30]vrrp vrid 3 priority 120


[LSW2-Vlanif30]int vlanif40	
[LSW2-Vlanif40]ip address 192.168.40.252 24
[LSW2-Vlanif40]vrrp vrid 4 virtual-ip 192.168.40.254	
[LSW2-Vlanif40]vrrp vrid 4 priority 120

LSW3配置

  1. 创建vlan并接入
[LSW3]int g0/0/4
[LSW3-GigabitEthernet0/0/4]p l t 
[LSW3-GigabitEthernet0/0/4]p t a v 10 20 30 40
[LSW3-GigabitEthernet0/0/4]d th
[LSW3-GigabitEthernet0/0/4]int g0/0/05
[LSW3-GigabitEthernet0/0/5]p l t 
[LSW3-GigabitEthernet0/0/5]p t a v 10 20 30 40
  1. 配置MSTP
    • 配置MSTP,将vlan10 20映射到实例1,将vlan30 40映射到实例2
    • 在SW3上,MSTP实例1及实例2的优先级保持默认32768
[LSW3]stp mode mstp 
[LSW3]stp region-configuration 
[LSW3-mst-region]region-name chp	
[LSW3-mst-region]instance 1 vlan 10 20
[LSW3-mst-region]instance 2 vlan 30 40
[LSW3-mst-region]active region-configuration 

[LSW3-mst-region]q
[LSW3]stp instance 1 priority 32768
[LSW3]stp instance 2 priority 32768
[LSW3]stp enable 

完成配置后,各VLAN的用户都能够ping通自己的网关;

验证

LSW1验证

在这里插入图片描述

LSW2验证
![[Pasted image 20241218205850.png]]

![[Pasted image 20241218205904.png]]

我们看到,MSTP实例1中被Block掉的端口是GE0/0/5口;MSTP实例2中被Block掉的端口是GE0/0/4,符合我们的需求。再去LSW2上看看VRRP组的状态:
![[Pasted image 20241218210122.png]]

标签:LSW2,LSW3,LSW1,二层,region,MSTP,192.168,VRRP,20
From: https://blog.csdn.net/m0_57076217/article/details/144571718

相关文章

  • 二层无线覆盖
    1.配置路由器<Huawei>sysEntersystemview,returnuserviewwithCtrl+Z.[Huawei]sys[R1]interfaceGigabitEthernet0/0/0[r1-GigabitEthernet0/0/0]ipaddress10.10.11.130[r1-GigabitEthernet0/0/0]quit[r1]iproute-static0.0.0.0010.10.11.22.交换......
  • 采集bacnet mstp 转 profinet IO项目案例
    目录1 案例说明 12 VFBOX网关工作原理 13 使用YABE软件读取BACNETMSTP设备信息 24 配置网关采集BACNETMSTP数据 45 用PROFINETIO协议转发数据 66 案例总结 81 案例说明使用Yabe软件获取bacnetmstp设备信息,如果已知bacnet设备信息,可跳过此步骤。配置VFBOX网关采集bac......
  • Kata Containers 的第二层隔离及其虚拟机管理程序支持
    KataContainers的第二层隔离及其虚拟机管理程序支持版权声明:本文为博主原创文章,遵循CC4.0BY-SA版权协议,转载请附上原文出处链接和本声明。引言KataContainers在传统容器技术之上引入了第二层隔离,通过结合硬件虚拟化接口,提供更强的安全性和隔离性。本文将详细介绍......
  • MSTP多实例配置
    一、组网说明        网络中的4台交换机运行MSTP。其中SWA做为Vlan10,20的根桥,SWB做为Vlan30,40的根桥。二、组网图三、配置步骤        SWA的配置        #配置MSTP,并创建MSTP多实例switch(config)#spanning-treeswitch(config)#spanning-t......
  • HCP-05 VRRP原理与配置
    目录VRRP技术概述单网关面临的问题VRRP概述VRRP的基本概念VRRP报文格式VRRP定时器VRRP技术原理VRRP状态机VRRP协议状态VRRP主备选举VRRP主备切换VRRP主备回切VRRP典型应用VRRP负载分担VRRP监视上行端口VRRP与BFD联动VRRP与MSTP结合应用VRRP基本配置VRRP常用配置命令VRRP基础配置实......
  • HCIP-02 MSTP原理与配置
    目录MSTP概述RSTP/STP的不足不足1:流量无法负载分担不足2:二层次优路径多生成树协议概述MSTP的基本概念MSTP网络层次:MSTRegionMSTICSTISTCISTSST总根域根和主桥小结MSTP的端口角色MSTP的工作原理CIST计算MSTI计算MSTP网络数据转发MSTP的基本配置MSTP的基础配置命令配置MST域并激活......
  • 二层交换基础综合练习
    从上到下从左到右以此为sw0-71.开启全部Trunk接口(cdp查看接口rang批量设置)sw0(config)#cdprun //全部开启cdp(都开启才能相互发现)sw0(config)#intrangf0/1-2sw0(config-if-range)#switchporttrunkencapsulationdot1qsw0(config-if-range)#switchportmodetru......
  • 二层&三层转发原理
    ARP-地址解析解析ARP是通过已知的IP地址获取相对应的MAC地址的协议。如果本地没有目的的MAC地址,则通过发送ARP广播来学习:二层头部中目的MAC是全1,二层到三层之间ARP头部中的目的MAC是全0。但对方回应的是ARP单播。二层转发同一网段(同一广播域)内的通信为二层通信。比如一台交......
  • 一文带你了解生成树协议三个版本:STP、RSTP 和 MSTP
    生成树协议(SpanningTreeProtocol,STP)及其后续改进版,如快速生成树协议(RapidSpanningTreeProtocol,RSTP)和多生成树协议(MultipleSpanningTreeProtocol,MSTP),是保证网络冗余与稳定的关键技术。这些协议能够防止环路的出现,从而避免广播风暴和通信中断。本文将详细介绍STP、R......
  • VRRP基础网络
    1、网络拓扑2、网络配置AR1:<ar>displaycurrent-configuration [V200R003C00]#sysnamear#snmp-agentlocal-engineid800007DB03000000000000snmp-agent #clocktimezoneChina-Standard-Timeminus08:00:00#portallocal-serverloadportalpage.zip#dropi......