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:
Identify the loop-prevention requirement at Layer 2.Map protocols to roles: STP (loop prevention), VTP (VLAN database sharing), CDP/LLDP (neighbor discovery), RIP (Layer 3 routing).Select STP as the only Layer 2 protocol that builds a loop-free logical topology.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