Before you can read the parent note, you need to actually understand every word it throws at you. Below, each term is built from nothing: what it means in plain words → the picture it corresponds to → why the topic needs it. We go in order, so each idea rests on the one before it.
The picture: dots (hosts) joined by lines (the connections). Data is a little parcel that hops from one dot to another.
Why the topic needs it: the entire TCP/IP model exists to answer "how does a parcel get from host A to host B?" If you don't know what a host is, none of the layers have a purpose.
The picture: at the bottom, a river of 0s and 1s flowing down a wire. At the top, a human-readable sentence. Same information, two views.
Why the topic needs it: the whole model is a translation machine. The top layer speaks in messages; the bottom layer speaks in bits. Every layer in between is a step of that translation.
Why the topic needs it: each layer is defined by the protocols it speaks. Saying "the Transport layer uses TCP or UDP" only makes sense once you know a protocol is a rulebook.
The picture: a box. The payload is the gift inside; the header is the shipping label on the front; the trailer is a tamper-seal on the back.
Why the topic needs it: the parent's headline idea — encapsulation — is literally "each layer adds its own header." You can't understand encapsulation without knowing what a header is.
Why the topic needs it: this is the mechanism that makes layering work. It's why the parent says a message becomes a segment becomes a packet becomes a frame. See Encapsulation and Decapsulation.
The picture: the same nested-box image, but each layer of box has a different label written on it. Same contents, different name per layer.
Why the topic needs it: exam questions love asking "TCP sends ___?" (answer: segments, not packets). The names are the whole point of one of the parent's Common Mistakes.
These are three different kinds of address, each answering a different question. This is the single most confused trio in the topic, so slow down here.
The picture: an envelope. The street address = IP. The apartment/person name = port. The fingerprint of the specific mailbox the truck physically drops it in on this street = MAC.
Why the topic needs it: each of the three addresses lives at a specific layer — port → Transport, IP → Internet, MAC → Network Access. Knowing which address = which layer is half the exam.
The picture: your parcel doesn't teleport to the server. It's handed device-to-device, each hop a short arrow, forming a path across the map.
Why the topic needs it: routing is the whole job of the Internet layer. "IP addressing + routing" in the parent only makes sense once "hop" is a picture in your head. Details in IP Addressing and Routing.
Why the topic needs it: these two words define the difference between TCP and UDP, both Transport-layer protocols. See TCP vs UDP and Port Numbers and Sockets.
Why the topic needs it: "TCP/IP has 4 layers, OSI has 7" is the headline. Everything above was preparation to make that sentence mean something. See OSI Model — 7 Layers and HTTP and the Application Layer for the top of the stack.