linux内核icmp实现问题
在当前的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是对的,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.