配置STP路径值的负载均衡
也可以通过配置配置STP路径值来实现负载均衡.
Trunk1走VLAN8-10,Trunk2走VLAN2-4
命令 | 目的 | |
Step 1 | configure terminal | 进入 Switch1配置状态 |
Step 2 | interface fastethernet 0/1 | 进入F0/1 |
Step 3 | switchport mode trunk | 配置Trunk,只能是dot1q模式 |
Step 4 | exit | 退回 |
Step 5 | 在F0/2口上重复2-4步骤 | |
Step 6 | end | 退出 |
Step 7 | show running-config | 验证配置 |
Step 8 | show vlan | 验证switch1已经学到Vlan |
Step 9 | configure terminal | 进入配置状态 |
Step 10 | interface fastethernet 0/1 | 进入F0/1 |
Step 11 | spanning-tree vlan 2 cost 30 | 设置Vlan2生成树路径值为30 |
Step 12 | spanning-tree vlan 3 cost 30 | 设置Vlan3生成树路径值为30 |
Step 13 | spanning-tree vlan 4 cost 30 | 设置Vlan4生成树路径值为30 |
Step 14 | end | 退出 |
Step 15 | 在switch1的F0/2上重复9-11步骤设置VLAN8,9,10生成树路径值为30 | |
Step 16 | exit | 退出 |
Step 17 | show running-config | 验证配置 |
Step 18 | copy running-config startup-config | 保存配置 |