往返时间 (RTT)

往返时间 (RTT) 是数据包发送到目标所需的时间加上目标确认该数据包并返回源所需的时间之和。可以使用 ping 命令确定网络和服务器之间的 RTT。

bash(Bourne Again Shell)
ping example.com

这将输出类似以下内容

PING example.com (216.58.194.174): 56 data bytes
64 bytes from 216.58.194.174: icmp_seq=0 ttl=55 time=25.050 ms
64 bytes from 216.58.194.174: icmp_seq=1 ttl=55 time=23.781 ms
64 bytes from 216.58.194.174: icmp_seq=2 ttl=55 time=24.287 ms
64 bytes from 216.58.194.174: icmp_seq=3 ttl=55 time=34.904 ms
64 bytes from 216.58.194.174: icmp_seq=4 ttl=55 time=26.119 ms
--- google.com ping statistics ---
5 packets transmitted, 5 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 23.781/26.828/34.904/4.114 ms

在上面的示例中,平均往返时间在最后一行显示为 26.8 毫秒。

另请参阅