- 服務(wù)端配置
driftfile /var/lib/ntp/drift
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict -6 ::1
# 添加以下幾行
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap # 只允許192.168.1.0網(wǎng)段進(jìn)行時(shí)間同步
server time1.aliyun.com # ntp 服務(wù)器同步時(shí)間的上游服務(wù)器地址
server time2.aliyun.com
server time3.aliyun.com
server time4.aliyun.com
server time5.aliyun.com
server time6.aliyun.com
server time7.aliyun.com
logfile /var/log/ntp.log # 日志文件位置
# 添加結(jié)束
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys
執(zhí)行以下命令使硬件時(shí)間和系統(tǒng)時(shí)間一致
hwclock --systohc
- 開啟NTP服務(wù)善镰,查看NTP服務(wù)狀態(tài)(服務(wù)啟動(dòng)10分鐘左右后再查看)
* 號(hào)表示正在使用的上游NTP服務(wù)器,+ 號(hào)表示已經(jīng)連接上的備用的NTP服務(wù)器
- 在客戶端添加定時(shí)任務(wù)年枕,每半小時(shí)執(zhí)行一次時(shí)間同步
# cat /etc/crontab
*/30 * * * * root /usr/sbin/ntpdate 192.168.1.14 &>/dev/null && /sbin/hwclock --systohc &>/dev/null