Explanation & Hint:
The switching method that drops frames that fail the FCS (Frame Check Sequence) check is store-and-forward switching.
In store-and-forward switching, the switch accepts the entire frame into its buffer, checks the FCS for errors, and only forwards the frame if no errors are detected. If the FCS check fails, indicating that there are errors in the frame, the switch drops the frame. This method ensures that corrupt frames are not propagated through the network.
The other methods listed have different characteristics:
- Ingress port buffering refers to the practice of using buffers on the switch’s ports to hold incoming frames before processing, which can help manage congestion but isn’t directly related to FCS checking.
- Cut-through switching begins forwarding the frame as soon as the destination MAC address is read, without waiting for the entire frame to come in, and thus it does not typically check the FCS before forwarding. Some advanced cut-through switches may have mechanisms to check FCS after they have started forwarding the frame and stop forwarding if an error is detected.
- Borderless switching is a marketing term used by some vendors to describe switches designed for modern networking needs, providing integrated security, mobility, and application optimization across a network without borders. It is not specific to a method of error checking or frame forwarding.
|