ICMP 标头校验和是否也包含数据?
作为家庭作业的一部分,我必须在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它必须根据 HEADER + DATA 计算得出。计算时,让校验和为零,然后替换它。
引用 RFC 792 中的第 14 页(Echo 或 Echo Reply 消息):
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: