Chapter 4 - VLANs Flashcards

1
Q

What is a VVID

A

Voice VLAN ID.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What kind of VLAN is assigned to a host PC that is daisy chained to a Cisco VoIP phone?

A

Native VLAN aka PVID (Port VLAN ID). These are unique cases in that the access layer switch port is not a trunk but the phone uses 802.1q tagging to identify which traffic is for the VoIP phone, and which is destined for the attached PC.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the purpose of assigning an unused VLAN number to the Native VLAN of a interface used as a trunk port?

A

It forces the switch to tag all frames regardless of where they are going across a trunk link. This prevents VLAN mismatches on a trunk from accidentally allowing traffic from one untagged VLAN into another untagged VLAN.

Switch(config-if)# switchport trunk native vlan 99

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Why are Native VLAN mismatches dangerous?

A

If one end is configured for native VLAN 1 and the other for native VLAN 2, a frame that is sent in VLAN 1 on one side will be received on VLAN 2 on the other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does DTP stand for

A

Dynamic Trunking Protocol - Cisco switches will attempt to negotiate trunk links with other Cisco switches when this is enabled.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you disable DTP on a switch?

A

Use the interface configuration option:
switchport nonegotiate
What this does is it specifies that DTP negotiation packets are not sent out this port. This command is valid only when the interface switch port mode is access or trunk (configured by using the switchport mode access or the switchport mode trunk interface configuration commands).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Of the DTP modes, which is more active than the other: Dynamic Desirable or Dynamic Auto?

A

Dynamic Desirable will “try harder” to bring up a trunk link. Any remote side ports in either Dynamic Desirable or Dynamic Auto will form a trunk connection.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Will a switch with DTP running form a trunk on a Dynamic Auto to Dynamic Auto link?

A

No. Dynamic Auto is the more passive DTP mode. This connection will remain an access port.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What happens if two switches are connected with manually configured trunk on one side and access on the other?

A

The switch will only pass traffic for a single VLAN that the port who is an access port is a member of.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How can you check on the DTP mode of a switch?

A

show interface ethernet 0/3 switchport

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is an end-to-end VLAN?

A

The term end-to-end VLAN refers to a single VLAN that is associated with switch ports that are widely dispersed throughout an enterprise network, on multiple switches. A Layer 2 switched campus network carries traffic for this VLAN throughout the network.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a Local VLAN design look like (Cisco Enterprise Campus Architecture)?

A

All users of a set of geographically common switches are grouped into a single VLAN, regardless of the organizational function of those users. Local VLANs are generally confined to a wiring closet. If users move from one location to another in the campus, their connection is changed to the new VLAN at the new physical location. Uses multi-layer switches to route between subnets and geographical boundaries.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do you configure a voice VLAN on a port for a Cisco VoIP phone?

A

Switch(config)# interface FastEthernet 0/1
Switch(config-if)# switchport mode access
Switch(config-if)# switchport access vlan 10
Switch(config-if)# switchport voice vlan 110

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How does an access layer switch uplink to an autonomous AP differ from that of a lightweight AP?

A

The autonomous AP needs an access port at the access layer since it handles direct communication to the WLAN clients. Lightweight AP’s use trunk links back to a Wireless LAN Controller on the network.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Can you add VLANs to a VTP client switch?

A

No. Switches in VTP client mode will not accept any “vlan” or “no vlan” commands. All VLAN changes must be made on the switch running in the VTP server role.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

True or False: VTP is a proprietary Cisco protocol.

A

True.

17
Q

True or False: erase startup-config will delete the VLAN configuration on a switch running in VTP client or VTP server mode.

A

False. The VLAN information is stored in the vlan.dat file, not NVRAM in the startup-configuration.

NOTE: Switches that are in VTP transparent mode display the VLAN and VTP configurations in the show running-config command output because this information is stored in the configuration text file. If you perform erase startup-config on a VTP transparent switch, you will delete its VLANs.

18
Q

Which versions of VTP are compatible with each other?

A

VTPv3 is not compatible with VTPv1. VTPv3 is compatible with VTPv2 as long as you are not using it to propagate private or extended VLANs.

19
Q

What is the difference between VTP mode Transparent and VTP mode Off?

A

The switch won’t update its local VLAN database in either mode. However, Transparent mode will still forward VTP updates out trunk ports (except the one it was received on), but a switch in Off mode will not.

20
Q

Can you set a VTP domain back to (as if it were shipped from the factory)?

A

Yes and no. You can’t do it with any commands (vtp domain xyz). It is however, possible to do by deleting the vlan.dat file on the switch.

21
Q

Why are switches in a VTP domain running in Client mode so dangerous?

A

Client servers in a VTP mode can overwrite the VLAN database on other switches, EVEN ones running in VTP Server mode, if their VTP revision number is higher than all the others.

22
Q

How would you reset a VTP revision number?

A

The VTP revision number is stored in NVRAM and is not reset if you erase switch configuration and reload it. Either:
1). Change the switch VTP domain to a nonexistent VTP domain and then change the domain back to the original name.

2). Change the switch VTP mode to transparent and then back to previous VTP mode.

23
Q

What is the best way to prevent VTP related mishaps if you are not planning on using it?

A

(config) # vtp password xyz123
- Set a password to something unique
(config) # vtp mode transparent
- Set mode to transparent so that the switch won’t try to update any other ones if it accidentally joins a VTP domain
(config) # vtp domain DOMAIN_NAME
- Set the VTP domain to something so that it is not just which could join to another switch with

24
Q

What features were added to VTP version 2?

A
  • Version-dependent transparent mode
    one domain is supported in the supervisor engine software, VTP version 2 forwards VTP messages in transparent mode, without checking the version.
  • Consistency check
  • Unrecognized TLV support
    Instead of dropping the unrecognized VTP message, version 2 still propagates the information and keeps a copy in NVRAM.
25
Q

What features were added to VTP version 3?

A
  • Extended and private VLAN support
  • Domain name is not automatically learned
  • Better security and database propagation
  • MST support
    Multiple Spanning Tree instances