Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

How does an icmp connection differ from a tcp connection?


Asked by Alonzo Neal on Dec 01, 2021 FAQ



Protocol is ICMP (connectionless). Unlike TCP, an ICMP or UDP connection does not time out, and therefore, the application (or the user) does not need to restart the connection to continue sending traffic. Ping is continuous.
In fact,
ICMP. The Internet Control Message Protocol, or ICMP, has an entirely different function than TCP and UDP. Unlike these types, ICMP is not a traditional data packet protocol. ICMP is a special type of packet used for inter-device communication, carrying everything from redirect instructions to timestamps for synchronization between devices.
Next, Unlike these types, ICMP is not a traditional data packet protocol. ICMP is a special type of packet used for inter-device communication, carrying everything from redirect instructions to timestamps for synchronization between devices. What ICMP is probably best known for, however, is echo requests. This is pretty much what it sounds like.
Also Know,
What is a Transmission Control Protocol TCP/IP Model? What is TCP? TCP stands for Transmission Control Protocol a communications standard that enables application programs and computing devices to exchange messages over a network.
Besides,
ICMP is layer 3, for networking. While TCP, UDP is layer 4, for transport. Ping is echo request/reply, part of the layer 3. Share Improve this answer