1、使用目的
通过本实验可以掌握
- VTP三种模式的区别。
- VTP工作原理。
- VTP的配置和调试方法
2、实验拓扑
配置VTP的实验拓扑如下图所示
3、实验拓扑
3.1、实验准备
通过命令 delete nash:van.dat和erasestartup-config把3台交换机的配置清除干净,重启交换机,最好是冷启动交换机。要注意的是重启3台交换机的时间不能相差太大,要保证任何交换机重启之前另一交换机没有启动完毕,避免重新启动的交换机从未重新启动的交换机学到旧 VTP信息。配置交换机的管理地址,关闭不必要的端口以免影响实验结果,配置交换机S1和S3之间、S3和S2之间链路的Trunk链路。
(1)配置交换机S1
S1(config)#interface gigabitEthernet 1/0/1
S1(config-if)#switchport trunk encapsulation dot1q
S1(config-if)#switchport mode trunk
S1(config-if)#switchport nonegotiate
S1(config-if)#exit
(2)配置交换机S2
S2(config)#interface gigabitEthernet 1/0/1
S2(config-if)#switchport trunk encapsulation dot1q
S2(config-if)#switchport mode trunk
S2(config-if)#switchport nonegotiate
S2(config-if)#exit
(3)配置交换机S3
S3(config)#interface range gigabitEthernet 1/0/1-2
S3(config-if-range)#switchport trunk encapsulation dot1q
S3(config-if-range)#switchport mode trunk
S3(config-if-range)#switchport nonegotiate
S3(config-if-range)#exit
(4)查看Trunk链路是否正常工作
S3#show interfaces trunk
Port Mode Encapsulation Status Native vlan
Gig1/0/1 on 802.1q trunking 1
Gig1/0/2 on 802.1q trunking 1
Port Vlans allowed on trunk
Gig1/0/1 1-1005
Gig1/0/2 1-1005
Port Vlans allowed and active in management domain
Gig1/0/1 1
Gig1/0/2 1
Port Vlans in spanning tree forwarding state and not pruned
Gig1/0/1 1
Gig1/0/2 1
3.2、检查交换机默认的 VTP 配置
S1#show vtp status
VTP Version capable : 1 to 2
VTP version running : 2
VTP Domain Name :
VTP Pruning Mode : Disabled
VTP Traps Generation : Disabled
Device ID : 0001.C773.0400
Configuration last modified by 0.0.0.0 at 0-0-00 00:00:00
Local updater ID is 0.0.0.0 (no valid interface found)
Feature VLAN :
--------------
VTP Operating Mode : Server
Maximum VLANs supported locally : 1005
Number of existing VLANs : 5
Configuration Revision : 0
MD5 digest : 0x7D 0x5A 0xA6 0x0E 0x9A 0x72 0xA0 0x3A
0xF0 0x58 0x10 0x6C 0x9C 0x0F 0xA0 0xF7
【提示】
可以通过以下2种方式将 VTP 修订号重置为零:
- 将交换机 VTP 域更改为一个不存在的 VTP 域,然后再将域名改回原名称
- 将交换机 VTP模式更改为透明模式,然后再改回原VTP模式。
3.3、配交换机S1并验证其配置
·配置 S1 为 VTP Server,配置 VTP 域名,配置 VTP 版本为 2,创建 VLAN2 并验证。
(1)配置交换机S1
S1(config)#vtp mode server
S1(config)#vtp version 2
S1(config)#vtp domain cisco
S1(config)#vlan 2
S1(config-vlan)#name jishubu
(2)验证交换机S1的VTP配置
S1#show vtp status
VTP Version capable : 1 to 2
VTP version running : 2
VTP Domain Name : cisco
VTP Pruning Mode : Disabled
VTP Traps Generation : Disabled
Device ID : 0001.C773.0400
Configuration last modified by 0.0.0.0 at 3-1-93 00:23:48
Local updater ID is 0.0.0.0 (no valid interface found)
Feature VLAN :
--------------
VTP Operating Mode : Server
Maximum VLANs supported locally : 1005
Number of existing VLANs : 6
Configuration Revision : 2
MD5 digest : 0xE4 0x83 0x00 0x10 0x25 0x06 0x83 0x5B
0xCD 0xAF 0xD7 0xD8 0xFC 0x6A 0x73 0xAE
S1#
(3)验证交换机S3学到的VTP信息和VLAN信息
S3#show vtp status
VTP Version capable : 1 to 2
VTP version running : 2
VTP Domain Name : cisco
VTP Pruning Mode : Disabled
VTP Traps Generation : Disabled
Device ID : 000C.CF3D.7400
Configuration last modified by 0.0.0.0 at 3-1-93 00:23:48
Local updater ID is 0.0.0.0 (no valid interface found)
Feature VLAN :
--------------
VTP Operating Mode : Server
Maximum VLANs supported locally : 1005
Number of existing VLANs : 6
Configuration Revision : 2
MD5 digest : 0xE4 0x83 0x00 0x10 0x25 0x06 0x83 0x5B
0xCD 0xAF 0xD7 0xD8 0xFC 0x6A 0x73 0xAE
S3#
S3#show vlan brief
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 default active Gig1/0/3, Gig1/0/4, Gig1/0/5, Gig1/0/6
Gig1/0/7, Gig1/0/8, Gig1/0/9, Gig1/0/10
Gig1/0/11, Gig1/0/12, Gig1/0/13, Gig1/0/14
Gig1/0/15, Gig1/0/16, Gig1/0/17, Gig1/0/18
Gig1/0/19, Gig1/0/20, Gig1/0/21, Gig1/0/22
Gig1/0/23, Gig1/0/24, Gig1/1/1, Gig1/1/2
Gig1/1/3, Gig1/1/4
2 jishubu active
(4)验证交换机S2学到的VTP信息和VLAN信息
S2#show vtp status
VTP Version capable : 1 to 2
VTP version running : 2
VTP Domain Name : cisco
VTP Pruning Mode : Disabled
VTP Traps Generation : Disabled
Device ID : 0005.5EE6.8500
Configuration last modified by 0.0.0.0 at 3-1-93 00:23:48
Local updater ID is 0.0.0.0 (no valid interface found)
Feature VLAN :
--------------
VTP Operating Mode : Server
Maximum VLANs supported locally : 1005
Number of existing VLANs : 6
Configuration Revision : 2
MD5 digest : 0xE4 0x83 0x00 0x10 0x25 0x06 0x83 0x5B
0xCD 0xAF 0xD7 0xD8 0xFC 0x6A 0x73 0xAE
S2#
S2#show vlan brief
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 default active Gig1/0/2, Gig1/0/3, Gig1/0/4, Gig1/0/5
Gig1/0/6, Gig1/0/7, Gig1/0/8, Gig1/0/9
Gig1/0/10, Gig1/0/11, Gig1/0/12, Gig1/0/13
Gig1/0/14, Gig1/0/15, Gig1/0/16, Gig1/0/17
Gig1/0/18, Gig1/0/19, Gig1/0/20, Gig1/0/21
Gig1/0/22, Gig1/0/23, Gig1/0/24, Gig1/1/1
Gig1/1/2, Gig1/1/3, Gig1/1/4
2 jishubu active
以上③和④)输出表明交换机S3和S2自动学到S1上VTP的域名、版本、VLAN 和配置修订号信息,同时会显示修改本机VTP信息的IP地址以及本地更新VTP的IP地址和更新端口。需要注意的是VTP同步的只是VLAN信息,管理员还否要手工将相应端口划分到相应VLAN.
【技术要点】
在以上配置中,只在S1上配置了VTP域名,而在S3和S2上并没有进行任何VTP 配置当交换机的VTP城名为空时,如果它收到的VTP通告中带有城名,该交换机将把VTP城名自动更改为VTP通告中的域名,所以没有VTP城名的交换机能从邻居自动学习到VTP城名以上实验中,在Sl上配置VTP城名并创建VLAN,S1发送VTP通告,S3和S2交换机就自动学习到VTP域名。一旦VTP域名不为空,交换机就不会学习域名了。
3.4、配置交换机S3为VTP transparent模式并调试
(1)配置交换机S3位VTP transparent模式
S3(config)#vtp mode transparent
(2)查看VTP的工作模式
S3#show vtp status
VTP Version capable : 1 to 2
VTP version running : 2
VTP Domain Name : cisco
VTP Pruning Mode : Disabled
VTP Traps Generation : Disabled
Device ID : 000C.CF3D.7400
Configuration last modified by 0.0.0.0 at 3-1-93 00:23:48
Feature VLAN :
--------------
VTP Operating Mode : Transparent
Maximum VLANs supported locally : 1005
Number of existing VLANs : 6
Configuration Revision : 0
MD5 digest : 0x45 0x84 0x22 0xAA 0x2C 0xCC 0x70 0x7A
0xAD 0x7D 0x49 0xFA 0x70 0x3E 0x31 0x9E
(3)在S3交换机上创建VLAN3,并查看S1、S2和S3上的VLAN信息。
S3(config)#vlan 3
S3(config-vlan)#name caiwubu
S3(config-vlan)#exit
S3(config)#exit
S3#show vlan brief
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 default active Gig1/0/3, Gig1/0/4, Gig1/0/5, Gig1/0/6
Gig1/0/7, Gig1/0/8, Gig1/0/9, Gig1/0/10
Gig1/0/11, Gig1/0/12, Gig1/0/13, Gig1/0/14
Gig1/0/15, Gig1/0/16, Gig1/0/17, Gig1/0/18
Gig1/0/19, Gig1/0/20, Gig1/0/21, Gig1/0/22
Gig1/0/23, Gig1/0/24, Gig1/1/1, Gig1/1/2
Gig1/1/3, Gig1/1/4
2 jishubu active
3 caiwubu active