Home > Common Problem > body text

What are the four-layer structure of the Internet?

青灯夜游
Release: 2023-02-23 17:25:16
Original
9289 people have browsed it

The four-layer structure of the Internet is: 1. Data link layer (network interface layer), which implements the network driver of the network card interface to handle the transmission of data on physical media. 2. Network layer, which implements routing and forwarding of data packets. 3. Transport layer, which provides end-to-end communication for applications on two hosts. 4. The application layer is responsible for processing the logic of the application.

What are the four-layer structure of the Internet?

The operating environment of this tutorial: Windows 7 system, Dell G3 computer.

TCP/IP is the most basic protocol of the Internet. TCP/IP uses a four-layer structure to complete the transmission task. Its four-layer structure is the network interface layer, network layer, transport layer and application layer. Each layer completes itself by calling the network provided by the next layer. Compared with OSI The standard seven-layer structure lacks the presentation layer, session layer and physical layer.

What are the four-layer structure of the Internet?

Let’s talk about the functions and common protocols of each layer.

1. Data link layer (network interface layer)

Function: Implements a network driver for the network card interface to process data on physical media (such as Ethernet , Token Ring, etc.).

Corresponding equipment: network cables, network bridges, hubs, switches

Commonly used protocols:

(1) ARP (Address Resolution Protocol): It realizes the conversion of IP address to physical address ( Usually it is the MAC address (the popular understanding is the conversion of the network card address).

(2) RARP (Reverse Address Resolution Protocol): As the name suggests, it is the opposite of ARP. It realizes the conversion from physical address to IP address.

Then someone will ask what is their use? ? ?

ARP purpose: The network layer uses the IP address to find a machine, while the data link layer uses the physical address to find a machine. Therefore, the network layer must first convert the IP address of the target machine into a physical address. In order to use the services provided by the data link layer.

RARP purpose: The RARP protocol is only used by some diskless workstations on the network. Due to the lack of storage devices, the diskless workstation cannot record its own IP address. However, through RARP, you can see the physical address to the IP address. Address mapping.

2. Network layer

Function: implement routing and forwarding of data packets.

Corresponding device: Router

Commonly used protocols:

(1) IP protocol (Internet Protocol) determines how to send the data packet to the destination based on the destination IP address. target host. If the data packet cannot be sent directly to the target host, then the IP protocol finds a suitable next-hop router for it and hands the data packet to the router for forwarding. After many times, the data packet will reach the target host or be discarded due to failure to send. .

(2) ICMP protocol is another important protocol at the network layer. It is an important supplement to the IP protocol and is mainly used to detect network connections.

8-bit type: ICMP messages are divided into two categories: one type is error messages, such as destination unreachable (type value 3) and redirection (type value 5); the other type It is a query message, used to query network information.

Some ICMP messages also use an 8-bit code field to subdivide different conditions. For example, a code value of 0 indicates network redirection, and a code value of 1 indicates host redirection.

16-bit checksum: Perform a cyclic redundancy check (CRC) on the entire message (including header and content parts).

Note: The ICMP protocol is not a network layer protocol in the strict sense, because it uses the services provided by the IP protocol at the same layer. Generally speaking, the upper layer protocol uses the services provided by the lower layer protocol.

3. Transport layer

Function: Provide end-to-end communication for applications on two hosts. Different from the hop-by-hop communication method used by the network layer, the transport layer only cares about the origin and destination of the communication and does not care about the transfer process of the data packet.

Main protocols:

(1) TCP protocol (Transmission Control Protocol): Provides reliable, connection-oriented and streaming services for the application layer.

(2) UDP protocol (User Datagram Protocol): Provides unreliable, connectionless and datagram services for the application layer. (The detailed explanation and difference between TCP and UDP protocols will be discussed in detail in the next article)

(3) SCTP protocol (Stream Control Transmission Protocol) It is designed for transmitting telephone signals on the Internet and will not be discussed here. Elaborate.

4. Application layer

Function: Responsible for processing the logic of the application, such as file transfer, name query and network management.

Note: The data link layer, network layer, and transport layer copy and process network communication details, so these parts must be stable and efficient, so they are all implemented in the kernel space (as shown in Figure 2 above), while the application layer is in the user It is implemented in space because it is responsible for a lot of logic. If it is implemented in the kernel, the kernel will become very large. There are also a few server programs that are implemented in the kernel, so that the code does not have to switch back and forth between user space and kernel space (mainly data copying), which improves work efficiency.

Commonly used protocols:

(1) OSPF (Open Shortest Path First) protocol: It is a dynamic routing update protocol used for communication between routers to inform each other of their respective routing information. .

(2) DNS (Domain Name Service) Protocol: Provides conversion of machine domain name to IP address. (For example, if you convert www.baidu.com into Baidu's IP, enter the domain name and you can enter directly. Because it is too troublesome to remember the IP address, just like everyone is uniquely identified by their ID card, but it is just for the sake of easy remembering. Name. DNS is a process of matching names with ID cards)

(3) The telnet protocol is a remote login protocol that allows us to complete remote tasks locally.

(4) HTTP protocol (Hypertext Transfer Protocol) is a stateless, application layer protocol based on request and response mode, often based on TCP connection method.

If you want to read more related articles, please visit PHP Chinese website! !

The above is the detailed content of What are the four-layer structure of the Internet?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!