LOGBOOK

HELP

Quiz Entry - updated: 2026.07.30

What is fault tolerance, and how does a packet-switched network provide it?

Fault tolerance limits a failure's impact by keeping multiple paths available; packet switching delivers this by splitting traffic into packets that can each take a different route.

Fault tolerance limits the impact of a failure by limiting the number of affected devices. This requires multiple paths, because if there's only one route between two points, any break on that route cuts the connection. Packet switching is what makes those multiple paths usable, and it does so step by step:

Flowchart of packet switching providing fault tolerance: a message is split into packets that take different paths, reroute when a link fails, and are reassembled at the destination

* Packets each take their own path and reroute around a broken link, then are reassembled at the destination. *

  1. Traffic is split into packets — a message is broken into small, independently addressed pieces.
  2. Each packet can take a different path — the network forwards each one along whatever route is currently best, so they aren't tied to a single line.
  3. If one path fails, packets simply use alternate routes — there's no fixed circuit to lose, so a broken link reroutes traffic instead of dropping the connection.
  4. Packets are reassembled at the destination — the receiver puts the pieces back in order, so the split is invisible to the user.

Benefits beyond fault tolerance: efficiency (resources shared among many users) and scalability (easy to add connections).

Contrast — circuit-switched networks (like traditional phone) establish a dedicated circuit; if the circuit fails, the connection is lost.

Go deeper:

  • doc Packet switching (Wikipedia) — directly explains packets taking different paths, routing around node failures, and reassembly by sequence number at the destination.
  • doc Fault tolerance (Wikipedia) — the underlying concept: a system masking faults to keep operating, via redundancy.

From Quiz: NETW1 / Networking Today | Updated: Jul 30, 2026