CODE(8-bit): provides further information about the message type CHECKSUM(16-bit) In addition, ICMP messages that report errors always include the header and the first 64 data bits of the datagram causing the problem. ICMP的消息类型:TYPE 0:Echo Reply 3:Destination Unreachable 4:Source Quench ...
Type Code Description Query/Error 0– Echo Reply 0 Echo reply Query 3– Destination Unreachable 0 Destination network unreachable Error 1 Destination host unreachable Error 2 Destination protocol unreachable Error 3 Destination port unreachable Error ...
3 10 Destination host administratively prohibited——目的主机被强制禁止 x 3 11 Network unreachable for TOS——由于服务类型TOS,网络不可达 x 3 12 Host unreachable for TOS——由于服务类型TOS,主机不可达 x 3 13 Communication administratively prohibited by filtering——由于过滤,通信被强制禁止 x 3 14 ...
TYPE字段:8位 0:Echo Reply 3:Destination Unreachable 4:Source Quench 5:Redirect (change route) 8:Echo Request 9:Router Advertisement 10:Router Solicitation 11:time Exceeded for a Datagram 12:Parameter Problem on a Datagram 13:timestamp Request ...
3、目的不可达(Destination Unreachable Message)0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 ...
目标不可达(Destination Unreachable) 类型:3 代码:细分为不同的代码,如网络不可达(0)、主机不可达(1)、协议不可达(2)、端口不可达(3)等。 数据:包含无法送达的数据包的 IP 头部和前 64 字节的数据部分,用于帮助诊断问题。 超时(Time Exceeded)
1不能到达信宿(Destination Unreachable)差错报文 2分组过大(Packet Too Big)差错报文 3超时(Time Exceeded)差错报文 4参数问题(Parameter Problem)差错报文 128返回请求(Echo Request)报文 129返回应答(Echo Reply)报文 130组成员查询(Group Membership Query) 131组成员报告(Group Membership Report) 132组成员结束(Gr...
实现了以下Type #defineICMP_ER 0/* echo reply */#defineICMP_DUR 3/* destination unreachable */#defineICMP_SQ 4/* source quench */#defineICMP_RD 5/* redirect */#defineICMP_ECHO 8/* echo */#defineICMP_TE 11/* time exceeded */#defineICMP_PP 12/* parameter problem */#defineICMP_TS...
其中type(类型)字段表示 ICMP 消息的类型,code(代码)字段表示 ICMP 消息的具体含义。例如:type 值为 3 表示目的不可达消息( Destination Unreachable Message ),若 code 值为 0 表示目的网络不可达( Network Unreachable )。常见的 ICMP 消息类型如下图。