Module 3 Flashcards
What is a VLAN?
VLANs are logical connections with other similar devices.
VLANs provide segmentation, organization, and isolation of broadcast traffic.
What are the benefits of using VLANs?
- Smaller broadcast domains
- Improved security
- Improved IT efficiency
- Reduced cost
- Better performance
- Simpler management
VLANs help in managing network traffic and resources effectively.
What is the default VLAN in Cisco switches?
VLAN 1 is the default VLAN, the default Native VLAN, and the default Management VLAN.
VLAN 1 cannot be deleted or renamed.
What is a Data VLAN?
Dedicated to user-generated traffic (e.g., email and web traffic).
VLAN 1 is the default data VLAN because all interfaces are assigned to this VLAN.
What is a Native VLAN?
Used for trunk links only; all frames are tagged on an 802.1Q trunk link except for those on the native VLAN.
By default, VLAN 1 is the native VLAN.
What is a Management VLAN?
Used for SSH/Telnet VTY traffic and should not be carried with end user traffic.
Typically, it is the VLAN that is the SVI for the Layer 2 switch.
What is a Voice VLAN?
A separate VLAN required for voice traffic, ensuring assured bandwidth and high QoS priority.
It must avoid congestion and have a delay of less than 150 ms.
Define a trunk in networking.
A trunk is a point-to-point link between two network devices that allows more than one VLAN.
It extends the VLAN across the entire network.
What happens in a network without VLANs?
All devices connected to the switches will receive all unicast, multicast, and broadcast traffic.
This can lead to network congestion and inefficiency.
What is the purpose of the IEEE 802.1Q header?
The 802.1Q header is used for VLAN tagging, allowing identification of VLANs and controlling traffic.
It includes a 12-bit VLAN ID that can support up to 4096 VLANs.
What is the command to create a VLAN in Cisco IOS?
Switch(config)# vlan vlan-id
Replace ‘vlan-id’ with the desired VLAN number.
What command is used to assign a port to a VLAN?
Switch(config-if)# switchport access vlan vlan-id
This command assigns the specified VLAN to the access port.
How do you verify VLAN information?
Use the command: show vlan [brief | id vlan-id | name vlan-name | summary]
This command provides details about VLAN configurations.
What is Dynamic Trunking Protocol (DTP)?
DTP is a proprietary Cisco protocol that negotiates trunk links between switches.
It is on by default on Catalyst 2960 and 2950 switches.
What is the command to set a port to trunk mode?
Switch(config-if)# switchport mode trunk
This command configures the port to carry traffic for all VLANs.
True or False: The native VLAN can be configured differently on each end of a trunk link.
True
Each trunk can have different native VLANs configured.
What command is used to delete a VLAN?
no vlan vlan-id
Ensure to reassign all member ports to a different VLAN before deletion.
Fill in the blank: A VLAN is used to create _______ in a network.
segmentation
This helps in isolating broadcast traffic and improving security.