VTP Questions
Here you will find answers to VTP Questions
Note: If you are not sure about VTP, please read my VTP tutorial and the VTP Flash tutorial by Cisco.
Question 1
Switch R1 and R2 both belong to the Company VTP domain. What’s true about the switch operation in VTP domains? (Choose two)
A. A switch can only reside in one management domain
B. A switch is listening to VTP advertisements from their own domain only
C. A switch is listening to VTP advertisements from multi domains
D. A switch can reside in one or more domains
E. VTP is no longer supported on Catalyst switches
Answer: A B
Explanation
A VTP domain (also called a VLAN management domain) is made up of one or more network devices that share the same VTP domain name and that are interconnected with trunks. A network device can be configured to be in one and only one VTP domain -> A is correct.
If the switch receives a VTP advertisement over a trunk link, it inherits the management domain name and the VTP configuration revision number. The switch ignores advertisements with a different management domain name or an earlier configuration revision number -> B is correct.
(Reference: http://www.cisco.com/en/US/docs/switches/lan/catalyst6500/ios/12.2SX/configuration/guide/vtp.html)
Note: Just for your information, if a switch has not belonged to any VTP domain yet and it receives a VTP advertisement with a VTP domain (whose password is not set), it will join that domain automatically.
Question 2
How does VTP pruning enhance network bandwidth?
A. by restricting unicast traffic to across VTP domains
B. by reducing unnecessary flooding of traffic to inactive VLANs
C. by limiting the spreading of VLAN information
D. by disabling periodic VTP updates
Answer: B
Explanation
VTP Pruning makes more efficient use of trunk bandwidth by forwarding broadcast and unknown unicast frames on a VLAN only if the switch on the receiving end of the trunk has ports in that VLAN.
The following example shows the operation of a VTP domain without and with VTP Pruning.
Without VTP Pruning:

VTP domain without VTP Pruning
When PC A sends a broadcast frame on VLAN 10, it travels across all trunk links in the VTP domain. Switches Server, Sw2, and Sw3 all receive broadcast frames from PC A. But only Sw3 has user on VLAN 10 and it is a waste of bandwidth on Sw2. Moreover, that broadcast traffic also consumes processor time on Sw2. The link between switches Server and Sw2 does not carry any VLAN 10 traffic so it can be “pruned”.

VTP domain with VTP Pruning
-> B is correct.
Question 3
VTP devices in a network track the VTP revision number. What is a VTP configuration revision number?
A. A number for identifying changes to the network switch.
B. A number for identifying changes to the network router.
C. A number for identifying changes to the network topology.
Answer: C
Question 4
VTP switches use advertisements to exchange information with each other. Which of the following advertisement types are associated with VTP? (Choose three)
A. Domain advertisements
B. Advertisement requests from clients
C. Subset advertisements
D. Summary advertisements
Answer: B C D
Explanation
All VTP packets contain these fields in the header:
* VTP protocol version: 1, 2, or 3
* VTP message types:
1) Summary advertisements (inform adjacent Catalysts of the current VTP domain name and the configuration revision number)
2) Subset advertisement (is sent following the summary advertisement and contains a list of VLAN information)
3) Advertisement requests (is needed in the case it is reset, the VTP domain name has been changed or it has received a VTP summary advertisement with a higher configuration revision than it own).
(For more information about these VTP types, please read: http://www.cisco.com/en/US/tech/tk389/tk689/technologies_tech_note09186a0080094c52.shtml)
4) VTP join messages (similar to the Advertisement request messages but with a different Message Type field value and a few more parameters, including VTP domain name, and a VLAN bit string. If the bit is set, flooded traffic for that VLAN should be received on that trunk. Each trunk port maintains a state variable per VLAN – Joined/Pruned. If the state is Joined, the trunk port is allowed to send broadcast and flooded unicast traffic on this VLAN. If the state is Pruned, the trunk port will not send the broadcast or flooded unicast traffic on this VLAN. VTP join messages are sent when the VTP Client first joins a VTP domain to inform the VTP Servers about its existence in that VTP domain).
* Management domain length
* Management domain name
Question 5
The lack of which two prevents VTP information from propagating between switches? (Choose two)
A. A root VTP server
B. A trunk port
C. VTP priority
D. VLAN 1
Answer: B D
Explanation
VTP advertisements only travel through trunk ports -> B is correct.
VLAN 1 is a special VLAN selected by design to carry specific information such as CDP (Cisco Discovery Protocol), VTP, PAgP and DTP. This is always the case and cannot be changed. Cisco recommends not to use VLAN 1 as a standard VLAN to carry network data -> D is correct.
Question 6
Which two DTP modes will permit trunking between directly connected switches? (Choose two)
A. dynamic desirable (VTP domain A) to dynamic desirable (VTP domain A)
B. dynamic desirable (VTP domain A) to dynamic desirable (VTP domain B)
C. dynamic auto (VTP domain A) to dynamic auto (VTP domain A)
D. dynamic auto (VTP domain A) to dynamic auto (VTP domain B)
E. dynamic auto (VTP domain A) to nonegotiate (VTP domain A)
F. nonegotiate (VTP domain A) to nonegotiate (VTP domain B)
Answer: A F
Explanation
Below is the switchport modes for easy reference:
| Mode | Function |
| Dynamic Auto | Creates the trunk based on the DTP request from the neighboring switch. |
| Dynamic Desirable | Communicates to the neighboring switch via DTP that the interface would like to become a trunk if the neighboring switch interface is able to become a trunk. |
| Trunk | Automatically enables trunking regardless of the state of the neighboring switch and regardless of any DTP requests sent from the neighboring switch. |
| Access | Trunking is not allowed on this port regardless of the state of the neighboring switch interface and regardless of any DTP requests sent from the neighboring switch. |
| Nonegotiate | Forces the port to permanently trunk but prevents the interface from generating DTP frames. This command can be used only when the interface switchport mode is access or trunk. You must manually configure the neighboring interface as a trunk interface to establish a trunk link. |
Note: If an interface is set to switchport mode dynamic desirable, it will actively attempt to convert the link into trunking mode. If the peer port is configured as switchport mode trunk, dynamic desirable, or dynamic auto mode, trunking is negotiated successfully -> A is correct.
B is not correct because 2 dynamic desirable mode in 2 different VTP domains cannot create a trunk link.
Dynamic auto waits to receive DTP from the neighbor so if 2 interfaces are set to this mode, none of them will receive DTP frames -> C and D are not correct.
A port in Nonegotiate mode can be set to access or trunk port mode but it will not send DTP. Dynamic auto also does not send DTP -> a trunk link cannot be created -> E is not correct.
Also, when setting ports to nonegotiate, that port will not send DTP. We can set both interfaces to trunk link -> a trunk link can be created between two different VTP domains -> F is correct.
Question 7
The Company switches are configured to use VTP. What’s true about the VLAN trunking protocol (VTP)? (Choose two)
A. VTP messages will not be forwarded over nontrunk links.
B. VTP domain names need to be identical. However, case doesn’t matter.
C. A VTP enabled device which receives multiple advertisements will ignore advertisements with higher configuration revision numbers.
D. A device in “transparent” VTP v.1 mode will not forward VTP messages.
E. VTP pruning allows switches to prune VLANs that do not have any active ports associated with them.
Answer: A D
Explanation
Answer A is obviously correct as VTP advertisements only travel through trunk ports.
VTP domain names are case-sensitive. That means the domain “certprepare” is different from “Certprepare”. There is no exception -> B is not correct.
A VTP enabled device which receives multiple advertisements will update (not ignore) advertisements with higher configuration revision numbers, provided that it has the same VTP domain name and password -> C is not correct.
Answer D is not clear. In VTP Version 1, a VTP transparent switch inspects VTP messages for the domain name and version and forwards a message only if the version and domain name match. Because VTP Version 2 supports only one domain, it forwards VTP messages in transparent mode without inspecting the version and domain name. So in this case we don’t have enough information to conclude about answer D.
Answer E is not clear too. VTP will prune VLANs on trunks connected to switches that do not have ports associated with the VLANs. I am not sure what Cisco wants to say in answer E.
But if we consider answer E to be incorrect then the best answers should be A and D.

Question 8
The Company switches have all been upgraded to use VTP version 2. What are two benefits provided in VTP Version 2 that are not available in VTP Version 1? (Choose two)
A. VTP version 2 supports Token Ring VLANs.
B. VTP version 2 allows VLAN consistency checks.
C. VTP version 2 saves VLAN configuration memory.
D. VTP version 2 reduces the amount of configuration necessary.
E. The VTP version 2 allows active redundant links when used with spanning tree.
Answer: A B
Explanation
The major difference is that VTP V2 introduces support for Token Ring VLANs. If you use Token Ring VLANs, you must enable VTP V2 -> A is correct.
In VTP version 2, VLAN consistency checks (such as VLAN names and values) are performed only when you enter new information through the command-line interface (CLI) or Simple Network Management Protocol (SNMP). Consistency checks are not performed when new information is obtained from a VTP message or when information is read from NVRAM. If the digest on a received VTP message is correct, its information is accepted without consistency checks -> B is correct.
(Reference: http://www.cisco.com/en/US/tech/tk389/tk689/technologies_tech_note09186a0080094c52.shtml)
Question 9
Switch R1 is configured to use the VLAN Trunking Protocol (VTP). What does R1 advertise in its VTP domain?
A. The VLAN ID of all known VLANs, the management domain name, and the total number of trunk links on the switch.
B. The VLAN ID of all known VLANs, a 1-bit canonical format (CF1 Indicator), and the switch configuration revision number.
C. The management domain name, the switch configuration revision number, the known VLANs, and their specific parameters.
D. A 2-byte TPID with a fixed value of 0×8100 for the management domain number, the switch configuration revision number, the known VLANs, and their specific parameters.
Answer: C
Explanation
VTP advertises its management domain name, the switch configuration revision number, the known VLANs, and their specific parameters -> C is correct.
Note: IEEE 802.1Q VLAN (not VTP) tag uses the tag protocol identifier (TPID) field to identify the protocol type. The Default TPID value in IEEE 802.1Q, is 0×8100 -> D is not correct.
Question 10
Which two statements correctly describe VTP? (Choose two.)
A. Transparent mode always has a configuration revision number of 0.
B. Transparent mode cannot modify a VLAN database.
C. Client mode cannot forward received VTP advertisements.
D. Client mode synchronizes its VLAN database from VTP advertisements.
E. Server mode can synchronize across VTP domains.
Answer: A D

Q6 ans is wrong, VTP has no effect on trunking, if you have dyn desireable both ends it will trunk
q7 ans incorrect, d wrong answer should be E, although it is badly worded.
Q6 ans correct, VTP has effect on trunking,
%DTP-5-DOMAINMISMATCH: Unable to perform trunk negotiation on port Fa0/1 because of
VTP domain mismatch
Yes i agree Q6 ok, true from dtp modes, of course you could force trunking on which is what good practice tells you to do anyway.
Q3 why is C? if I change configuration on a router the revision number change?
Do you want to pass your CCNA or CCNP exams in first attempt?
Well we have 100% latest and proven fresh dumps for you.
We gurantee your passing score and we can prove that we have the most current dumps with us
Special Offer:-We will provide you with dumps updates for 3 months.
Price :- 10$
For more details, Please email us at dumpsmania@hotmail.com
Q6— correct but it some how strange!!!
here is way I get after
Switch(config-if)#00:02:40 %DTP-5-DOMAINMISMATCH: Unable to perform trunk negotiation on port Fa0/2 because of VTP domain mismatch.
so it is because the switches r negotiating so they must agree on any thing about vtp. but when you force them like ( trunk and trunk) they can form.
Hi Guys,
Seeing the answer right in front your eyes before making selection is annoying. So i grabs all of the questions on this site and put them into VCE file to make my life easier. Be sure to check back CertPrepare site regularly for updates.
Here is the file: http://www.4shared.com/file/C5hmKPbb/CCNP_642-813_CertPrepare-by_Hu.html
Best of luck !!!
Q6 Vlan info is propigated within the same domain. whats the point to create a trunk with different domains.Can anyone explains it to me with a practical field example when and how we wanted to create trunk and shared vlan.dat between different domains.
regards
Q7 – the answer is A and E.
D is incorrect since a device in “transparent” VTP mode WILL forward VTP messages from VTP Servers in the same domain.
Totally agree with Bryan
I,m ok with that Bryan
Hi Guys, I just finished my CCNA and would like to proceed with CCNP. I was wondering in which order should I start preparing? Switching Routing and Troubleshooting? Should I be taking the exams in the same order was well? Please suggest?
thanku @HungN.. its really helpful. but i need some latest dumps too, can anyone help me out??
Bryan, totally second your opinion. Certprepare by itself wasn’t so sure about his version, but from my practice experience it’s A & E.
I do think that option D is correct. Transport mode switches only forward data in Vtp v2. And the option specifically mentioned VTP v1.
Sources
1. Jermy Switch vieo
2. http://www.cisco.com/en/US/tech/tk389/tk689/technologies_tech_note09186a0080094c52.shtml#vtp_v2
Go to examcollection.com you can dowload VCE files for just about any test.
i think Q7 is ok to me
Q.7 Answer A and E are correct.
Answer D is not correct at 100% because a transparent mode switch does not relay VTP information it receives to other switches unless its its VTP domain names and VTP version numbers match those of the other switches. Moreover answer E is totally correct because prunning could be enabled on switches so unneccessary broadcast is sent on trunks where there are no active VLANs. I hope that will make clear things on this question.
Q.7 The problem with option E is that VTP doesn’t actually prune VLANs. It only prunes the traffic from those VLANs that do not have any active ports associated with them. The VLAN would still exist in the VLAN database of the switch. The traffic to that VLAN is prevented from crossing the trunk.
How is question 3 correct? From the way I understand it, if I were to change my topology, the configuration register would not change. It would only change if I were to change something related to the switch, such as the number of VLAN’s
I agree with you Mark. I think answer A should be correct instead.
Q7 – Common guys ! From Official 642-813 … : ” In VTP version 1, a transparent mode switch does not even relay VTP information it receives to other switches unless its VTP domain names and VTP version numbers match those of the other switches. In VTP version 2, transparent switches do forward received VTP advertisements out of their trunk ports, acting as VTP relays. This occurs regardless of the VTP domain name setting.” => D is correct.
Yes @Nike, but read what the Official books says (CCNP Certification Guide SWITCH 642-813 Official Certification Guide, David Huccaby, Chapter 5, Page 95)
* Version-dependent transparent mode – In transparent mode, VTP version 1 matches the VTP version and domain name before forwarding the information to other switches using VTP. (…)
It WILL forward VTP information if the conditions are met. =====> D is INcorrect.
Hi all,
Q10 is very confusing. Answers A,D seems to be correct.
BUT what about B?
Please see this link http://www.ciscopress.com/articles/article.asp?p=102157&seqNum=3 Table 3-1 VTP modes.
There is in column “transparent mode” Catalyst switch can modify VLANs. How is it then?
If transparent mode can modify VLANs so it also means that VLAN database is modified. Isn’t it also correct?
Exactly Hans, and the answer said it CANNOT :). So yep, in can, which means answer B is wrong.
guys, Vlan database stored in NVRAM (flash), so transparent mode can modify ONLY IT’S OWN Vlan database
Q6, Q10 on test today
Q10 was in test today.