Linux ping 显示时间
选项 | 描述 | 示例 |
-v 选项 | 使用-v 选项可以以更详细的方式显示每个回显请求的时间信息,包括发送和接收时间。 | ping -v 192.168.1.1 |
-q 选项 | 使用-q 选项只显示每个请求的平均时间,而不会显示每个请求的具体时间。 | ping -q 192.168.1.1 |
-D 选项 | 使用-D 选项可以打印每个回显请求的时间戳信息,包括发送和接收时间,这些时间戳以 Unix 纪元时间的形式显示,单位为微秒。 | ping -D google.com |
-O 选项 | 使用-O 选项将在每一行中显示时间戳,以跟踪每个回显请求的时间信息。 | ping -O google.com |
-U 选项 | 使用-U 选项将以 Unix 纪元时间的格式显示每个回显请求的时间信息,单位为微秒。 | ping -U google.com |
具体示例
(图片来源网络,侵删)
使用-v
选项
$ ping -v google.com PING google.com (172.217.16.238) 56(84) bytes of data. From 192.168.0.1 icmp_seq=1 Destination Host Unreachable From 192.168.0.1 icmp_seq=2 Destination Host Unreachable From 192.168.0.1 icmp_seq=3 Destination Host Unreachable ...
使用-D
选项
$ ping -D google.com PING google.com (172.217.16.238) 56(84) bytes of data. [1593578925.479252] 64 bytes from lax28s01-in-f14.1e100.net (172.217.16.238): icmp_seq=1 ttl=54 time=17.8 ms [1593578926.479551] 64 bytes from lax28s01-in-f14.1e100.net (172.217.16.238): icmp_seq=2 ttl=54 time=17.7 ms [1593578927.483074] 64 bytes from lax28s01-in-f14.1e100.net (172.217.16.238): icmp_seq=3 ttl=54 time=17.4 ms ...
使用-O
选项
$ ping -O google.com PING google.com (172.217.16.238) 56(84) bytes of data. 64 bytes from lax28s01-in-f14.1e100.net (172.217.16.238): icmp_seq=1 ttl=54 time=18.1 ms 64 bytes from lax28s01-in-f14.1e100.net (172.217.16.238): icmp_seq=2 ttl=54 time=17.8 ms 64 bytes from lax28s01-in-f14.1e100.net (172.217.16.238): icmp_seq=3 ttl=54 time=17.7 ms ...
使用-U
选项
$ ping -U google.com PING google.com (172.217.16.238) 56(84) bytes of data. [1593578925.479252] 64 bytes from lax28s01-in-f14.1e100.net (172.217.16.238): icmp_seq=1 ttl=54 time=17.8 ms [1593578926.479551] 64 bytes from lax28s01-in-f14.1e100.net (172.217.16.238): icmp_seq=2 ttl=54 time=17.7 ms [1593578927.483074] 64 bytes from lax28s01-in-f14.1e100.net (172.217.16.238): icmp_seq=3 ttl=54 time=17.4 ms ...
通过上述选项,你可以根据需要选择不同的时间显示方式来更好地分析网络延迟和性能。
(图片来源网络,侵删)
以上内容就是解答有关linux ping显示时间的详细内容了,我相信这篇文章可以为您解决一些疑惑,有任何问题欢迎留言反馈,谢谢阅读。
(图片来源网络,侵删)
本文来源于互联网,如若侵权,请联系管理员删除,本文链接:https://www.9969.net/68297.html