LOGBOOK

HELP

Quiz Entry - updated: 2026.07.30

In what order should IPv6 extension headers appear, and why does ordering matter?

There's a recommended fixed order (Hop-by-Hop first, then routing, fragment, authentication, ESP, destination options) so each node processes only the headers meant for it, in the right sequence.

The recommended sequence is roughly:

  1. Hop-by-Hop Options (must be first — examined by every router on the path)
  2. Destination Options (for the first destination)
  3. Routing
  4. Fragment
  5. Authentication (AH)
  6. Encapsulating Security Payload (ESP)
  7. Destination Options (for the final destination)

Order matters because the Hop-by-Hop header must be read by every hop, so it has to come first; security headers (AH/ESP) need to wrap the right portion of the packet; and a receiver processes them in sequence. Following the order avoids ambiguity and lets routers stop early once they've seen what concerns them.

Tip: Hop-by-Hop = "everyone reads this"; everything else is generally only for the destination — which is why Hop-by-Hop is mandated to be first.

Go deeper:

From Quiz: INTROL / IPv6 – Das Netz der Zukunft | Updated: Jul 30, 2026