Difficulty: Easy
Correct Answer: 3, 2, 1, 7
Explanation:
Introduction / Context:
The OSI reference model provides a layered way to understand networking functions. Correctly mapping common devices to their primary layers helps in troubleshooting and design. While devices can process information at multiple layers, each has a primary role associated with a specific OSI layer.
Given Data / Assumptions:
Concept / Approach:
Routers make forwarding decisions using Layer 3 (Network) information such as IP addresses. LAN switches forward based on Layer 2 (Data Link) MAC addresses and maintain MAC tables per VLAN. Hubs simply repeat bits at Layer 1 (Physical), creating a single shared collision domain. Applications like word processors operate at Layer 7 (Application), using network services provided by lower layers.
Step-by-Step Solution:
Verification / Alternative check:
Use CLI outputs: a switch show mac address-table confirms L2 functions; a router show ip route highlights L3. A hub lacks such intelligence and merely regenerates signals.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
3, 2, 1, 7
Discussion & Comments