第二章-STP协议

clip_image002

题目要求:

如图:其中A与B是核心交换机,C是接入层交换机!

1:在A、B、C上添加vlan2

2:配置A在vlan1 的优先级是4096

3:配置B在vlan2的优先级是 8192

4:配置以太网通道,交换机之间连接的以太网通道的接口是trunk。

5:在C上配置上行速链路

配置文档:

基本思路:

交换机:

1:命名

2:创建VTP域

3:添加vlan

4:配置相应的端口为trunk

5:配置相应的以太网通道,并将以太网通道的接口设置为trunk

6:配置vlan 的优先级

7:将相应的端口配置上行速链路

查看命令:

查看vlan 的stp信息:

show spanning-tree brief

swA:

en

vlan da

vtp domain xiaoj //创建vtp域

vtp server //配置vtp运行模式为server模式

vlan 2 //添加vlan

exit

conf t

host swA

int range f0/1 - 4

switchport mode trunk //配置trunk端口

int range f0/1 - 2

channel-group 1 mode on //配置以太网通道

int range f0/3 - 4

channel-group 2 mode on

exit

int port-channel 1

switchport mode trunk //将绑定的端口设置成trunk

no sh

int port-channel 2

switchport mode trunk

no sh

spanning-tree vlan 1 priority 4096 //配置vlan 的stp协议优先级

end

swB:

en

vlan da

vtp domain xiaoj //加入vtp域

vtp client //配置vtp运行模式为client模式

exit

conf t

host swB

int range f0/1 - 4 //配置trunk端口

switchport mode trunk

int range f0/1 - 2 //配置以太网通道

channel-group 2 mode on

int range f0/3 - 4

channel-group 3 mode on

exit

int port-channel 3

switchport mode trunk //将绑定的端口设置成trunk

no sh

int port-channel 2

switchport mode trunk

no sh

spanning-tree vlan 2 priority 8192 //配置vlan 的stp协议优先级

end

swC:

en

vlan da

vtp domain xiaoj //加入vtp域

vtp client //配置vtp运行模式为client模式

exit

conf t

host swC

int range f0/1 - 4 //配置trunk端口

switchport mode trunk

int range f0/1 - 2 //配置以太网通道

channel-group 1 mode on

int range f0/3 - 4

channel-group 3 mode on

exit

int port-channel 1 //将绑定的端口设置成trunk

switchport mode trunk

no sh

int port-channel 3

switchport mode trunk

no sh

exit

spanning-tree uplinkfast //配置上行速链路

end

实验截图:

clip_image004clip_image006clip_image008clip_image010clip_image012

clip_image014

你可能感兴趣的:(职场,协议,休闲,STP)