网络基础STP

文章目录

  • 生成树协议(STP)
    • 1.STP概述
      • 1.交换网络环路的产生
      • 2.STP简介
    • 2.生成树算法
      • 1.生成树算法三步骤
      • 2.BPDU(桥协议数据单元)
      • 3.交换机端口的STP状态
  • MSTP(多生成树协议)

生成树协议(STP)

1.STP概述

1.交换网络环路的产生

  • 广播风暴的形成
  • 多帧复制
  • MAC地址表紊乱

2.STP简介

  • 逻辑上断开环路,防止广播风暴的产生
  • 当线路故障,阻塞接口被激活,恢复通信,其备份路线

2.生成树算法

1.生成树算法三步骤

选择根网桥
第一步:交换机优先级值最小的 -------优先级的取值范围是0~65535,缺省值(默认值)为32768
第二步:选择网桥ID最小的 --------网桥ID(BID,交换机MAC地址)是惟一的。
如果不配置优先级,那么选择交换机网络中网桥ID最小的交换机成为根网桥。
选择根端口
到根网桥最低的根路径成本
直连的网桥ID最小
端口ID最小

路径带宽(Mbps) 路径成本
10 100
100 19
1000 4
10000 2

选择指定端口
根桥上的端口全是指定端口
在每个网段上,选择1个指定端口
非根桥上的指定端口,选择顺序-----根路径成本较低-------所在的交换机的网桥ID的值较小------端口ID的值较小

2.BPDU(桥协议数据单元)

BPDU

  • Bridge Protocol Data Unit - 桥协议数据单元
  • 使用组播发送BPDU
    BPDU类型
  • 配置BPDU
  • 拓扑变更通告(TCN)BPDU
    BPDU报文字段
  • 根网桥ID、根路径成本、发送网桥ID、端口ID

3.交换机端口的STP状态

网络基础STP_第1张图片

MSTP(多生成树协议)

在网络中使用STP时,交换机在选举端口时可能会把其他vlan的端口误关,这里就要使用MSTP了。
MSTP概念:为每个vlan或多个vlan为一组构造一个生成树,实现网络的负载均衡。

网络基础STP_第2张图片
各交换机配置都是接口配置我就不写了只写了STP部分代码如下
R1

[R1]int g0/0/0
[R1-GigabitEthernet0/0/0]ip add 192.168.10.1 24 ##配置端口ip
[R1-GigabitEthernet0/0/0]un shu	
Info: Interface GigabitEthernet0/0/0 is not shutdown.
[R1-GigabitEthernet0/0/0]int g0/0/1
[R1-GigabitEthernet0/0/1]ip add 192.168.20.1 24
[R1-GigabitEthernet0/0/1]un shutdown
Info: Interface GigabitEthernet0/0/1 is not shutdown.
[R1-GigabitEthernet0/0/1]q
[R1]int LoopBack 10
[R1-LoopBack10]ip add 10.0.0.1 24 ##回环地址
[R1-LoopBack10]q

SW1

[SW1]stp mode mstp 	##将模式改成MSTP模式,此模式兼容STP/RSTP
[SW1]stp region-configuration 	##进入MSTP视图
[SW1-mst-region]region-name huawei1 ##配置MSTP域名,缺省为交换机设备主控板上管理网口的MAC地址
[SW1-mst-region]revision-level 1	##配置MSTP修订级别,缺省为1,各个设备的修订级别要一致
[SW1-mst-region]instance 1 vlan 10  ##配置实例,并将vlan10加入实例1(一个vlan只能加入一个实例,但实例里可以有许多vlan)
[SW1-mst-region]instance 2 vlan 20  
[SW1-mst-region]active region-configuration 
Info: This operation may take a few seconds. Please wait for a moment...done.
[SW1-mst-region]q	
[SW1]stp instance 1 root primary 	##配置此交换机为实例1的主根桥
[SW1]stp instance 2 root secondary ##配置此交换机为实例2的备用根桥

SW2

[SW2]stp mode mstp 	
[SW2]stp region-configuration 	
[SW2-mst-region]region-name huawei1	
[SW2-mst-region]revision-level 1
[SW2-mst-region]instance 1 vlan 10	
[SW2-mst-region]instance 2 vlan 20		
[SW2-mst-region]active region-configuration 
Info: This operation may take a few seconds. Please wait for a moment...done.
[SW2-mst-region]q	
[SW2]stp instance 1 root secondary 	
[SW2]stp instance 2 root primary 

SW3

[SW3]stp mode mstp 	
[SW3]stp region-configuration 		
[SW3-mst-region]region-name huawei1	
[SW3-mst-region]revision-level 1	
[SW3-mst-region]instance 1 vlan 10
[SW3-mst-region]instance 2 vlan 20	
[SW3-mst-region]active region-configuration ##激活MSTP域的配置(这里必须要激活,而且一旦激活无法更改)
Info: This operation may take a few seconds. Please wait for a moment...done.
[SW3-mst-region]q

实验结果
网络基础STP_第3张图片

你可能感兴趣的:(交换机,网络,交换机,网络)