A. Network Protocols
Network protocols are standard rules that govern how data is being transmitted between devices on a network. It defines the message formats, ordering of the message exchanges, and the expected response.
Network protocols are like the language & grammar of the internet to ensure that different devices and systems can understand each other.
A.1. TCP
Ensures reliable order delivery of data between applications.
- Breaking data into packets
- Acknowledging received packets
- Retransmitting lost packets
A.2. IP
Responsible for addressing and routing packets across the internet.
Every devices on the internet has their own IP address which acts like a postal address for the data packets.
A.3. HTTP
Defines how messages are formatted and transmitted between web browsers and servers.
When you type a URL in your browser, you are essentially sending an HTTP request to a web server.
B. The Internet Protocols Stack (TCP/IP)
TCP/IP stack is a conceptual framework that standardize the protocols used for communication over the internet. This stack typically consists of 4 layers.
B.1. Application Layer
This is a layer that is the closest to the end user and interacts directly with software applications.
Protocols included in this layer:
- HTTP for web browsing
- SMPT for email
- FTP for file transfers
B.2. Transport Layer
Ensures reliable data transfers between applications.
Protocols included in this layer:
- TCP for reliable data transfer
- UDP for faster but less reliable data transfer
B.3. Network Layer (IP)
Handles the addressing and routing of data packets across different networks.
Protocols included in this layer:
- IPv4
- IPv6
Both protocols define how data should be packetized, addressed, transmitted, routed, and received.
B.4. Link Layer
Manages the physical connection between devices on the same network segment. This layer deals with the hardware aspects of network communication including Network Interface Cards (NIC) and device drivers.
B.5. Summary of the Internet Protocols Stack
These 4 layers work together to enable communication across network.
- When you send data, it starts from the Application Layer and moves down through each layer.
- Each layer adds its own information to the data (a.k.a. Encapsulation).
- When the data reaches its destination, it moves up through the layer with each layer is stripping off its information (a.k.a. Decapsulation).
References
- YouTube: How the Internet Works in 9 Minutes by ByteByteGo