service.support
UID 14
精華
0
積分 0
帖子 523
閱讀權限 200
註冊 2006-10-2
狀態 離線
|
回復 #1 的帖子
範例主機為 192.168.8.109, 並且開放 192.168.8.0/24 網域的主機可與範例主機 sync 時間
需注意, ntp server 使用的 Port 為 123, 使用 UDP 協定, 若防火牆有設定阻檔, 請開放 123 UDP port
1. 修改 /etc/ntp.conf
(將全部內容清掉, 只保留下列設定)
server 220.130.158.52 ## time.stdtime.gov.tw 上層 ntp server
restrict default notrust lowpriotrap nopeer nomodify
restrict 220.130.158.52 mask 255.255.255.0 nopeer nomodify
restrict 192.168.8.0 mask 255.255.255.0 # local hosts
## 應該修改成您的網段, 如果有其它的網段, 可用相同的方式增加
restrict 127.0.0.1 mask 255.255.255.255 # local config
2. 將 xntpd 加到 run leve 3 , 重開機後才能繼續執行
#chkconfig --add xntpd
3. 啟動 xntpd 服務
# service xntpd start
4. 大約要幾分鐘後才會生效, 在範例主機上利用 ntptrace 測試
(時間未到會出現下面的情形)
[root@linux109 root]#ntptrace 192.168.8.109
linux109.local.realinux.com: stratum 16, offset 0.000061, synch distance 1.00024
0.0.0.0: *Timeout*
(當與上層的 ntp server 同步後, 會出現下面的情形, 才是正確的)
[root@linux236 root]#ntptrace 192.168.8.109
linux109.local.realinux.com: stratum 3, offset -0.044761, synch distance 1.02144
220-130-158-52.HINET-IP.hinet.net: stratum 2, offset 0.000138, synch distance 0.09807
220-130-158-50.HINET-IP.hinet.net: stratum 1, offset 0.054230, synch distance 1.00000, refid 'IRIG'
5. 大約要幾分鐘後才會生效, 可以從別台主機來測試, 利用 ntpdate 指令:
[root@linux236 root]#ntpdate 192.168.8.109
24 May 19:11:50 ntpdate[12494]: adjust time server 192.168.8.109 offset -0.0204
|
|