终于还是要搭建ntp服务器,我的架构是一台服务器可以上公网,其他内网服务器不能。
ntp服务器是C/S架构的时间同步服务器。
方案:
公网服务器搭建ntp服务器端
其他服务器为客户端
公网服务器:
[[email protected] ~]# yum install ntp
配置/etc/ntp.conf
[[email protected] ~]# more /etc/ntp.conf |grep -v ^$|grep -v ^#
driftfile /var/lib/ntp/drift
restrict default ignore nomodify notrap nopeer noquery # ignore表示拒绝所有主机
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
# 中国这边最活跃的时间服务器 : http://www.pool.ntp.org/zone/cn
server 210.72.145.44 perfer # 中国国家受时中心
server 202.112.10.36 # 1.cn.pool.ntp.org
server 59.124.196.83 # 0.asia.pool.ntp.org
# 允许上层时间服务器主动修改本机时间
restrict 210.72.145.44 nomodify notrap noquery
restrict 202.112.10.36 nomodify notrap noquery
restrict 59.124.196.83 nomodify notrap noquery
# 外部时间服务器不可用时,以本地时间作为时间服务
server 127.127.1.0 # local clock
fudge 127.127.1.0 stratum 10
includefile /etc/ntp/crypto/pw
客户机:
ntpdate -u 192.168.1.1(服务器内网地址)
计划任务:
0 13 * * * ntpdate -u 192.168.1.1