ntp同步局域网下的时间

2020-09-20  本文已影响0人  攻城老狮

时间服务器配置

  1. 查看ntp是否安装
rpm -qa|grep ntp
  1. 修改ntp配置文件
vim /etc/ntp.conf
# 打开注释,并改为自己网段ip
restrict 192.168.44.0 mask 255.255.255.0 nomodify notrap
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
# 在文件末尾添加
server 127.127.1.0
fudge 127.127.1.0 stratum 10
  1. 修改ntpd文件
vim /etc/sysconfig/ntpd
SYNC_HWCLOCK=yes
  1. 重启ntpd服务
service ntpd restart

其他服务器配置

  1. 停止该服务器的ntpd服务
service ntpd stop
  1. 修改本机时间,作为测试
date -s '2019-11-11 10:30:20'
  1. 同步时间
ntpdate 时间服务器ip地址
上一篇 下一篇

猜你喜欢

热点阅读