The tcp/ip protocol is divided into several layers
TCP/IP protocol includes link layer, network layer, transport layer and application layer.
TCP/IP protocol (Transmission Control Protocol/Internet Protocol) is not a simple protocol, but a set of special protocols, including: TCP, IP, UDP, ARP, etc., these are called sub-agreement. Among these protocols, the most important and famous are TCP and IP. Therefore, most network administrators call the entire protocol suite "TCP/IP."
Layering:
In computer networks, the actually applied network protocol is the TCP/IP protocol family, TCP/IP The application layer generally corresponds to the application layer, presentation layer and session layer of the OSI/RM model. The network interface layer of TCP/IP corresponds to the data link layer and physical layer of OSI/RM, while the transport layer and network layer are in two Corresponds well in the model.
1. Link layer
The link layer is sometimes also called the data link layer or network interface layer. It usually includes the device driver in the operating system and the corresponding network interface card in the computer. . Together they handle the details of the physical interface to the cable (or any other transmission medium). The protocols that link link layer addresses and network layer addresses include ARP (Address Resolution Protocol, Address Resolution Protocol) and RARP (Reverse Address Resolution Protocol, Reverse Address Resolution Protocol).
2. Network layer
The network layer handles the activities of packets in the network, such as routing of packets. In the TCP/IP protocol suite, network layer protocols include IP protocol (Internet Protocol), ICMP protocol (Internet Control Message Protocol, Internet Control Message Protocol) and IGMP protocol (Internet Group Management Protocol, Internet Group Management Protocol) .
3. Transport layer
The transport layer mainly provides end-to-end communication for applications on two hosts. In the TCP/IP protocol suite, there are two different transmission protocols: TCP (Transmission Control Protocol, Transmission Control Protocol) and UDP (User Datagram Protocol, User Datagram Protocol).
4. Application layer
The application layer is responsible for handling specific application details. Almost various TCP/IP implementations provide the following common applications: Telnet remote login, SMTP (Simple Mail Transfer Protocol, simple mail transfer protocol), FTP (File Transfer Protocol, file transfer protocol), HTTP (Hyper Text Transfer Protocol, Hypertext Transfer Protocol), etc.
Core protocol:
1. IP protocol
Internet Protocol IP is the heart of TCP/IP and the most important protocol in the network layer.
The IP layer receives the data packet sent by the lower layer (network interface layer, such as Ethernet device driver) and sends the data packet to the higher layer - TCP or UDP layer; on the contrary, the IP layer Also transmits data packets received from the TCP or UDP layer to lower layers. IP packets are unreliable because IP does nothing to confirm that the packets were sent in order or that they were not corrupted. An IP packet contains the address of the host that sent it (source address) and the address of the host that received it (destination address).
When high-level TCP and UDP services receive data packets, they usually assume that the source address in the packet is valid. It can also be said that IP addresses form the basis of authentication for many services, which believe that data packets are sent from a valid host. IP confirmation contains an option called IPsource routing, which can be used to specify a direct path between the source address and the destination address. For some TCP and UDP services, IP packets using this option appear to be delivered from the last system on the path, rather than from its true location. This option exists for testing purposes, indicating that it can be used to trick the system into making connections that are normally prohibited. Therefore, many services that rely on IP source addresses for verification will cause problems and be hacked.
2. TCP protocol
If there are sealed TCP data packets in the IP data packet, then IP will transmit them "upward" to the TCP layer.
TCP sorts packets and performs error checking while realizing connections between virtual circuits. TCP packets include sequence numbers and acknowledgments, so packets received out of order can be sorted and damaged packets can be retransmitted.
TCP sends its information to higher-level applications, such as Telnet service programs and client programs. Applications take turns sending messages back to the TCP layer, which passes them down to the IP layer, device drivers and physical media, and finally to the receiver.
Connection-oriented services (such as Telnet, FTP, rlogin, XWindows, and SMTP) require a high degree of reliability, so they use TCP. DNS uses TCP in some cases (to send and receive domain name databases), but uses UDP to convey information about individual hosts.
3. UDP protocol
UDP and TCP are on the same layer, but the order of data packets is wrong or retransmitted. Therefore, UDP should not be used for connection-oriented services that use virtual circuits. UDP is mainly used for query-reply-oriented services, such as NFS. Relative to FTP or Telnet, these services require a smaller amount of information to be exchanged. Services that use UDP include NTP (Network Time Protocol) and DNS (DNS also uses TCP).
Spoofing UDP packets is easier than spoofing TCP packets, because UDP does not establish an initial connection (also called a handshake) (because there is no virtual circuit between the two systems), that is to say, UDP-related services face more Big danger.
4. ICMP protocol
ICMP is located at the same layer as IP and is used to transmit IP control information. It is mainly used to provide information about the path leading to the destination address. ICMP "Redirect" messages inform the host of a more accurate path to other systems, while "Unreachable" messages indicate problems with the path. In addition, ICMP can cause the TCP connection to be terminated "gracefully" if the path becomes unavailable. PING is the most commonly used ICMP-based service.
The above is the detailed content of The tcp/ip protocol is divided into several layers. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The full name of tcp/ip is "Transmission Control Protocol/Internet Protocol", which means "Transmission Control Protocol/Internet Protocol" in Chinese. The TCP/IP protocol not only refers to the two protocols TCP and IP, but also refers to a protocol cluster composed of FTP, SMTP, TCP, UDP, IP and other protocols, just because in the TCP/IP protocol, the TCP protocol and the IP protocol The most representative, so it is called TCP/IP protocol.

In recent years, Go language, as an efficient, lightweight, and excellent concurrency programming language, has attracted more and more people's attention and love. In terms of network programming, the Go language has rich network protocol support and can help developers build network applications quickly and conveniently. Let's take a look at the network protocols in Go language. 1.TCPTCP (TransmissionControlProtocol, Transmission Control Protocol) is a transmission protocol commonly used in computer networks.

Commonly used protocols in Java network programming include: TCP/IP: used for reliable data transmission and connection management. HTTP: used for web data transmission. HTTPS: A secure version of HTTP that uses encryption to transmit data. UDP: For fast but unstable data transfer. JDBC: used to interact with relational databases.

How to use PHP and TCP/IP protocol for data communication Introduction: In the modern Internet era, data communication is a very important aspect. Whether it is communication between a client and a server or communication between different servers, the TCP/IP protocol has always been one of the most commonly used communication protocols. This article will introduce how to use PHP language and TCP/IP protocol for data communication, and provide relevant code examples. 1. Introduction to TCP/IP protocol TCP/IP protocol is the basis of the Internet protocol cluster. It defines

Differences: 1. TCP/IP is a protocol cluster, while OSI is a model; 2. TCP/IP is a five-layer structure, while OSI is a seven-layer structure; 3. The third layer of TCP/IP only supports the IP protocol, and OSI Supports all network layer protocols. Connection: 1. OSI introduces the concepts of services, interfaces, protocols, and layers, while TCP/IP draws on the concepts of OSI; 2. OSI has models first, then protocols, standards first, and then practices, while TCP/IP IP first has protocols and applications and then proposes a model, which is the reference OSI model.

The three elements of the network protocol: 1. Semantics, which explains the meaning of each part of the control information; it stipulates what kind of control information needs to be sent, as well as the completed actions and what kind of responses should be made. 2. Grammar, that is, the structure and format of user data and control information, and the order in which data appears. 3. Timing, that is, a detailed description of the sequence of events.

Application layer protocols include: 1. Telnet, which allows users on one machine to log in to a remote machine and perform work; 2. FTP, which provides a method to move files from one machine to another; 3. SMTP is a protocol that provides email transmission; 4. SNMP is a standard protocol used to manage network nodes in IP networks; 5. DNS is mainly used to "translate" familiar web addresses into An IP address that a computer can understand; 6. HTTP is a request-response protocol used to obtain the home page on the WWW.

TCP and IP are two different protocols in the Internet: 1. TCP is a transport layer protocol, while IP is a network layer protocol; 2. TCP provides functions such as segmentation, sorting, confirmation and retransmission of data packets. , and the IP protocol is responsible for providing source and destination addresses for data packets; 3. TCP is a connection-oriented protocol, while the IP protocol is connectionless; 4. TCP also provides flow control and congestion control.