Module 2: Network Models
To understand how networks function, we use reference models that break down communication into layers. The two most important models are OSI and TCP/IP.2.1 The OSI Model
The Open Systems Interconnection (OSI) model has 7 layers.- Physical Layer: Bits, cables, signals.
- Data Link Layer: Frames, MAC addresses, switching.
- Network Layer: Packets, IP addresses, routing.
- Transport Layer: Segments, TCP/UDP, reliability.
- Session Layer: Session management.
- Presentation Layer: Data formatting, encryption.
- Application Layer: User applications (HTTP, SMTP).
2.2 The TCP/IP Model
The TCP/IP model is the practical implementation used in the Internet today. It condenses the OSI layers into 4 (or 5) layers.- Network Interface (Physical + Data Link)
- Internet (Network)
- Transport (Transport)
- Application (Session + Presentation + Application)
2.3 Encapsulation
Data is wrapped with headers (and trailers) as it moves down the layers.- Application: Data
- Transport: Segment (Data + TCP Header)
- Internet: Packet (Segment + IP Header)
- Link: Frame (Packet + Frame Header + Trailer)
Next Module
Module 3: Physical & Data Link
Explore the bottom layers of the stack.