LOGBOOK

HELP

Quiz Entry - updated: 2026.07.14

What are the two main frame forwarding methods used by Cisco switches?

Store-and-forward receives the whole frame and checks the CRC before forwarding (catches errors, higher latency); cut-through forwards as soon as the destination MAC is read (lowest latency, no error check).

Diagram comparing store-and-forward, which buffers the whole frame and checks the CRC before forwarding or dropping, against cut-through, which forwards immediately after reading the destination MAC with no CRC check

* Store-and-forward buffers the entire frame and validates the CRC before forwarding; cut-through forwards right after the destination MAC with no error check. *

Method Description Error Checking
Store-and-Forward Receives the entire frame, computes CRC, then forwards if valid Yes - checks CRC before forwarding
Cut-Through Begins forwarding before the entire frame is received No - no error checking

Store-and-Forward Process:

  1. Receive entire frame into buffer
  2. Compute CRC and compare to FCS field
  3. If CRC is valid → look up destination MAC → forward
  4. If CRC is invalid → discard frame

Cut-Through Process:

  1. Read destination MAC address (first 6 bytes after preamble)
  2. Begin forwarding immediately
  3. No CRC validation performed

Go deeper:

From Quiz: NETW1 / Ethernet Switching | Updated: Jul 14, 2026