实现私有时间服务实战
在同一个网络内,如果有多个需要进行时间同步的服务器,则我们可以在内网自建NTP Server,
这样可以节约访问外网的网络资源;另一方面,如果外网不可用,则至少可以保证,内网的NTP服务还
是可用的。
实现
zeng主机 角色
系统版本 备注
10.0.0.157 NTP server Rocky8.6
配置成为服务端,为内网提供NTP时间同步服务
10.0.0.172 NTP client Centos7
将本机的server 指向157,从157上同步时间
10.0.0.167 NTP client Ubuntu2204
将本机的server 指向157,从157上同步时间
服务端配置
Centos7客户端配置
Ubuntu客户端配置
[root@rocky86 ~]# vim /etc/chrony.conf
allow 10.0.0.0/24 #允许10.0.0 网段的主机将本机作为时间同步服务器
local stratum 10 #允许本机在不能与外网同步的情况下,还能提供服务
#重启服务
[root@rocky86 ~]# systemctl restart chronyd.service
#添加 server,生产环境下至少两台,保证高可用
[root@centos7 ~]# vim /etc/chrony.conf
server 10.0.0.157 iburst
#重启服务
[root@rocky86 ~]# systemctl restart chronyd.service
#添加 server,生产环境下至少两台,保证高可用
root@ubuntu22:~# vim /etc/chrony/chrony.conf
server 10.0.0.157 iburst
#重启服务
root@ubuntu22:~# systemctl restart chronyd.service
标签:10.0,服务,私有,NTP,server,简单,本机,root From: https://www.cnblogs.com/z613171/p/16881799.html