标签:pad 单位 默认 ntp.conf Fix 时间 比较 文件 实时同步
1 [root@border_ntp ~]# rpm -qa | grep ntp 2 [root@border_ntp ~]# yum -y install ntp #安装ntp服务
1 [root@border_ntp ~]# vi /etc/ntp.conf 2 driftfile /var/lib/ntp/drift 3 #定义与上级时间服务器联系时所花费的时间,记录在driftfile参数后面的文件内。 4 driftfile /var/lib/ntp/drift 5 pidfile /var/run/ntpd.pid #进程pid文件 6 logfile /var/log/ntp.log #开启日志记录 7 #定义与上级时间服务器联系时所花费的时间,记录在driftfile参数后面的文件内。 8 9 restrict default nomodify notrap nopeer noquery #默认拒绝所有NTP连接 10 restrict 127.0.0.1 11 restrict ::1 #开启本地授权 12 13 restrict 172.24.8.72 mask 255.255.255.255 nomodify notrap #添加IN-NTP Server允许校时 14 restrict 172.24.8.73 mask 255.255.255.255 nomodify notrap #添加IN-NTP Server允许校时 15 16 #server 0.cn.pool.ntp.org 17 #server 1.asia.pool.ntp.org 18 #restrict 0.cn.pool.ntp.org nomodify notrap noquery 19 #restrict 1.asia.pool.ntp.org nomodify notrap noquery 20 #添加Border-NTP的上一级时间中心,即亚洲授时中心服务器,此处建议注释,转而采用国内阿里云时钟,相对网络更稳定,如下。 21 server ntp1.aliyun.com iburst minpoll 4 maxpoll 10 22 restrict ntp1.aliyun.com nomodify notrap nopeer noquery 23 server ntp2.aliyun.com iburst minpoll 4 maxpoll 10 24 restrict ntp2.aliyun.com nomodify notrap nopeer noquery 25 #允许阿里授时中心修改本地时间。 26 server 127.127.1.0 27 fudge 127.127.1.0 stratum 4 28 #当授时不可用,采用本地时间,stratum级别为4。
1 [root@border_ntp ~]# chown ntp:ntp /var/log/ntp.log 2 [root@border_ntp ~]# chcon -t ntpd_log_t /var/log/ntp.log 3 [root@border_ntp ~]# firewall-cmd --permanent --add-service=ntp 4 [root@border_ntp ~]# firewall-cmd --reload 5 [root@border_ntp ~]# setenforce 0
1 [root@border_ntp ~]# systemctl start ntpd.service 2 [root@border_ntp ~]# systemctl enable ntpd.service
1 [root@border_ntp ~]# ntpq -np
1 [root@in_ntp01 ~]# rpm -qa | grep ntp #查看是否安装ntp 2 [root@in_ntp01 ~]# yum -y install ntp #安装ntp服务
1 [root@in_ntp01 ~]# vi /etc/ntp.conf 2 driftfile /var/lib/ntp/drift 3 pidfile /var/run/ntpd.pid #进程pid文件 4 logfile /var/log/ntp.log #开启日志记录 5 #定义与上级时间服务器联系时所花费的时间,记录在driftfile参数后面的文件内。 6 tinker stepout 0 7 restrict default ignore #默认拒绝所有连接 8 restrict -6 default ignore #默认拒绝所有ipv6连接 9 restrict 127.0.0.1 10 restrict -6 ::1 #开启本地授权 11 12 restrict 172.24.8.0 mask 255.255.255.0 nomodify notrap #允许局域网内网段校时 13 14 restirct 172.24.8.71 nomodify notrap nopeer noquery 15 #允许根据上一级时间修改本地时间 16 server 172.24.8.71 iburst minpoll 3 maxpoll 3 prefer 17 #添加上一层Border-NTP服务地址 18 19 #peer 172.24.8.72 iburst minpoll 4 maxpoll 6 20 #peer 172.24.8.73 iburst minpoll 4 maxpoll 6 21 #服务器接收其他服务器的地址,同时也会为其他设备提供NTP服务器,即互相同步,用于在孤岛环境中,若同时具备上层时钟,可注释掉。 22 23 server 127.127.1.0 24 fudge 127.127.1.0 stratum 8 #上一级不可用,使用本地时间,stratum为8
1 [root@in_ntp01 ~]# systemctl start ntpd 2 [root@in_ntp01 ~]# systemctl enable ntpd
1 [root@in_ntp01 ~]# ntpq -np
1 [root@client ~]# rpm -qa | grep ntp #查看是否安装ntp 2 [root@client ~]# yum -y install ntp #安装ntp服务
1 [root@client ~]# vi /etc/ntp.conf 2 driftfile /var/lib/ntp/drift 3 pidfile /var/run/ntpd.pid #进程pid文件 4 logfile /var/log/ntp.log #开启日志记录 5 #定义与上级时间服务器联系时所花费的时间,记录在driftfile参数后面的文件内。 6 7 tinker panic 600 8 #当client和server时差在600秒以内,使用渐变调整client时间,超过600秒,ntpd进程自动终止,需要手动进行调整。 9 restrict default ignore #默认拒绝所有连接 10 restrict -6 default ignore #默认拒绝所有ipv6连接 11 restrict 127.0.0.1 #开启本地授权 12 13 restrict 172.24.8.72 nomodify notrap noquery #允许根据上一级时间修改本地时间 14 restrict 172.24.8.73 nomodify notrap noquery #允许根据上一级时间修改本地时间 15 16 server 172.24.8.72 iburst minpoll 4 maxpoll 6 prefer 17 server 172.24.8.73 iburst minpoll 4 maxpoll 6
1 [root@client ~]# systemctl start ntpd 2 [root@client ~]# systemctl enable ntpd
1 [root@client ~]# ntpq -np
1 [root@client ~]# ntpstat
标签:pad 单位 默认 ntp.conf Fix 时间 比较 文件 实时同步
原文地址:https://www.cnblogs.com/itzgr/p/10342262.html