我需要有关小型 ping 应用程序中间隔设置的建议

发布于 2024-12-27 14:28:42 字数 133 浏览 0 评论 0原文

我正在创建一个应用程序,让我可以使用每次 ping 之间的时间间隔来 ping IP 或 IP 范围。我担心的是,如果允许的时间间隔太小,那么我的程序就会出现 ping 洪水。

我应该在我的小应用程序中允许什么最小间隔(以毫秒为单位)?

I'm creating an application which let me to ping IP or IP range using time interval between each ping. My concern here is that if the interval will be allowed to be too small then my program would appear to do a ping flood.

What should I allow the minimum interval in milliseconds to be in my small app?

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

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

发布评论

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

评论(1

揽清风入怀 2025-01-03 14:28:42

我认为每秒 ping 一次公开的 IP 地址会显得非常可疑。

一般来说,您不应过于频繁地进行 ping 操作,这只会导致不必要的网络流量和拥塞。例如,如果您的应用程序的目的是直观地通知用户网络问题,则更频繁地进行 ping 操作以确保用户可以响应是没有任何意义的。

也许更好的解决方案是使用基于统计的算法,该算法考虑了数据包丢失、响应时间和网络负载。该算法可以是自适应的,因为它将网络负载与所收集的信息的价值进行权衡。

I would think that pinging a publicly available IP address more that once per second would look highly suspicious.

In general you should not ping any more frequently than is useful, it will only lead to needless network traffic and congestion. For example if the purpose of your app were to notify a user visually of a network issue, pinging more frequently that a user can respond serves no purpose.

Perhaps a better solution would be to use a statistical based algorithm that takes into account packet loss, response times and network loading. The algorithm could be adaptive in that it would trade off network loading against the value of the information being collected.

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