web-dev-qa-db-ja.com

ntpサーバーの時間とサーバーの時間を比較するにはどうすればよいですか?

ボックスでntpdを実行しています。ボックスの時間とntp.ubuntu.comから取得した時間を比較したいのですが。これを行う簡単な方法はありますか?

29
John Bachir

ntpq -p ntp.ubuntu.com

man ntpq

...
-p     Print  a list of the peers known to the server as well as a summary of their state. This is equivalent to the peers interactive command.
...

編集:ホストは現在タイムアウトしています。 ntpq -p pool.ntp.orgは有効な結果を返します。

20
jscott

ntpdate を使用してタイムサーバーをクエリできます

ntpdate -q ntp.ubuntu.com

29
user9517

実際には、コマンドntpq -c "rv 0 clock" ntp.ubuntu.comはサーバーの時刻を標準形式で返します。これはca.pool.ntp.orgの結果です。

clock=d1b5aa9c.b8f9697a  Wed, Jun 29 2011  9:43:56.722
9
Ion