linux 跟内网某台机器同步时间

ps:需求:
确定时间同步服务器: node01
(node02 node03 都去node01同步时间)
服务器设置

​1、确保时间服务器的ntpd服务是开启的

​ 2、修改第一个配置文件

​ vim /etc/ntp.conf

​ 添加如下内容

restrict 10.32.176.0 mask 255.255.255.0 nomodify notrap

​ server 127.127.1.0 # localclock

​ fudge 127.127.1.0 stratum 10

​ 注释掉如下内容

​ #server0.centos.pool.ntp.org
​ #server1.centos.pool.ntp.org
​ #server2.centos.pool.ntp.org
​ #server3.centos.pool.ntp.org

3、修改第二个配置文件

​ vi /etc/sysconfig/ntpd

​ 添加如下内容

​ SYNC_HWLOCK=yes

​ 4、重启ntpd

systemctl restart ntpd 

​ 5 、在node02 node03节点上执行同步

​ntpdate node01
上一篇:02-Linux系统的安装


下一篇:the NTP socket is in use的解决办法