What is ICMP echo request and reply?

The Internet Control Message Protocol (ICMP) is a supporting protocol in the Internet protocol suite. It is used by network devices, including routers, to send error messages and operational information indicating success or failure when communicating with another IP address, for example, an error is indicated when a requested service is not available or that a host or router could not be reached. ICMP differs from transport protocols such as TCP and UDP in that it is not typically used to exchange data between systems, nor is it regularly employed by end-user network applications (with the exception of some diagnostic tools like ping and traceroute).

ICMP for IPv4 is defined in RFC 792. A separate ICMPv6, defined by RFC 4443, is used with IPv6.

Technical details[edit]

ICMP is part of the Internet protocol suite as defined in RFC 792. ICMP messages are typically used for diagnostic or control purposes or generated in response to errors in IP operations (as specified in RFC 1122). ICMP errors are directed to the source IP address of the originating packet.

For example, every device (such as an intermediate router) forwarding an IP datagram first decrements the time to live (TTL) field in the IP header by one. If the resulting TTL is 0, the packet is discarded and an ICMP message is sent to the datagram's source address.

Many commonly used network utilities are based on ICMP messages. The traceroute command can be implemented by transmitting IP datagrams with specially set IP TTL header fields, and looking for ICMP time exceeded in transit and messages generated in response. The related ping utility is implemented using the ICMP echo request and echo reply messages.

ICMP uses the basic support of IP as if it were a higher-level protocol, however, ICMP is actually an integral part of IP. Although ICMP messages are contained within standard IP packets, ICMP messages are usually processed as a special case, distinguished from normal IP processing. In many cases, it is necessary to inspect the contents of the ICMP message and deliver the appropriate error message to the application responsible for transmitting the IP packet that prompted the ICMP message to be sent.

ICMP is a network-layer protocol. There is no TCP or UDP port number associated with ICMP packets as these numbers are associated with the transport layer above.

Datagram structure[edit]

The ICMP packet is encapsulated in an IPv4 packet. The packet consists of header and data sections.

The ICMP header starts after the and is identified by IP protocol number '1'. All ICMP packets have an 8-byte header and variable-sized data section. The first 4 bytes of the header have fixed format, while the last 4 bytes depend on the type/code of that ICMP packet.

ICMP type, see .ICMP subtype, see .Internet checksum (RFC 1071) for error checking, calculated from the ICMP header and data with value 0 substituted for this field.Four-byte field, contents vary based on the ICMP type and code.

ICMP error messages contain a data section that includes a copy of the entire IPv4 header, plus at least the first eight bytes of data from the IPv4 packet that caused the error message. The length of ICMP error messages should not exceed 576 bytes. This data is used by the host to match the message to the appropriate process. If a higher level protocol uses port numbers, they are assumed to be in the first eight bytes of the original datagram's data.

The variable size of the ICMP packet data section has been exploited. In the "Ping of death", large or fragmented ICMP packets are used for denial-of-service attacks. ICMP data can also be used to create covert channels for communication. These channels are known as ICMP tunnels.

Control messages[edit]

Control messages are identified by the value in the type field. The code field gives additional context information for the message. Some control messages have been deprecated since the protocol was first introduced.

Notable control messages[7][8]TypeCodeStatusDescription0 – Echo Reply: 14 0Echo reply (used to ping)1 and 2unassignedReserved3 – Destination Unreachable: 4 0Destination network unreachable1Destination host unreachable2Destination protocol unreachable3Destination port unreachable4Fragmentation required, and DF flag set5Source route failed6Destination network unknown7Destination host unknown8Source host isolated9Network administratively prohibited10Host administratively prohibited11Network unreachable for ToS12Host unreachable for ToS13Communication administratively prohibited14Host Precedence Violation15Precedence cutoff in effect4 – Source Quench0Source quench (congestion control)5 – Redirect Message0Redirect Datagram for the Network1Redirect Datagram for the Host2Redirect Datagram for the ToS & network3Redirect Datagram for the ToS & host6Alternate Host Address7unassignedReserved8 – Echo Request0Echo request (used to ping)9 – Router Advertisement0Router Advertisement10 – Router Solicitation0Router discovery/selection/solicitation11 – Time Exceeded: 6 0TTL expired in transit1Fragment reassembly time exceeded12 – Parameter Problem: Bad IP header0Pointer indicates the error1Missing a required option2Bad length13 – Timestamp0Timestamp14 – Timestamp Reply0Timestamp reply15 – Information Request0Information Request16 – Information Reply0Information Reply17 – Address Mask Request0Address Mask Request18 – Address Mask Reply0Address Mask Reply19reservedReserved for security20 through 29reservedReserved for robustness experiment30 – Traceroute0Information Request31Datagram Conversion Error32Mobile Host Redirect33Where-Are-You (originally meant for IPv6)34Here-I-Am (originally meant for IPv6)35Mobile Registration Request36Mobile Registration Reply37Domain Name Request38Domain Name Reply39SKIP Algorithm Discovery Protocol, Simple Key-Management for Internet Protocol40Photuris, Security failures41ExperimentalICMP for experimental mobility protocols such as Seamoby [RFC4065]42 – Extended Echo Request0Request Extended Echo (XPing - see Extended Ping (Xping))43 – Extended Echo Reply0No Error1Malformed Query2No Such Interface3No Such Table Entry4Multiple Interfaces Satisfy Query44 through 252unassignedReserved253ExperimentalRFC3692-style Experiment 1 (RFC 4727)254ExperimentalRFC3692-style Experiment 2 (RFC 4727)255reservedReserved

Source quench[edit]

Source Quench requests that the sender decrease the rate of messages sent to a router or host. This message may be generated if a router or host does not have sufficient buffer space to process the request, or may occur if the router or host buffer is approaching its limit.

Data is sent at a very high speed from a host or from several hosts at the same time to a particular router on a network. Although a router has buffering capabilities, the buffering is limited to within a specified range. The router cannot queue any more data than the capacity of the limited buffering space. Thus if the queue gets filled up, incoming data is discarded until the queue is no longer full. But as no acknowledgement mechanism is present in the network layer, the client does not know whether the data has reached the destination successfully. Hence some remedial measures should be taken by the network layer to avoid these kind of situations. These measures are referred to as source quench. In a source quench mechanism, the router sees that the incoming data rate is much faster than the outgoing data rate, and sends an ICMP message to the clients, informing them that they should slow down their data transfer speeds or wait for a certain amount of time before attempting to send more data. When a client receives this message, it will automatically slow down the outgoing data rate or wait for a sufficient amount of time, which enables the router to empty the queue. Thus the source quench ICMP message acts as flow control in the network layer.

Since research suggested that "ICMP Source Quench [was] an ineffective (and unfair) antidote for congestion", routers' creation of source quench messages was deprecated in 1995 by RFC 1812. Furthermore, forwarding of and any kind of reaction to (flow control actions) source quench messages was deprecated from 2012 by RFC 6633.

Source quench message: 9 0001020304050607080910111213141516171819202122232425262728293031Type = 4Code = 0ChecksumunusedIP header and first 8 bytes of original datagram's data

Where:

Type must be set to 4Code must be set to 0IP header and additional data is used by the sender to match the reply with the associated request

Redirect[edit]

What is ICMP echo request and reply?

An example of how an ICMPv4 redirect message works

Redirect requests data packets be sent on an alternative route. ICMP Redirect is a mechanism for routers to convey routing information to hosts. The message informs a host to update its routing information (to send packets on an alternative route). If a host tries to send data through a router (R1) and R1 sends the data on another router (R2) and a direct path from the host to R2 is available (that is, the host and R2 are on the same subnetwork), then R1 will send a redirect message to inform the host that the best route for the destination is via R2. The host should then change its route information and send packets for that destination directly to R2. The router will still send the original datagram to the intended destination. However, if the datagram contains routing information, this message will not be sent even if a better route is available. RFC 1122 states that redirects should only be sent by gateways and should not be sent by Internet hosts.

Redirect message: 11 0001020304050607080910111213141516171819202122232425262728293031Type = 5CodeChecksumIP addressIP header and first 8 bytes of original datagram's data

Where:

Type must be set to 5.Code specifies the reason for the redirection, and may be one of the following:CodeDescription0Redirect for Network1Redirect for Host2Redirect for Type of Service and Network3Redirect for Type of Service and HostIP address is the 32-bit address of the gateway to which the redirection should be sent.IP header and additional data is included to allow the host to match the reply with the request that caused the redirection reply.

Time Exceeded is generated by a gateway to inform the source of a discarded datagram due to the time to live field reaching zero. A time exceeded message may also be sent by a host if it fails to reassemble a fragmented datagram within its time limit.

Time exceeded messages are used by the traceroute utility to identify gateways on the path between two hosts.

Time exceeded message: 5 0001020304050607080910111213141516171819202122232425262728293031Type = 11CodeChecksumunusedIP header and first 8 bytes of original datagram's data

Where:

Type must be set to 11Code specifies the reason for the time exceeded message, include the following:CodeDescription0Time-to-live exceeded in transit.1Fragment reassembly time exceeded.IP header and first 64 bits of the original payload are used by the source host to match the time exceeded message to the discarded datagram. For higher-level protocols such as UDP and TCP the 64-bit payload will include the source and destination ports of the discarded packet.

Timestamp is used for time synchronization. The originating timestamp is set to the time (in milliseconds since midnight) the sender last touched the packet. The receive and transmit timestamps are not used.

Timestamp message: 15 0001020304050607080910111213141516171819202122232425262728293031Type = 13Code = 0ChecksumIdentifierSequence numberOriginate timestampReceive timestampTransmit timestamp

Where:

Type must be set to 13Code must be set to 0Identifier and Sequence Number can be used by the client to match the with the timestamp request.Originate timestamp is the number of milliseconds since midnight Universal Time (UT). If a UT reference is not available the most-significant bit can be set to indicate a non-standard time value.

Timestamp Reply replies to a message. It consists of the originating timestamp sent by the sender of the Timestamp as well as a receive timestamp indicating when the Timestamp was received and a transmit timestamp indicating when the Timestamp reply was sent.

Timestamp reply message: 15 0001020304050607080910111213141516171819202122232425262728293031Type = 14Code = 0ChecksumIdentifierSequence numberOriginate timestampReceive timestampTransmit timestamp

Where:

Type must be set to 14Code must be set to 0Identifier and Sequence number can be used by the client to match the reply with the request that caused the reply.Originate timestamp is the time the sender last touched the message before sending it.Receive timestamp is the time the echoer first touched it on receipt.Transmit timestamp is the time the echoer last touched the message on sending it.All timestamps are in units of milliseconds since midnight UT. If the time is not available in milliseconds or cannot be provided with respect to midnight UT then any time can be inserted in a timestamp provided the high order bit of the timestamp is also set to indicate this non-standard value.

The use of Timestamp and Timestamp Reply messages to synchronize the clocks of Internet nodes has largely been replaced by the UDP-based Network Time Protocol and the Precision Time Protocol.

Address mask request[edit]

Address mask request is normally sent by a host to a router in order to obtain an appropriate subnet mask.

Recipients should reply to this message with an message.

Address mask request0001020304050607080910111213141516171819202122232425262728293031Type = 17Code = 0ChecksumIdentifierSequence numberAddress mask

Where:

Type must be set to 17Code must be set to 0Address mask can be set to 0

ICMP Address Mask Request may be used as a part of reconnaissance attack to gather information on the target network, therefore ICMP Address Mask Reply is disabled by default on Cisco IOS.

Address mask reply[edit]

Address mask reply is used to reply to an address mask request message with an appropriate subnet mask.

Address mask reply0001020304050607080910111213141516171819202122232425262728293031Type = 18Code = 0ChecksumIdentifierSequence numberAddress mask

Where:

Type must be set to 18Code must be set to 0Address mask should be set to the subnet mask

Destination unreachable[edit]

Destination unreachable is generated by the host or its inbound gateway to inform the client that the destination is unreachable for some reason. Reasons for this message may include: the physical connection to the host does not exist (distance is infinite); the indicated protocol or port is not active; the data must be fragmented but the 'don't fragment' flag is on. Unreachable TCP ports notably respond with TCP RST rather than a destination unreachable type 3 as might be expected. Destination unreachable is never reported for IP multicast transmissions.

What is an ICMP echo request?

Normally, ICMP echo-request and echo-reply messages are used to ping a network device in order to diagnose the health and connectivity of the device and the connection between the sender and the device. By flooding the target with request packets, the network is forced to respond with an equal number of reply packets.

Why ICMP is used explain ICMP echo request and reply?

ICMP is mainly used to determine whether or not data is reaching its intended destination in a timely manner. Commonly, the ICMP protocol is used on network devices, such as routers. ICMP is crucial for error reporting and testing, but it can also be used in distributed denial-of-service (DDoS) attacks.

How does ICMP echo reply work?

Sending an ICMP Echo Message Your host machine creates an echo message and sends it to the specified device. The device will, in return, create an echo reply and sends it back to the requesting host.

What responses are possible in ICMP echo requests?

Internet Control Message Protocol (ICMP) Parameters.
Type 0 — Echo Reply..
Type 1 — Unassigned..
Type 2 — Unassigned..
Type 3 — Destination Unreachable..
Type 4 — Source Quench (Deprecated).
Type 5 — Redirect..
Type 6 — Alternate Host Address (Deprecated).
Type 7 — Unassigned..