TCP IP Model Overview - buaamer81/IT130-Networking-Wiki GitHub Wiki
TCP/IP Model Overview
π Overview
The TCP/IP Model (also known as the Internet Protocol Suite) is a 4-layer framework used to describe how data moves across networks, especially the internet.
It is the practical model used in real-world networking β while the OSI Model is more theoretical.
Think of it as:
βThe working model of the Internet.β
π§± The 4 Layers of TCP/IP Model (Top to Bottom)
TCP/IP Layer | Corresponding OSI Layers | Function |
---|---|---|
Application Layer (TCP/IP) | OSI Layers 5, 6, 7 | Provides services & applications |
Transport Layer (TCP/IP) | OSI Layer 4 | Reliable or unreliable data delivery |
Internet Layer (TCP/IP) | OSI Layer 3 | Logical addressing and routing |
Network Interface Layer (TCP/IP) | OSI Layers 1 & 2 | Physical transmission of data |
π Key Differences: TCP/IP vs OSI
TCP/IP Model | OSI Model |
---|---|
4 Layers | 7 Layers |
Practical, used in real networking | Conceptual, used for learning |
Developed by DARPA | Developed by ISO |
Internet-based | Vendor-neutral |
π¦ Data Units at Each TCP/IP Layer
TCP/IP Layer | Data Unit |
---|---|
Application | Data |
Transport | Segments / Datagrams |
Internet | Packets |
Network Interface | Frames / Bits |
π Protocol Examples per Layer
Layer | Protocol Examples |
---|---|
Application | HTTP, HTTPS, FTP, DNS, SMTP |
Transport | TCP, UDP |
Internet | IP, ICMP, ARP |
Network Interface | Ethernet, Wi-Fi, MAC Addressing |
π§ Real-Life Scenario
You browse Google:
- HTTP operates at Application Layer
- TCP ensures reliable delivery at Transport Layer
- IP provides addressing at Internet Layer
- Ethernet or Wi-Fi at Network Interface Layer moves the bits physically
π Visual Aids
π§ͺ Labs and Practice
π Related Pages
Return to: Chapter 2