Chrony时间同步服务配置

1、服务端配置

yum -y install chrony
cp /etc/chrony.conf{,.bak}

cat > /etc/chrony.conf << EOF
##外部NTP服务器
server ntp.aliyun.com iburst
server cn.ntp.org.cn iburst
server ntp.shu.edu.cn iburst

driftfile /var/lib/chrony/drift
makestep 1.0 3
rtcsync

##允许同步时间的客户端网段
allow 10.0.0.0/16
allow 192.168.0.0/24

##即使未与时间源同步也可以使用本机提供时间
#local stratum 10

bindcmdaddress 127.0.0.1
bindcmdaddress ::1
keyfile /etc/chrony.keys
commandkey 1
generatecommandkey
noclientlog
logchange 0.5
logdir /var/log/chrony
EOF

systemctl enable --now chronyd

2、客户端配置

yum -y install chrony

sed -i 's/server/#server/' /etc/chrony.conf
echo "server 192.168.0.252" >> /etc/chrony.conf

systemctl enable --now chronyd

3、查看时间同步源

chronyc sources -v
chronyc sourcestats -v
posted @ 2020-12-02 15:12  wanghongwei-dev  阅读(222)  评论(0编辑  收藏  举报