赞
踩
案例配置拓扑:
案例配置需求
根据拓扑,按照下列需求完成交换机的PVST的配置:
1、 SW1使用VTP server模式,SW2使用Client模式;
2、 VTP domain为CCIE,密码为cisco
3、 在SW1上创建VLAN1和VLAN2 ;
4、 配置使得SW1作为VLAN 1 的根桥,SW2作为备份根桥;
5、 配置使得SW2作为VLAN 2 的根桥,SW1作为备份根桥;
6、 在VLAN 1 中,SW2的E0/2被block,
7、 在VLAN 2中,SW1的E0/2被block,
案例配置思路
1.配置交换机的VTP
SW1:
vtp domain ccie
vtp version 2
vtp mode server
vtp password cisco
SW2:
vtp domain ccie
vtp version 2
vtp mode client
vtp password cisco
2.创建VLAN
3.在两台交换机上设置生成树模式为PVST:
SW1(config)#spanning-tree mode pvst
SW2(config)#spanning-tree mode pvst
4.在SW1上配置根桥
spanning-tree vlan 1 root primary /设置SW1为VLAN 1的根桥/
spanning-tree vlan 2 root secondary /设置SW1为VLAN 2的备份根桥/
5.在SW2上配置根桥
spanning-tree vlan 2 root primary
spanning-tree vlan 1 root secondary
6.在SW1上修改:
SW1(config)#int ethernet 0/2
SW1(config-if)#spanning-tree vlan 1 port-priority 64
SW1(config-if)#spanning-tree vlan 2 cost 1000
7.在SW2上修改VLAN 2的端口优先级:
SW2(config)#int ethernet 0/2
SW2(config-if)#spanning-tree vlan 2 port-priority 64
SW2(config-if)#spanning-tree vlan 1 cost 1000
案例检验结果
1、 查看SW1上VLAN 1的生成树,其中SW1为根桥(根桥ID和桥ID一样):
2、 查看SW1上VLAN 2 的生成树,SW1为备份根桥,E0/2为block:
3、 查看SW2上VLAN 1 的生成树,SW2为备份根桥,E0/2为block:
6 案例总结及其它
1、 PVST为每个VLAN独立的生成一棵生成树,每个VLAN进行独立的生成树策略;
2、 spanning-tree vlan x root primary和spanning-tree vlan x root secondary将该VLAN的桥优先级分别设置为24576和28672;
3、 通过修改桥优先级,可以手动设置根桥;
4、 通过修改端口COST,可以影响根端口和指定端口的选举;
5、 通过修改端口优先级,可以影响根端口和指定端口的选举;
6、 以上实验的COST和端口优先级修改,都是为了影响根端口的选举,其中COST的修改影响本地的根端口选举,端口优先级的修改影响对端根端口选举;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。