Bridge Forwards Frames at Layer Two | Generated by AI

Home 2026.02

Question: In the OSI seven-layer reference model, a bridge operates at the data link layer, and the forwarding function it implements is:

A. Bit forwarding
B. Frame forwarding
C. Packet forwarding
D. Message forwarding

Answer:

B. Frame forwarding

Explanation:

A bridge (网桥) is a network device that operates at Layer 2 (the Data Link Layer) of the OSI model.

At the data link layer, the protocol data unit (PDU) is called a frame (帧).

Therefore, a bridge makes forwarding decisions based on the MAC addresses contained in the frame header and forwards entire frames from one segment to another.

Correct answer: B. Frame forwarding (帧转发)

The bridge reads the destination MAC address in the frame, looks it up in its MAC address table (also called the forwarding table or CAM table), and decides which port to forward the frame out of — this is classic frame forwarding.

References:


Back Donate