Difficulty: Easy
Correct Answer: bridge
Explanation:
Introduction / Context:
LAN interconnection can be done at different layers. Devices that operate on MAC addresses and forward frames between similar LANs are distinct from repeaters (physical) and routers (network layer).
Given Data / Assumptions:
Concept / Approach:
A bridge (including modern multi-port switches) builds a MAC address table by learning source addresses and forwards frames to the correct segment, reducing unnecessary traffic and isolating collisions while preserving a single broadcast domain (unless VLANs are used).
Step-by-Step Solution:
Recognize same-type LANs being interconnected (homogeneous).Match to a device that understands layer-2 addresses.Select “bridge” as the correct device class (today commonly implemented as a switch).
Verification / Alternative check:
IEEE 802.1D bridges perform transparent bridging using MAC learning and spanning tree to prevent loops.
Why Other Options Are Wrong:
Hub: Physical-layer repeater that floods signals; no MAC learning.
Common Pitfalls:
Equating modern Ethernet “switches” with routers; a typical switch is a multi-port bridge.
Final Answer:
bridge
Discussion & Comments