0% found this document useful (0 votes)
0 views

1.0 VLAN Trunking Protocol (VTP)

The document discusses the VLAN Trunking Protocol (VTP), which simplifies VLAN management across multiple switches in a network. It explains the different VTP modes (Server, Transparent, Client) and provides configuration commands for each mode. Additionally, it outlines the verification commands to check VTP status and VLAN configurations on the switches.

Uploaded by

jemsson66
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
0 views

1.0 VLAN Trunking Protocol (VTP)

The document discusses the VLAN Trunking Protocol (VTP), which simplifies VLAN management across multiple switches in a network. It explains the different VTP modes (Server, Transparent, Client) and provides configuration commands for each mode. Additionally, it outlines the verification commands to check VTP status and VLAN configurations on the switches.

Uploaded by

jemsson66
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Cisco Certified Network Associate

Routing and Switching


VLAN Trunking Protocol (VTP)

1.0 Conception
In our network we only have three switches. We can easily add or remove VLAN manually on all three switches. However this process could be
more tedious and difficult if we have 50 switches. In a large network, we might make a mistake in VLAN configuration. We might forget to add
VLAN on one of the switch, or we may assign wrong VLAN number. Vice versa we may forget to remove VLAN on one of the switch, while removing
VLANs.

VTP is a life saver protocol in this situation. With VTP we can add or remove VLANs on one switch and this switch will propagate VLAN information
to all other switches in network.

VTP Messages

VTP share VLANs information via VTP messages. VTP messages can only be propagate through the trunk connections. So we need to set up trunk
connection between switches. VTP messages are propagated as layer 2 multicast frames.

VTP Domain

VTP domain is a group of switches that share same VLAN information. A switch can have a single domain. VTP messages include domain name.
Switch only update VLAN information if it receives VTP message from same domain.

VTP Mode
VTP can be configured in three different modes.

 Server
 Transparent
 Client
VTP Server Mode

VTP Server can add, modify, and delete VLANs. It will propagate a VTP message containing all the changes from all of its trunk ports. If server
receives a VTP message, it will incorporate the change and forward the message from all remaining trunk ports.

VTP Transparent Mode

VTP Transparent switch can also make change in VLANs but it will not propagate these changes to other switches. If transparent switch receives a
VTP message, it will not incorporate the change and forward the message as it receives, from all remaining trunk ports.
VTP Client Mode

VTP client switch cannot change the VLAN configurations itself. It can only update its VLAN configuration through the VTP messages that it receive
from VTP server. When it receives a VTP message, it incorporates with the change and then forwards it from remaining trunk ports.

2.0 Configuration
2.1 Switch1: Configure VTP Server

SW1(Config)#vtp mode server

SW1(Config)#vtp domain salehin

SW1(Config)#vtp password 123

2.2 Switch2: Configure VTP Transparent

SW2(Config)#vtp mode transparent

SW2(Config)#vtp domain salehin

SW2(Config)#vtp password 123

2.3 Switch3: Configure VTP Client

SW3(Config)#vtp mode client

SW3(Config)#vtp domain salehin

SW3(Config)#vtp password 123


3.0 Verification
SW1#show vtp status
SW1#show vtp counters
SW1#show vtp password
SW1#show vlan brief
--------
SW2#show vlan brief
SW2#show vtp status
--------
SW2#show vlan brief
SW2#show vtp status

You might also like