什么是vtp?及相关实验

 
        VTP(VLAN Trunking Protocol):是VLAN中继协议,也被称为虚拟局域网干道协议。,cisco私有协议。
   VTP有三种工作模式:VTP Server、VTP Client 和 VTP Transparent。 一般,一个VTP域内的整个网络只设一个VTP Server。VTP Server维护该VTP域中所有VLAN 信息列表,VTP Server可以建立、删除或修改VLAN。VTP Client虽然也维护所有VLAN信息列表,但其VLAN的配置信息是从VTP Server学到的,VTP Client不能建立、删除或修改VLAN。VTP Transparent相当于是一上独立的交换机,它不参与VTP工作,不从VTP Server学习VLAN的配置信息,而只拥有本设备上自己维护的VLAN信息。VTP Transparent可以建立、删除和修改本机上的 VLAN信息。 
    当交换机是在VTP Server或透明的模式,能在交换机配置VLAN。
     注意:
  若给VTP配置密码,那么本域内的所有交换机的VTP密码必须保持一致。
  创建VTP域命令 思科IOS系统
  switch(config)#vtp domain DOMAIN_NAME
  配置交换机的VTP模式
  三种模式server client transparent(透明模式)
  switch(config)# vtp mode server | client | transparent
  配置VTP口令
  switch (config) # vtp password PASSWORD
  配置VTP修剪
  switch (config) # vtp pruning
  配置VTP版本
  switch (config) # vtp version 2(默认是版本1)
  查看VTP配置信息
  switch# show vtp status
  有关思科OS系统,如下配置
  switch>〔enable〕set vtp mode server 其他配置参考此模式
  在三层路由器加了一块二层档板时,命令环境改变。
  比如原来需要在全局配置模式下输入vtp命令,而此时需要在vlan database模式下输入了。
   
     以下为配置VTP相关实验
 
实验拓扑:
什么是vtp?及相关实验_第1张图片
 
 只为说明问题,故实验拓扑相对简单。
详细配置:
 
SW1:
 
Router>en
Router#conf t
Router(config)#no ip do loo
Router(config)#ena pass cisco
Router(config)#line 0
Router(config-line)#exec-t 0 0
Router(config-line)#logg s
Router(config-line)#exi
Router(config)#ho SW1
SW1(config)#end
SW1#vlan da
SW1(vlan)#vlan 2 name test2
VLAN 2 added:
    Name: test2
SW1(vlan)#vlan 3 name test3
VLAN 3 added:
    Name: test3
SW1(vlan)#exi
SW1#show vlan-s
VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active    Fa0/0, Fa0/1, Fa0/2, Fa0/3
                                                Fa0/4, Fa0/5, Fa0/6, Fa0/7
                                                Fa0/8, Fa0/9, Fa0/10, Fa0/11
                                                Fa0/12, Fa0/13, Fa0/14, Fa0/15
2    test2                            active
3    test3                            active
1002 fddi-default                     active
1003 token-ring-default               active
1004 fddinet-default                  active
1005 trnet-default                    active
VLAN Type  SAID       MTU   Parent RingNo BridgeNo Stp  BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1    enet  100001     1500  -      -      -        -    -        1002   1003
2    enet  100002     1500  -      -      -        -    -        0      0
3    enet  100003     1500  -      -      -        -    -        0      0
1002 fddi  101002     1500  -      -      -        -    -        1      1003
1003 tr    101003     1500  1005   0      -        -    srb      1      1002
1004 fdnet 101004     1500  -      -      1        ibm  -        0      0
1005 trnet 101005     1500  -      -      1        ibm  -        0      0
SW1#vlan da
SW1(vlan)#vtp domain test
SW1(vlan)#vtp password benet
SW1(vlan)#vtp server
SW1(vlan)#vtp v2-mode
SW1(vlan)#vtp pruning
SW1(vlan)#exi
SW1#show vtp st
VTP Version                     : 2
Configuration Revision          : 2
Maximum VLANs supported locally : 256
Number of existing VLANs        : 7
VTP Operating Mode              : Server
VTP Domain Name                 : test
VTP Pruning Mode                : Enabled
VTP V2 Mode                     : Enabled
VTP Traps Generation            : Disabled
MD5 digest                      : 0x88 0xA6 0xCB 0x52 0x3D 0xAC 0x73 0x21
Configuration last modified by 0.0.0.0 at 3-1-02 00:24:49
Local updater ID is 0.0.0.0 (no valid interface found)
SW1#conf t
SW1(config-if)#sw mo t
SW1(config-if)#no shu
SW1(config-if)#exi
 
 
 
SW2:
 
Router>en
Router#conf t
Router(config)#no ip do loo
Router(config)#ena pass cisco
Router(config)#line 0
Router(config-line)#exec-t 0 0
Router(config-line)#logg s
Router(config-line)#exi
Router(config)#ho SW2
SW2(config)#int r f0/0 - 1
SW2(config-if-range)#sw m t
SW2(config-if-range)#no shu
SW2(config-if-range)#end
SW2#vlan da
SW2(vlan)#vtp domain test
SW2(vlan)#vtp pas benet
SW2(vlan)#vtp cl
SW2(vlan)#vtp v2
SW2(vlan)#vtp pr
SW2(vlan)#exi
SW2#show vtp st
VTP Version                     : 2
Configuration Revision          : 2
Maximum VLANs supported locally : 256
Number of existing VLANs        : 7
VTP Operating Mode              : Client
VTP Domain Name                 : test
VTP Pruning Mode                : Enabled
VTP V2 Mode                     : Enabled
VTP Traps Generation            : Disabled
MD5 digest                      : 0x88 0xA6 0xCB 0x52 0x3D 0xAC 0x73 0x21
Configuration last modified by 0.0.0.0 at 3-1-02 00:24:49
SW2#show vlan-s
VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active    Fa0/2, Fa0/3, Fa0/4, Fa0/5
                                                Fa0/6, Fa0/7, Fa0/8, Fa0/9
                                                Fa0/10, Fa0/11, Fa0/12, Fa0/13
                                                Fa0/14, Fa0/15
2    test2                            active
3    test3                            active
1002 fddi-default                     active
1003 trcrf-default                    active
1004 fddinet-default                  active
1005 trbrf-default                    active
VLAN Type  SAID       MTU   Parent RingNo BridgeNo Stp  BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1    enet  100001     1500  -      -      -        -    -        1002   1003
2    enet  100002     1500  -      -      -        -    -        0      0
3    enet  100003     1500  -      -      -        -    -        0      0
1002 fddi  101002     1500  -      -      -        -    -        1      1003
1003 trcrf 101003     4472  1005   3276   -        -    srb      1      1002
1004 fdnet 101004     1500  -      -      1        ibm  -        0      0
1005 trbrf 101005     4472  -      -      15       ibm  -        0      0
VLAN Type  SAID       MTU   Parent RingNo BridgeNo Stp  BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
VLAN AREHops STEHops Backup CRF
---- ------- ------- ----------
1003 7       7       off
 
SW3:
 
Router>en
Router#conf t
Router(config)#no ip do loo
Router(config)#ena pass cisco
Router(config)#line 0
Router(config-line)#exec-t 0 0
Router(config-line)#logg s
Router(config-line)#exi
Router(config)#ho SW3
SW3(config)#int f0/1
SW3(config-if)#sw mo t
SW3(config-if)#no shu
SW3(config-if)#end
SW3#vlan da
SW3(vlan)#vtp dom test
SW3(vlan)#vtp pas benet
SW3(vlan)#vtp tr
SW3(vlan)#vtp v2-mo
SW3(vlan)#vtp pr
SW3(vlan)#exi
SW3#show vtp st
VTP Version                     : 2
Configuration Revision          : 0
Maximum VLANs supported locally : 256
Number of existing VLANs        : 5
VTP Operating Mode              : Transparent
VTP Domain Name                 : test
VTP Pruning Mode                : Enabled
VTP V2 Mode                     : Enabled
VTP Traps Generation            : Disabled
MD5 digest                      : 0xA0 0xC8 0x5C 0xC4 0x8B 0xDE 0x8D 0x7E
Configuration last modified by 0.0.0.0 at 3-1-02 00:42:26
SW3#show vlan-s
VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active    Fa0/0, Fa0/2, Fa0/3, Fa0/4
                                                Fa0/5, Fa0/6, Fa0/7, Fa0/8
                                                Fa0/9, Fa0/10, Fa0/11, Fa0/12
                                                Fa0/13, Fa0/14, Fa0/15
1002 fddi-default                     active
1003 trcrf-default                    active
1004 fddinet-default                  active
1005 trbrf-default                    active
VLAN Type  SAID       MTU   Parent RingNo BridgeNo Stp  BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1    enet  100001     1500  -      -      -        -    -        1002   1003
1002 fddi  101002     1500  -      -      -        -    -        1      1003
1003 trcrf 101003     4472  1005   3276   -        -    srb      1      1002
1004 fdnet 101004     1500  -      -      1        ibm  -        0      0
1005 trbrf 101005     4472  -      -      15       ibm  -        0      0
VLAN AREHops STEHops Backup CRF
---- ------- ------- ----------
1003 7       7       off
   Transparent模式下,它不参与VTP工作,不从VTP Server学习VLAN的配置信息,而只拥有本设备上自己维护的VLAN信息。VTP Transparent可以建立、删除和修改本机上的 VLAN信息。在此不做描述。
 

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