設定用戶端

Apple macOS (OS X)

  1. 開啟 [系統偏好設定]。
  2. 選擇「日期和時間」面板。
  3. 按一下鎖頭即可進行變更。
  4. 輸入密碼。
  5. 選取 [日期和時間] 時間。
  6. 在「自動設定日期和時間」旁邊的方塊中,輸入 time.google.com

Cisco IOS 和 NX-OS

router# config t
Enter configuration commands, one per line.  End with CNTL/Z.
router(config)# no ntp server
router(config)# ntp server time1.google.com
router(config)# ntp server time2.google.com
router(config)# ntp server time3.google.com
router(config)# ntp server time4.google.com
router(config)# copy running-config startup-config

Google Compute Engine

雖然您可以在 Compute Engine 上使用 Google Public NTP,但這樣能從私有雲伺服器獲得更好的效能,而這些伺服器會同時使用相同的煙霧。請按照這些指示進行。

杜松

NTP 是在 [edit system ntp] 階層層級設定:

system {
    ntp {
        server time1.google.com;
        server time2.google.com;
        server time3.google.com;
        server time4.google.com;
    }
}

Linux

ntpdchrony

  1. 使用您慣用的文字編輯器,編輯 /etc/ntp.conf/etc/chrony/chrony.conf (視您使用的服務而定)。
  2. 移除任何以 server 開頭的行或為註解加上註解,以避免機器嘗試混用氣味和非清味的伺服器。
  3. 加入以下幾行內容:

    server time1.google.com iburst
    server time2.google.com iburst
    server time3.google.com iburst
    server time4.google.com iburst
    
  4. 使用 sudo service ntp reloadsudo service chrony force-reload 重新啟動 NTP/ Chrony Daemon。

systemd-timesyncd

  1. 編輯「/etc/systemd/timesyncd.conf
  2. [Time] 區塊的內容設為:

    [Time]
    NTP=
    FallbackNTP=time.google.com
    

    如果將 NTP= 取消註解並指派給空白字串,系統會重設 NTP 伺服器清單,包括每個介面指派作業。這麼做可避免不小心在未取樣或未發生時間的伺服器之間移動。 將 Google Public NTP 設定為備用伺服器,會將其設定為唯一的 NTP 伺服器。

  3. 使用「systemctl restart systemd-timesyncd.service」做為具有適當權限的使用者,重新啟動 systemd-timesyncd

  4. 確認系統正透過 timedatectl show-timesync | grep ServerName 使用 Google Public NTP。如果成功設定,輸出結果將會顯示:ServerName=time.google.com

Microsoft Windows

  1. 開啟控制台。
  2. 按一下「日期和時間」圖示。
  3. 選擇 [網際網路時間] 標籤。(如果您的電腦屬於某個網域,則無法使用這個選項。在這種情況下,它會與網域控制器同步處理時間。您可以調整控制器設定,使用 Google Public NTP)。
  4. 按一下 [變更設定...] 按鈕。
  5. 勾選 [與網際網路時間伺服器進行同步處理] 方塊。
  6. 在「Server:」旁邊輸入 time.google.com

Microsoft Windows Server

按照 Microsoft's 操作說明更新登錄檔。