Skip to main content

LAN Switching Modes

LAN switch types decide how a frame is handled when it’s received on a switch port. Latency– the time it takes for a frame to be sent out an exit port once the switch receives the frame– depends on the chosen switching mode.
There are three switching modes:
Cut-through (FastForward) When in this mode, the switch only waits for the destination hardware address to be received before it looks up the destination address in the MAC filter table. Cisco sometimes calls this the FastForward method.
FragmentFree (modified cut-through) This is the default mode for the Catalyst 1900 switch, and it’s sometimes referred to as modified cut-through. In FragmentFree mode, the switch checks the first 64 bytes of a frame before forwarding it for fragmentation, thus guarding against forwarding runts, which are caused by collisions.
Store-and-forward In this mode, the complete data frame is received on the switch’s buffer, a CRC is run, and, if the CRC passes, the switch looks up the destination address in the MAC filter table.
Figure as below delimits the different points where the switching mode takes place in the frame.switching-mode-within-frame
This below is more details of each modes

Comments

Popular posts from this blog

Wildcards in a hosts file

I want to setup my local development machine so that any requests for *.local are redirected to localhost . The idea is that as I develop multiple sites, I can just add vhosts to Apache called site1.local , site2.local etc, and have them all resolve to localhost , while Apache serves a different site accordingly.