Learn Network TCP/IP Protocol Stack

Learn Network TCP/IP Protocol Stack

[[409633]]

This article is reprinted from the WeChat public account "Xiaocai Learns Programming", written by fasionchan. Please contact Xiaocai Learns Programming public account for reprinting this article.

In the previous section, we learned about the OSI reference model and saw the important role of layered design in communication systems. So, are the current communication protocols layered according to the OSI model? What are the important protocols at each layer?

The most widely used communication protocol is the TCP/IP series of protocols, but it is not strictly designed according to the OSI reference model. In fact, TCP/IP was developed long before the OSI reference model was proposed, and has been gradually developed to this day.

The TCP/IP protocol stack is also designed in layers, but unlike OSI, it is divided into only 4 layers:

Network Access Layer

The network access layer is responsible for managing the physical medium and providing the ability to transfer data from the current node to the next node. Therefore, the function of the network access layer is equivalent to the physical layer and data link layer in OSI.

Different communication media have different access devices and use different protocols. The common ones are:

  • Ethernet, Ethernet protocol;
  • PPP , Point-to-Point Protocol;
  • DSL, Subscriber Digital Line;
  • etc

Taking the Ethernet card as an example, its communication medium is cable, the communication protocol is the Ethernet protocol, and the protocol transmission unit is the Ethernet frame.

The network card circuit directly processes electrical signals and completes the conversion between electrical signals and bits. This is equivalent to the function of the OSI physical layer, but the network card does not directly present the physical layer function to the upper layer.

In fact, the network card also implements the network addressing and error detection functions in the data link layer, providing the upper layer with the ability to send and receive Ethernet frames. The system can call the network card driver to send Ethernet frames; after the network card receives the Ethernet frame, it also submits it to the system for processing through the driver.

In summary, the network access layer uses frames as the communication unit and is responsible for sending data to another node in the same network (LAN).

  • The frame is used as the communication unit;
  • Realize LAN communication;

Network interconnection layer

The Internet layer implements Internet communication capabilities on top of the LAN communication capabilities provided by the network access layer. This layer is equivalent to the network layer in the OSI model, and also uses packets as communication units, and is responsible for path selection and packet forwarding.

The IP protocol in the TCP/IP protocol stack is the core protocol of this layer. It uses IP packets as the communication unit. Hosts that use the IP protocol for communication need to be assigned an address, which is the IP address. The source address and destination address fields in the IP packet header are used to mark the source and destination of the IP packet.

The network interconnection layer uses the LAN communication capabilities of the network access layer to transmit the IP packet to the next node. After several forwardings, the IP packet is finally delivered to the target host. We will reveal more details in the following chapters.

  • Packets are used as the communication unit;
  • Realize Internet communication (point to point);

Transport Layer

The transport layer implements end-to-end inter-process communication based on the point-to-point transmission capability of the network interconnection layer. This layer is equivalent to the transport layer in the OSI model. It also uses the segment as the communication unit and is responsible for sending data to the target process according to the port number in the segment.

The simplest transport layer protocol should be the UDP protocol, which is very simple and only introduces a port number. When a UDP segment is carried in an IP packet and sent to the target host, the system will send the data to the corresponding process according to the port in the segment.

IP is only a best-effort transmission protocol and is not completely reliable: on the one hand, IP packets may go through different routes during transmission and may be out of order when reaching the destination host; on the other hand, intermediate routes may cause packet loss due to network congestion.

In order to ensure the reliability of data transmission, the transport layer also provides the TCP protocol. In addition to the port number, the TCP protocol also implements the data sequence number, reception confirmation, and timeout retransmission mechanism, thereby providing a reliable and orderly data flow for the process.

TCP is the core protocol of the transport layer and has a wide range of applications, so it is the focus of network learning. The implementation of TCP is very complex and the details will be introduced in subsequent chapters. Now you can have a preliminary understanding of it.

  • Taking packets as the communication unit;
  • Implement inter-process communication (end-to-end);

Application Layer

The application layer defines the communication logic of specific network applications, making collaboration between application processes possible.

The transport layer provides generalized data transmission capabilities for processes, but does not make any provisions for the data itself. Therefore, to implement multiple collaborative processes of an application, a protocol is needed to reach a unified understanding of the data.

Taking Web applications as an example, the browser process, as a client, must initiate a request to the Web service process in accordance with the provisions of the HTTP protocol in order to be understood by the server; similarly, after the Web server processes the request, it must reply to the client in accordance with the provisions of the HTTP protocol.

HTTP is the common language for Web applications to communicate with each other. As network applications are extremely rich, there are many types of application protocols. The most common ones are as follows:

  • HTTP
  • HTTPS
  • FTP
  • SMTP (mail sending)
  • etc

summary

This section introduces the most popular TCP/IP protocol stack, which also adopts a layered design concept, which is slightly different from the OSI layering, but similar. The correspondence between the TCP/IP model and the OSI model, as well as the main protocols of each layer, are listed below:

We will use this diagram as a guide to study in depth from bottom to top. Stay tuned!

<<:  New breakthrough in 5G technology: The cost of millimeter wave equipment has been greatly reduced, and antennas can be directly "printed"

>>:  Microsoft discontinues SQL Server on Windows Containers Beta project

Recommend

5G-driven digital transformation solutions

[[428116]] 【51CTO.com Quick Translation】 Accordin...

Hyperscale Data Centers vs Micro Data Centers

Some say the data center of the future is very di...

Vietnam to phase out 2G and 3G services from 2022

According to foreign media, Vietnam's Ministr...

If you were asked to design the SSL/TLS protocol

Preface Speaking of network communication protoco...

10 things to know about LoRaWAN and NB-IoT

The Internet of Things has a variety of connectio...

Blockchain development faces four major "pain points"

Not long ago, the central bank and seven other mi...

What is optical networking? Full explanation

Optical networking is a technology that uses ligh...

Detailed Explanation of IPv6 MSTP

Background of MSTP RSTP is an improvement on STP,...