The OSI Model Explained: 7 Layers of Networking
SkillVeris Team
Cloud & Security Team

The OSI model divides network communication into seven layers, each responsible for a distinct part of getting data from one device to another.
In this guide, you'll learn:
- Data moves down through all seven layers on the sending device and back up through all seven on the receiving device.
- The Physical and Data Link layers handle raw bit transmission and local addressing via MAC addresses.
- The Network layer, home of IP addressing and routing, is where data finds its path across different networks.
- The Transport layer, home of TCP and UDP, decides whether delivery needs to be reliable or fast.
1What Is the OSI Model?
The OSI (Open Systems Interconnection) model is a conceptual framework that divides network communication into seven distinct layers, each handling a specific responsibility in getting data from one device to another across a network.
It's not a protocol itself; it's a reference model that helps engineers reason about, troubleshoot, and design networking systems by isolating concerns into clean layers.
2Why Networking Uses a Layered Model
Splitting networking into layers means each one can change independently without breaking the others; a new type of cable doesn't require rewriting how web browsers work, because they sit at completely different layers.
This separation is also what makes troubleshooting tractable: a networking engineer can ask 'is this a cabling problem, a routing problem, or an application problem?' and immediately know roughly where to look.
3Layer 1 (Physical) and Layer 2 (Data Link)
The Physical layer is concerned with the actual transmission of raw bits over a medium, whether that's electrical signals on a copper cable, light pulses in fiber optics, or radio waves in Wi-Fi.
The Data Link layer takes those raw bits and organizes them into frames, handling addressing between devices on the same local network using MAC addresses, and detecting (though not always correcting) transmission errors.
4Layer 3: The Network Layer
The Network layer is responsible for logical addressing and routing, deciding how data finds its way from a source device to a destination device that might be on a completely different network. IP addresses live here.
Routers operate primarily at this layer, examining the destination IP address of each packet and forwarding it toward the next hop on the path to its destination.
5Layer 4: The Transport Layer
The Transport layer decides how data gets delivered end-to-end, and specifically whether that delivery needs to be reliable or just fast. This is where TCP and UDP live.
TCP guarantees delivery and correct ordering by acknowledging received data and retransmitting anything lost, which suits things like file transfers and web pages. UDP skips that overhead for lower latency, which suits live video or gaming where a dropped packet matters less than a delay.
💡
6Layer 5 (Session) and Layer 6 (Presentation)
The Session layer manages the setup, maintenance, and teardown of a conversation between two devices, keeping track of which packets belong to which ongoing exchange.
The Presentation layer translates data between the format an application uses and the format suitable for network transmission, handling tasks like encryption and character encoding.
7Layer 7: The Application Layer
The Application layer is the one users and most developers interact with directly; it's where protocols like HTTP, HTTPS, DNS, and email protocols operate, defining the actual format and meaning of the data being exchanged.
When you load a web page, your browser is speaking HTTP at this layer, which then gets wrapped and passed down through every layer below it before it ever touches a wire or radio signal.
8OSI vs. the TCP/IP Model
In practice, the internet runs on the simpler four-layer TCP/IP model, not the full seven-layer OSI model, but OSI remains the standard teaching and troubleshooting reference because its finer-grained layers map cleanly onto real network behavior.
SkillVeris's Study Notes on computer networks cover both models side by side, along with the addressing and routing concepts that build directly on the Network and Transport layers described here.
Related Reading
Get The Print Version
Download a PDF of this article for offline reading.
About the Publisher
SkillVeris Team
Cloud & Security Team
Our cloud and security experts break down complex infrastructure topics into practical, beginner-friendly guides.
View all postsRelated Posts
Never miss an update
Get the latest tutorials and guides delivered to your inbox.
No spam. Unsubscribe anytime.