Structured Fields
Flag Bits
A structured field can spend individual bits on yes-or-no flags. This lesson reads those bits without modeling the later fragmentation behavior.
Why flags share space
Flags are single-bit yes-or-no fields, so several can fit beside a larger offset. The strip reads those bits directly before any fragmentation behavior is discussed.
Flags share two bytes
The first 3 bits are flags. The next 13 bits are the fragment offset.
DF is set
The reserved flag is clear, DF (Don't-Fragment) is set, MF (More-Fragments) is clear, and the offset is 0. Fragmentation behavior is dynamics, deferred; here we only read the bits.
Decode it again
In 0x20b9, DF is clear, MF is set, and the fragment offset is 185. MF set means more fragments follow. The offset counts 8-byte units, so 185×8 gives byte offset 1480. Fragmentation behavior is deferred dynamics.
Summary
The strip only says which flag bits are set and what offset number is present. Byte layout only; timing/throughput is not modeled here. Timing/throughput is not modeled here — only the exact byte layout.