VTP配置

VTP域议是Cisco的专用协议,大多数的Catalyst交换机都支持该协议。VTP可以减少VLAN相关的管理任务
先来了解一下VTP的根念:
VTP域:也称为VLAN管理域,由一个以上共享VTP域名的相互连接的交换机组成。也就是说VTP域是一组VTP域名相同并通过中继链路相互连接的交换机。
VTP通告:在交换机之间用来传递VLAN信息的数据包称为VTP通告。
 
VTP有三种运行模式:
服务器模式(Server)
客户机模式(Client)
透明模式(Transparent)
 
VTP域的要求:
域内的每台交换机都必须使用相同的VTP域名。
Catalyst交换机必须是相邻的。
在所有的Catalyst交换机之间,必须启用了中继。
 
简单的做一下 VTP 的配置 , 有三台交换机 A,B,C. 配置各交换机 , 其中 A 配置为服务器模式 , 在交换机上配置 VLAN, 交换机 B 为客户端模式 ,C 为透明模式 .
 
R1 F0/0 <----> R2 F0/0
R2 F0/1 <----> R3 F0/0
A 交换机:
R1>en
R1#vlan database
R1(vlan)#vtp domain gg
R1(vlan)#vtp password 123456
R1(vlan)#vtp server
R1(vlan)#exit
R1#config t
R1(config)#interface f0/0
R1(config-if)#switchport mode trunk
R1(config-if)#exit
B 交换机:
R2>en
R2#vlan database
R2(vlan)#vtp domain gg
R2(vlan)#vtp password 123456
R2(vlan)#vtp client
R2(vlan)#exit
R2#config t
R2(config)#interface f0/0
R2(config-if)#switchport mode
R2(config-if)#switchport mode trunk
R2(config-if)#interface f0/1
R2(config-if)#switchport mode trunk
R2(config-if)#exit
R2(config)#
C 交换机:
R3>en
R3#vlan database
R3(vlan)#vtp domain gg
R3(vlan)#vtp password 123456
R3(vlan)#vtp transparent
R3(vlan)#exit
R3#config t
R3(config)#interface f0/0
R3(config-if)#switchport mode trunk
R3(config-if)#exit
 
A 创建、修改、或删除 Vlan 时, B 会学习到 A 的通告。 C 不参与 VTP

你可能感兴趣的:(职场,休闲,交换,VTP)