如何在 Windows 下查询 NTP 服务器?

如何在 Windows 下查询 NTP 服务器?

我对将本地时钟与远程服务器同步不感兴趣。我只想查询它并打印结果。

我原本以为有一个ntpq适用于 Windows 的端口,但却找不到。

我发现的所有其他 NTP 客户端,它们总是想将自己安装为服务,或者以其他方式明确表示它们想要同步我的本地时间。

答案1

C:\> w32tm /stripchart /computer:foo
Tracking foo [1.2.3.4].
The current time is 19/07/2012 17:39:48 (local time).
17:39:48 d:-00.0000840s o:-25.3004160s  [@                          |                           ]
17:39:50 d:-00.0000680s o:-25.3070080s  [@                          |                           ]
17:39:52 d:-00.0000690s o:-25.2987405s  [@                          |                           ]
17:39:54 d:-00.0000680s o:-25.3071530s  [@                          |                           ]
17:39:56 d:-00.0000690s o:-25.2993985s  [@                          |                           ]
17:39:58 d:-00.0000680s o:-25.3070270s  [@                          |                           ]

Wireshark 显示由此生成的 NTP 数据包。某些版本的 w32tm 具有 /query 选项

C:\>w32tm /stripchart /computer:us.pool.ntp.org /dataonly /samples:5
Tracking us.pool.ntp.org [208.87.221.228:123].
Collecting 5 samples.
The current time is 19/07/2012 18:36:32.
18:36:32, +03.3575094s
18:36:34, +03.3573679s
18:36:37, +03.3572986s
18:36:39, +03.3570290s
18:36:41, +03.3565357s

答案2

Bytefusion 的查询看起来非常老旧,但还是可以运行的。遗憾的是,它需要初始安装,但应用程序文件复制到另一个系统后可以正常工作。

在此处输入图片描述

答案3

我能找到的最新最好的 NTP 检查工具是这个:https://www.galsys.co.uk/categories/ntp-server-checker.html

在此处输入图片描述

相关内容