Thursday, November 3, 2016

Layer 2 Forwarding Types

Layer-2 Forwarding Methods


Switches support three methods of forwarding frames. Each method copies
all or part of the frame into memory, providing different levels of latency
and reliability. Latency is delay - less latency results in quicker forwarding.

The Store-and-Forward method copies the entire frame into memory, and
performs a Cycle Redundancy Check (CRC) to completely ensure the
integrity of the frame. However, this level of error-checking introduces the
highest latency of any of the switching methods.

The Cut-Through (Real Time) method copies only enough of a frame’s
header to determine its destination address. This is generally the first 6 bytes
following the preamble. This method allows frames to be transferred at wire
speed, and has the least latency of any of the three methods. No error
checking is attempted when using the cut-through method.

The Fragment-Free (Modified Cut-Through) method copies only the first
64 bytes of a frame for error-checking purposes. Most collisions or
corruption occur in the first 64 bytes of a frame. Fragment-Free represents a
compromise between reliability (store-and-forward) and speed (cut-through).

Related Posts:

  • CSMA/CD and Half-Duplex Communication CSMA/CD and Half-Duplex Communication Ethernet was originally developed to support a shared media environment.This allowed two or more hosts to us… Read More
  • The Ethernet Frame The Ethernet Frame An Ethernet frame contains the following fields: The preamble is 56 bits of alternating 1s and 0s that synchronizescom… Read More
  • Network Topologies A topology defines both the physical and logical structure of a network.Topologies come in a variety of configurations, including:• Bus  : Bus T… Read More
  • Ethernet Star Topology Ethernet Star Topology In a star topology, each host has an individual point-to-point connection to acentralized hub or switch: A hub provides … Read More
  • Ethernet Bus Network Topology Ethernet Bus TopologyIn a bus topology, all hosts share a single physical segment (the bus or thebackbone) to communicate: A frame sent… Read More

0 comments:

Post a Comment