Ethernet Switching & VLANs Flashcards
What is a collision domain?
A portion of the network where collisions can occur if two devices transmit simultaneously.
How do switches reduce collisions in a network?
By creating micro-segments for each connected device, providing dedicated communication paths.
What is the primary function of a MAC address table in a switch?
To store MAC addresses and their corresponding switch ports for efficient frame forwarding.
What happens when a switch receives a frame with an unknown destination MAC address?
The switch floods the frame out of all ports except the one it was received on.
What is a broadcast domain?
A network segment where a broadcast frame sent by any device is received by all other devices in the segment.
How do switches handle broadcast frames?
Switches forward broadcast frames out of all ports within the same VLAN.
What are the two main methods of frame forwarding on Cisco switches?
Store-and-forward and cut-through switching.
What is store-and-forward switching?
A method where the switch receives the entire frame, checks for errors, and then forwards it.
What is cut-through switching?
A method where the switch begins forwarding the frame as soon as it reads the destination MAC address.
What is fragment-free switching?
A variation of cut-through switching where the switch stores the first 64 bytes of the frame before forwarding it to reduce error propagation.
What is a VLAN?
A Virtual Local Area Network, which logically segments a network into separate broadcast domains.
What are the benefits of VLANs?
Improved security, reduced costs, better performance, and smaller broadcast domains.
What is intra-VLAN communication?
Communication between devices within the same VLAN.
What is inter-VLAN communication?
Communication between devices in different VLANs, typically facilitated by a Layer 3 device like a router.
What are the two VLAN ranges on Cisco switches?
Normal range VLANs (1-1005) and extended range VLANs (1006-4095).
What is a VLAN access port?
A switch port assigned to a single VLAN, carrying untagged traffic.
What is a VLAN trunk port?
A port configured to carry traffic for multiple VLANs using VLAN tags to identify the VLANs.
What are the two main VLAN tagging protocols?
Inter-Switch Link (ISL) and IEEE 802.1Q.
What is the native VLAN?
A VLAN that carries untagged traffic on a trunk port.
What is Dynamic Trunking Protocol (DTP)?
A Cisco proprietary protocol that negotiates trunking on a link between two switches.
What are the DTP modes available on Cisco switches?
Dynamic auto, dynamic desirable, trunk, and nonegotiate.
What is the purpose of the management VLAN?
To provide a separate VLAN for network management traffic, typically assigned an IP address for remote access.
What is a voice VLAN?
A special VLAN configured to prioritize voice traffic, ensuring better quality of service for VoIP applications.
What is a static VLAN?
A VLAN where ports are manually assigned to a specific VLAN.
What is a dynamic VLAN?
A VLAN where membership is determined by a VLAN Membership Policy Server (VMPS) based on the device’s MAC address.
What is the function of a VLAN Membership Policy Server (VMPS)?
To dynamically assign ports to VLANs based on the MAC addresses of connected devices.
What is the default VLAN on a Cisco switch?
VLAN 1, which is used for control traffic and management by default.
What is the purpose of VLAN trunking?
To allow a single physical link to carry traffic for multiple VLANs.
What is the difference between a data VLAN and a default VLAN?
A data VLAN is used for regular user traffic, while the default VLAN is VLAN 1, used for control traffic and cannot be deleted.
What are the steps to configure a trunk port on a Cisco switch?
Enter interface configuration mode, set the port to trunk mode, optionally set the native VLAN, and specify allowed VLANs.
What happens if a trunk port receives an untagged frame?
The frame is assigned to the native VLAN of the trunk port.
What is the purpose of the IEEE 802.1Q standard?
To define a method for tagging Ethernet frames with VLAN information for trunking.
What are the key features of the IEEE 802.1Q VLAN tag?
A four-byte tag added to the Ethernet frame, including a 12-bit VLAN ID.
What is the purpose of VLAN pruning?
To restrict the traffic of certain VLANs from being sent over a trunk link to optimize bandwidth usage.
What is the significance of the native VLAN on a trunk link?
It handles untagged traffic and must match on both ends of the trunk link to avoid traffic issues.
What are the key differences between ISL and IEEE 802.1Q?
ISL is Cisco proprietary and encapsulates frames, while IEEE 802.1Q is an open standard and inserts a tag within the original Ethernet frame.