The service type provided by the ip protocol is a connectionless datagram service. IP refers to the Internet Interconnection Protocol. According to the end-to-end design principle, IP only provides a connectionless, unreliable, best-effort data packet transmission service to the host. IP is located in the network layer of the TCP/IP model. It can provide various protocol information to the transport layer, such as TCP, UDP, etc.; IP information packets can be placed in the link layer through Ethernet, Token Ring network, etc. various technologies for delivery.
The operating environment of this tutorial: Windows 7 system, Dell G3 computer.
The service type provided by the ip protocol is a connectionless datagram service.
IP refers to Internet Protocol, the abbreviation of Internet Protocol, which is the network layer protocol in the TCP/IP system. The purpose of designing IP is to improve the scalability of the network: first, to solve Internet problems and realize the interconnection of large-scale and heterogeneous networks; second, to separate the coupling relationship between top-level network applications and underlying network technologies to facilitate the two. Develop independently. According to the end-to-end design principle, IP only provides a connectionless, unreliable, best-effort packet transmission service to the host.
IP is the core of the entire TCP/IP protocol family and the foundation of the Internet. IP is located in the network layer of the TCP/IP model (equivalent to the network layer of the OSI model). It can provide various protocol information to the transport layer, such as TCP, UDP, etc.; IP information packets can be placed in the link layer. Transmitted through various technologies such as Ethernet and Token Ring networks.
In order to adapt to heterogeneous networks, IP emphasizes adaptability, simplicity and operability, and makes certain sacrifices in reliability. IP does not guarantee the delivery time and reliability of packets. The transmitted packets may be lost, duplicated, delayed or out of order.
The main content of ip protocol
IP mainly includes three aspects: IP addressing scheme, packet encapsulation format and packet forwarding rules.
Forwarding rules of IP packets
The router only forwards based on the network address. When an IP data packet is forwarded via a router, if the target network is directly connected to the local router, the data packet is delivered directly to the target host, which is called direct delivery; otherwise, the router looks up the routing information through the routing table and transfers the data packet to Specified next-hop router, this is called indirect delivery. In indirect delivery, if the router has a route to the target network in the routing table, it will deliver the data packet to the next-hop router specified in the routing table; if there is no route but there is a default route in the routing table, it will deliver the data packet. Gives the specified default router; if neither is present, the packet is dropped and an error is reported.
IP Fragmentation
An IP packet may need to pass through multiple different physical networks to be transmitted from the source host to the destination host. Since the data frames of various networks have a maximum transmission unit (MTU) limit, for example, the MTU of an Ethernet frame is 1500; therefore, when the router is forwarding IP packets, if the size of the data packet exceeds the maximum size of the egress link, When transmitting units, the IP packet will be broken down into many fragments that are small enough to be transmitted on the target link. These IP fragments re-encapsulate an IP packet for independent transmission and are reassembled when it reaches the destination host.
IP packet structure
An IP packet consists of header and data. The first 20 bytes of the header are required by all IP packets and are also called fixed headers. Following the fixed part of the header are some optional fields, the length of which is variable.
IP packet structure
IP data message header diagram
The meaning of each field in the IP datagram header
For more related knowledge, please visit the FAQ column!
The above is the detailed content of What are the types of services provided by the IP protocol?. For more information, please follow other related articles on the PHP Chinese website!