4,094 views
1 votes
1 votes
Please explain these points :

No ICMP error message will be generated for a fragmented datagram that is not the first fragment .

No ICMP error message will be generated for a datagram having a multicast address .

No ICMP error message will be generated for a datagram having a special address such as 127.0.0.0

1 Answer

0 votes
0 votes

specifications set for ICMP RFC 792 states that ICMP error messages should not be generated when their usage will generate an excessive amount of network traffic. For example, RFC 1122 states that ICMP error messages should not be sent as the result of receiving:

  • Another ICMP error message (although ICMP error messages can be sent in response to ICMP query messages)

  • An IGMP message of any kind

  • An IP datagram with a destination IP address for a broadcast or multicast address

  • An IP datagram with a nonspecific source address (all zeroes, a loopback address, or a broadcast or multicast address)

  • A data-link frame with a broadcast or multicast address

  • Any fragment—other than the first fragment—from a fragmented IP datagram

Related questions