Ethernet Switching Modes Explained | Generated by AI

Home 2026.02

Question: What are the main switching modes of Ethernet switches, primarily including direct switching and which of the following?

A. Indirect switching
B. Detection control switching
C. Fragment switching
D. Store-and-forward switching

Answer:

The correct answer is D. Store-and-forward switching

Explanation:

Ethernet switches mainly use the following data switching (forwarding) methods:

  1. Cut-through switching (直接交换 / 直通交换)
    • The switch starts forwarding the frame as soon as it reads the destination MAC address (usually after receiving the first 6–14 bytes).
    • Fastest forwarding speed, lowest latency.
    • Disadvantage: May forward error frames (no full CRC check).
  2. Store-and-forward switching (存储转发交换)
    • The switch receives the entire frame, performs a full CRC check, discards bad frames, then forwards valid frames.
    • Highest reliability, can filter error frames.
    • Disadvantage: Higher latency (must wait for the whole frame).
  3. Fragment-free switching (改进直接交换 / 无碎片交换)
    • A compromise method: The switch waits to receive the first 64 bytes (to avoid collision fragments), then starts forwarding.
    • Balances speed and error filtering (filters most collision fragments but not all errors).

Correct classification in the question:

The two main and most commonly mentioned switching modes of Ethernet switches are:

Therefore, the answer should be D. Store-and-forward switching.

Why your answer C is incorrect:

Summary of standard Ethernet switch switching modes (most textbooks & certification exams):

The question asks for the mode that pairs with “直接交换”, which is 存储转发交换D.

References:


Back Donate