ping -A 的确切含义是什么

ash*_*hok 6 networking ping

-A     Adaptive ping. Interpacket interval adapts to round-trip time, so that effectively not more than one (or more, if  preload  is set)  unanswered  probe  is  present in the network. Minimal interval is 200msec for not super-user. On networks with low rtt this mode is essentially equivalent to flood mode.
Run Code Online (Sandbox Code Playgroud)

这是我在 ping 手册页中看到的内容,这到底意味着什么,请用简单的术语解释一下。

edi*_*ink 6

通常,Ping 请求以设定的时间间隔(通常为 1 秒)通过网络发送。这可以使用 -i 标志进行配置。一般来说,这意味着发生完整的 ping 请求和响应,然后该工具在该秒的剩余时间内不执行任何操作。在极其恶劣的网络条件下,新的 ping 请求可能会在最后一个 ping 请求返回之前发出。

自适应 ping (-A) 尝试将间隔调整为网络链路的 RTT。这样,平均而言,一旦收到最后的回复,就会发出新的 ping 请求。

这两种方式都与洪水模式相反,洪水模式发送尽可能多的请求,不延迟也不关注 RTT。