系统相关
首页 > 系统相关> > linux下的时钟同步

linux下的时钟同步

作者:互联网

1.安装ntp

2.自动同步时间

3.开启本地ntp服务器

#=========权限控制================
restrict default kod nomodify notrap nopeer noquery               拒绝IPV4用户
restrict -6 default kod nomodify notrap nopeer noquery            拒绝IPV6用户
restrict 210.72.145.44                                   授权国家授时中心服务器访问本地NTP
restrict 133.100.11.8                                    授权133.100.11.8访问本非NTP
restrict 127.0.0.1
restrict -6 ::1
restrict 192.168.100.100 mask 255.255.255.0 nomodify   本地网段授权访问
#=========源服务器================
server cn.ntp.org.cn prefer                       指定上级更新时间服务器,优先使用这个地址
#=========差异分析================
driftfile  /var/lib/ntp/drift
keys       /etc/ntp/keys

4.客户端同步时间

错误如上图:

方法1:关闭ntp防火墙   

方法2:将123/udp端口放行 firewall-cmd --zone=public --add-port=123/udp  --permanent  

 

标签:同步,cn,--,ntp,restrict,linux,服务器,nomodify,时钟
来源: https://blog.csdn.net/chenzhiweiguang/article/details/123236510