ntp Server端:
修改:将restrict default kod nomodify notrap nopeer noquery注释
添加restrict 192.168.2.0/24 nomodify(地址段为你需要客户端访问的地址段)
将这3行注释
#server 0.centos.pool.ntp.org
#server 1.centos.pool.ntp.org
#server 2.centos.pool.ntp.org
添加 server 210.72.145.44 prefer(做时间校验)
配置文件 /etc/ntp.conf 中取消对如下两行的注释
server127.127.1.0# local clock
fudge127.127.1.0 stratum 10
第一次写的时候就没加,问题很严重
Server已经配置好了
可以通过tnpq -p去查看,如图
需要等一会,ntp时间同步服务器设置需要时间,大概需要3-5分钟吧
然后可以再客户端直接使用命令ntpdate 192.168.2.2(Server端IP)
如图:
ntp服务器没设置中就回出现no server,正常时就是下边的样子
可以写进crontab里,echo “* */1 * * * ntpdate 192.168.2.2;hwclock -w”>>/etc/crontab