• 安装
sudo yum -y install ntp
  • 设置/etc/ntp.conf
# 允许同步的的IP范围
restrict 10.150.20.0 mask 255.255.255.0 nomodify notrap

#增加同步的服务器
server 0.asia.pool.ntp.org iburst
server 1.asia.pool.ntp.org iburst
server 2.asia.pool.ntp.org iburst
server 3.asia.pool.ntp.org iburst
  • 防火墙设置
sudo firewall-cmd --permanent --add-service=ntp
sudo firewall-cmd --reload
  • 启动服务
sudo systemctl enable ntpd
sudo systemctl start ntpd
  • 查看工作情况
ntpq -p

Related content