3.配置STP交换机优先级
一、背景
在某公司网络中,为提高网络稳定性,拓扑连接形成了回路。但是为了避免广播风暴影响网络使用,考虑在网络中的交换机上启用PVST,以便指定网络中的根桥,并阻塞相关端口来实现。
二、拓扑图
PS:思科交换机默认有vlan1并包含全部端口
三、配置流程
配置交换机Switch-PT0为根桥交换机,并设置优先级
配置:
1
2
3
4
5
6
7
8
9
10
11
12
13Switch>en
Switch#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#spanning-tree mode pvst
Switch(config)#spanning-tree vlan 1 priority 4096
Switch(config)#spanning-tree vlan 1 root primary
Switch(config)#end配置交换机Switch-PT1
配置:
1
2
3
4
5
6
7
8
9Switch>en
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#spanning-tree mode pvst
Switch(config)#end配置交换机Switch-PT2
配置:
1
2
3
4
5
6
7
8
9Switch>en
Switch#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)# spanning-tree mode pvst
Switch(config)#end验证测试
4.1 Switch-PT0
测试代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20Switch#show spanning-tree
VLAN0001
Spanning tree enabled protocol ieee
Root ID Priority 4097
Address 000A.F321.69D4
This bridge is the root
Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec
Bridge ID Priority 4097 (priority 4096 sys-id-ext 1)
Address 000A.F321.69D4
Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec
Aging Time 20
Interface Role Sts Cost Prio.Nbr Type
---------------- ---- --- --------- -------- --------------------------------
Fa0/1 Desg FWD 19 128.1 P2p
Fa2/1 Desg FWD 19 128.3 P2p4.2 Switch-PT1
测试代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17Switch#show spanning-tree
VLAN0001
Spanning tree enabled protocol ieee
Root ID Priority 4097
Address 000A.F321.69D4
Cost 19
Port 1(FastEthernet0/1)
Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec
Bridge ID Priority 32769 (priority 32768 sys-id-ext 1)
Address 0090.210D.1846
Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec
Aging Time 20
Interface Role Sts Cost Prio.Nbr Type
---------------- ---- --- --------- -------- --------------------------------
Fa1/1 Altn BLK 19 128.2 P2p
Fa0/1 Root FWD 19 128.1 P2p4.3 Switch-PT2
测试代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18Switch#show spanning-tree
VLAN0001
Spanning tree enabled protocol ieee
Root ID Priority 4097
Address 000A.F321.69D4
Cost 19
Port 3(FastEthernet2/1)
Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec
Bridge ID Priority 32769 (priority 32768 sys-id-ext 1)
Address 000A.417D.3AD0
Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec
Aging Time 20
Interface Role Sts Cost Prio.Nbr Type
---------------- ---- --- --------- -------- --------------------------------
Fa2/1 Root FWD 19 128.3 P2p
Fa1/1 Desg FWD 19 128.2 P2p到此,本次实验结束!!!
补充
5.1 STP指定端口和根端口的选择方法
STP(IEEE802.1D生成树协议)技术原理:
维护一个树状的网络拓扑,当交换机发现拓扑中有环时,就会逻辑的阻塞一个或更多冗余端口来实现无环拓扑,当网络拓扑发生变化时,运行STP的交换机会自动重新配置他的端口以避免环路产生或连接丢失。
STP算法分四个步骤
步骤一:选举根网桥
判定对象:在所有运行STP协议的交换机上选举出一个唯一的根网桥。
判定条件:BPDU数据帧中网桥ID值最小的交换机将成为根网桥(BPDU数据帧中网桥ID有8个字节,它是由2个字节的网桥优先级和6个字节的背板MAC组成的,其中网桥优先级的取值范围是0-65535,缺省值是32768)
—在进行网桥ID比较时,先比较网桥优先级,优先级值小的为根网桥;当优先级值相等时,再比较背板MAC地址,MAC地址小的为根网桥。
步骤二:选举跟端口
判定对象:在所有非根网桥交换机上的不同端口之间选举出一个到根网桥最近的端口作为跟端口。
判定条件:
—1.端口到根网桥路径开销最小
—2.发送方网桥ID最小
—3.发送方端口ID最小(端口ID有16位,它是由8位端口优先级和8位端口编号组成的,其中端口优先级的取值范围是0-240,缺省值是128,可以修改,但必须是16的倍数)
步骤三:选举指定端口
判定对象:在每一个物理网段的不同端口之间选举出一个指定端口。
判定条件:
—1.网桥到根网桥路径开销最小
—2.发送方网桥ID最小
—3.发送方端口ID最小
步骤四:阻塞其它端口,形成无环拓扑
5.2 优先级
详情:思科默认用的是PVST+,这种生成树的特点是优先级一共有16位,所以优先级最大为65535(2的16次方)但是思科把这十六位优先级又分成两个部分,第一个部分就是前四位,用来优先级用,第二部分就是后12位,用来识别VLAN信息(因为思科有2的12次方个VLAN,就是4096个)所以优先级只能改成4096的倍数,同时携带vlan信息。所以优先级在4096,vlan默认VLAN1的情况下,优先级数值就加1变成4097,而如果在VLAN20的时候就变成4116
- Title: 3.配置STP交换机优先级
- Author: 小浩
- Created at : 2024-04-08 22:04:22
- Updated at : 2024-06-08 13:52:13
- Link: https://blog.xh8.shop/2024/04/08/3-配置STP交换机优先级/
- License: This work is licensed under CC BY-NC-SA 4.0.