Difficulty: Easy
Correct Answer: STP
Explanation:
Introduction / Context:
The classic problem in switched Ethernet LANs is that redundant links, while good for availability, create Layer 2 loops. These loops can cause broadcast storms and MAC address table instability. The industry solution is the Spanning Tree Protocol (STP), a Layer 2 control protocol that logically blocks some paths to guarantee a single active tree.
Given Data / Assumptions:
Concept / Approach:
STP elects a root bridge, calculates the shortest path tree using path cost, and places nonessential ports into a blocking (or alternate) state. Variants include 802.1D (original), 802.1w (Rapid STP), and 802.1s (Multiple STP). Other protocols listed serve different roles (discovery, VLAN management, routing).
Step-by-Step Solution:
Verification / Alternative check:
Vendor docs and IEEE 802.1D/W/S define STP/RSTP/MSTP as the loop-avoidance mechanisms. No other listed protocol performs this function at Layer 2.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing VTP (VLAN sharing) with STP; assuming link aggregation replaces STP (bundles still need loop control across topologies).
Final Answer:
STP
Discussion & Comments