Study CompTIA N10-009 OSI Model, TCP/IP & Encapsulation: key concepts, common traps, and exam decision cues.
The OSI and TCP/IP models matter in Network+ because they help you place symptoms, protocols, and devices in the right part of the path. CompTIA is not mainly testing whether you can chant layer numbers from memory. It is testing whether you can use the model to explain what is happening and where a problem belongs.
PDU: Protocol data unit, the data object a layer is handling such as a frame, packet, or segment.
Encapsulation: The process of wrapping data with protocol headers as it moves down the stack toward transmission.
De-encapsulation: Removing those headers as data moves back up the receiving stack.
The exam usually wants you to do three things well:
flowchart TD
A["Application data"] --> B["Transport header added"]
B --> C["IP packet created"]
C --> D["Ethernet or wireless frame created"]
D --> E["Bits sent on the medium"]
What to notice:
| Layer view | What Network+ usually wants you to associate with it |
|---|---|
| physical | signal, cable, radio, optics, bits |
| data link | MAC addressing, frames, switches, VLAN behavior |
| network | IP addressing, routing, packets |
| transport | TCP or UDP behavior, ports, segments |
| application | user-facing protocols and services |
The TCP/IP model groups some of these differently, but the exam usually uses both models as practical ways to place behavior, not as competing religions.
| Layer focus | Typical PDU term |
|---|---|
| transport | segment or datagram |
| network | packet |
| data link | frame |
| physical | bits |
CompTIA does not always need perfect textbook phrasing, but it does want you to avoid calling everything a packet.
1HTTP request
2-> carried inside TLS data
3-> carried inside a TCP segment
4-> carried inside an IP packet
5-> carried inside an Ethernet frame
What to notice:
| Clue | Strongest first layer focus |
|---|---|
| no carrier, bad optics, or cable damage | physical |
| MAC issue, VLAN tagging, CRC errors | data link |
| wrong default gateway or route path | network |
| port-based session problem or retransmission behavior | transport |
| name resolution or user-facing protocol issue | application |
CompTIA often hides the right answer inside one question:
“Which layer is actually responsible for the symptom?”
The traffic path moves downward during transmission, but troubleshooting does not always move in the same direction. A Network+ question may start with a user-facing symptom and still be caused by a lower-layer failure. That is why the model helps: it lets you ask which layer’s job is actually breaking first.
Continue with 1.2 Devices & Roles to keep the domain flow intact.