首页 > 代码库 > 【vtp】简单的实验
【vtp】简单的实验
实验拓扑:
实验目的:掌握VLAN及VTP的配置
实验要求:VTP域名为cisco, 密码为password
SwitchA配置成Server模式,创建VLAN 10和VLAN 20名为aa bb,并开启VTP修剪功能
SwitchB配置成客户模式,并将端口1—10加入VLAN10,11—20划分到VLAN20
SwitchC配置成透明模式
实验步骤:步骤1 因为VTP信息之在trunk接口上发送,所以先将交换机相连的接口配置成trunk接口
SwitchA(config)#int f0/0
如果交换机支持多种VTP封装的话,则需要先指定封装
SwitchA(config-if)#switchport trunk encapsulation dot1q //2950上无此命令
SwitchA(config-if)#switchport mode trunk
SwitchA(config)#int f0/1
SwitchA(config-if)#switchport trunk encapsulation dot1q
SwitchA(config-if)#switchport mode trunk
SwitchB(config)#int f0/0
SwitchB(config-if)#switchport trunk encapsulation dot1q
SwitchB(config-if)#switchport mode trunk
SwitchC(config)#int f0/0
SwitchC(config-if)#switchport trunk encapsulation dot1q
SwitchC(config-if)#switchport mode trunk
步骤2 在SwitchA上做VTP的配置并创建vlan
SwitchA(config)#vtp mode server
SwitchA(config)#vtp domain stsd
SwitchA(config)#vtp password cisco
SwitchA(config)#vtp pruning
SwitchA#vlan 10 name aa
SwitchA#vlan 20 name bb
步骤3 在SwitchB上做配置
SwitchB(config)#vtp mode client
SwitchB(config)#vtp domain stsd
SwitchB(config)#vtp password cisco
步骤4在SwitchC上做配置
SwitchC(config)#vtp mode transparent
步骤5 在SwitchB上查看vlan信息,看是否可以看到创建的vlan10 和 vlan20
可以尝试在SwitchB上面创建vlan,观察client模式的交换机是否能够创建vlan。在transpartent上面创建vlan,并查看vlan信息的保存位置。
转自:http://blog.163.com/liao_weibin/blog/static/1535330062010102974756926/
【vtp】简单的实验