linux内核icmp实现问题

发布于 2024-10-21 21:49:15 字数 140 浏览 2 评论 0原文

在当前的linux内核中,

当ICMP模块收到ECHO REQUEST消息时,它是否检查或限制数据大小? 或者它只是将数据放入新的 ICMP 消息中然后发送回源?

我一直在阅读源代码,我很确定内核不会检查数据大小,但我想确保这一点:)

in the current linux kernel,

when ICMP module receives ECHO REQUEST message, does it check or limit the data size?
or does it just puts the data in a new ICMP message and send back to the source?

I been reading the source code, and I am pretty sure the kernel doesn't check the data size but I want to make it sure :)

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

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

发布评论

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

评论(1

恋竹姑娘 2024-10-28 21:49:15

您是对的,ICMP 不处理数据包的大小。

ICMP 数据包包含在标准 IP 数据报中。由于 IP 的最大大小为 65K。因此大小检查是在 IP 级别本身完成的。 ICMP 层无需在代码中担心这一点。

You are correct ICMP is not handling the size of the packet.

ICMP packet are contained in standard IP datagram. Since max size of IP is 65K. So the size check is done at IP level itself. ICMP layer need not worry about that in code.

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