CentOS部署NTP服务器

1、首先需要确认ntp和ntpdate已经正确安装

[root@Anhui ~]# rpm -qa | grep ntp
ntp-4.2.6p5-29.el7.centos.2.x86_64
ntpdate-4.2.6p5-29.el7.centos.2.x86_64

如果没有安装的话,使用yum安装

[root@Anhui ~]# yum install -y ntp ntpdate

 

2、修改ntp的配置文件

[root@Anhui ~]# vim /etc/ntp.conf

将默认的时间服务器注释掉

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

修改成中国境内常用的NTP服务器:国内外公共NTP服务器查询

或者改成下面四个

server ntp.aliyun.com iburst
server ntp.tencent.com iburst
server ntp.ntsc.ac.cn iburst
server cn.ntp.org.cn iburst

 

3、启动ntp服务器并设置开机自启动

[root@Anhui ~]# systemctl start ntpd
[root@Anhui ~]# systemctl enable ntpd

 

4、验证ntp是否同步

[root@Anhui ~]# ntpq -p
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
*203.107.6.88    100.107.25.114   2 u  612 1024  377   16.577   -6.006   3.026
+106.55.184.199  9.20.184.92      2 u  339 1024  367   26.227   -4.858   1.746
+114.118.7.163   123.139.33.3     2 u 1994 1024  256   27.162   62.788  27.184
-14.29.218.92    LOCAL(1)        10 u  50m 1024    4   28.073  -31.924   0.075

 

5、放行防火墙udp的123端口,给局域网内其他设备同步时间

[root@Anhui ~]# firewall-cmd --permanent --zone=public --add-port=123/udp
[root@Anhui ~]# firewall-cmd --reload

 

6、ntp客户端配置

同样安装ntp和ntpdate两个rpm包

修改ntp配置文件

#配置允许NTP Server时间服务器主动修改本机的时间
restrict 172.16.1.202 nomodify notrap noquery
#注释掉其他时间服务器
#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
#配置时间服务器为本地搭建的NTP Server服务器
server 172.16.1.202

手动与ntp服务器同步时间

ntpdate -u 172.16.1.202

使用下面的命令检查同步状态

[root@localhost ~]# ntpq -p
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
*172.16.1.202    203.107.6.88     3 u  120 1024  377    0.148   -4.832   6.634

 

文章参考:TSE先生 大佬的博客

THE END
分享
二维码
海报
CentOS部署NTP服务器
1、首先需要确认ntp和ntpdate已经正确安装 [root@Anhui ~]# rpm -qa | grep ntp ntp-4.2.6p5-29.el7.centos.2.x86_64 ntpdate-4.2.6p5-29.el7.centos.2.x86_……