Linux環境下如何驗證提供時間校準的NTP伺服器是否可用

東北胖子發表於2019-03-27

最近遇到一個問題是這樣的:

 A機房沒有NTP伺服器,需要使用B機房的NTP伺服器,但是一般情況下跨機房是不允許訪問的,但是經過測試NTP伺服器的IP是可以PING通的,於是我們需要測試NTP服務是否可用。

 A機房全部都是生產環境伺服器沒有測試伺服器,並且我所管理的伺服器都是不準的,與北京標準時間相差十分鐘左右,為了不影響叢集的執行,我還不能直接使用ntpdate使用去更新作業系統的時間,順便驗證一下NTP伺服器是否可用。

無意間我看到了一個文件說使用ntpdate命令,加上 -d 引數就可以驗證。

首先我們使用man命令檢視一下ntpdate的引數說明

       -d      Enable the debugging mode, in which ntpdate will go through all the  steps,  but
               not  adjust  the local clock. Information useful for general debugging will also
               be printed.

-d  引數 開啟除錯模式,ntpdate命令將完成所有的步驟,但是不改變本地的時間,一些有用的資訊將會顯示出來。

於是我提心吊膽的使用了這個命令,結果達到了預期的效果,大概的效果就是這樣的。

[root@centos6 ~]# ntpdate -d ntp1.aliyun.com
27 Mar 22:04:38 ntpdate[1049]: ntpdate 4.2.6p5@1.2349-o Wed Dec 19 20:22:35 UTC 2018 (1)
Looking for host ntp1.aliyun.com and service ntp
host found : 120.25.115.20
transmit(120.25.115.20)
receive(120.25.115.20)
transmit(120.25.115.20)
receive(120.25.115.20)
transmit(120.25.115.20)
receive(120.25.115.20)
transmit(120.25.115.20)
receive(120.25.115.20)
server 120.25.115.20, port 123
stratum 2, precision -25, leap 00, trust 000
refid [120.25.115.20], delay 0.07951, dispersion 0.00424
transmitted 4, in filter 4
reference time:    e046016e.965c7e00  Wed, Mar 27 2019 22:04:30.587
originate timestamp: e0460177.12bce60a  Wed, Mar 27 2019 22:04:39.073
transmit timestamp:  e0460177.04f47dc5  Wed, Mar 27 2019 22:04:39.019
filter delay:  0.09312  0.07951  0.08475  0.09390 
         0.00000  0.00000  0.00000  0.00000 
filter offset: 0.004349 0.010768 0.007720 0.019682
         0.000000 0.000000 0.000000 0.000000
delay 0.07951, dispersion 0.00424
offset 0.010768
27 Mar 22:04:39 ntpdate[1049]: adjust time server 120.25.115.20 offset 0.010768 sec


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2317695/viewspace-2639523/,如需轉載,請註明出處,否則將追究法律責任。

相關文章