ICMP 标头校验和是否也包含数据?

发布于 2024-10-15 19:50:04 字数 114 浏览 9 评论 0原文

作为家庭作业的一部分,我必须在 Linux 中编写一个 C 程序,使用原始套接字生成对 ICMP Echo 请求的 ICMP 回复。 ICMP 数据包中的数据是否也必须包含在校验和中?或者我应该只计算标头的校验和?

As part of a homework assignment, I have to write a C program in Linux that generates ICMP replies to ICMP Echo requests using raw sockets. Does the data in the ICMP Packet have to be included in the checksum as well? Or should I calculate the checksum for only the header?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟─花易冷 2024-10-22 19:50:04

它必须根据 HEADER + DATA 计算得出。计算时,让校验和为零,然后替换它。

引用 RFC 792 中的第 14 页(Echo 或 Echo Reply 消息):

校验和是 16 位的补码
以 ICMP 类型开头的 ICMP 消息的补码和。
为了计算校验和,校验和字段应该为零。
如果总长度为奇数,则接收到的数据补一
用于计算校验和的零八位组。该校验和可能是
将来会更换。

It must be calculated from HEADER + DATA. When performing the calculation, let the checksum be zero, then replace it afterwards.

Quoting page 14 (Echo or Echo Reply Message) from the RFC 792:

The checksum is the 16-bit ones's complement of the one's
complement sum of the ICMP message starting with the ICMP Type.
For computing the checksum , the checksum field should be zero.
If the total length is odd, the received data is padded with one
octet of zeros for computing the checksum. This checksum may be
replaced in the future.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文