ntp 服务(ntp服务器的搭建)

服务器教程 建站分享 2年前 (2023-06-25) 431次浏览

文章摘要:ntp 服务(ntp服务器的搭建)

NTP服务器配置部署方法: 1、使用cp命令备份ntp服务器配置文件; 2、使用egrep命令优化配置文件; […]

NTP服务器配置部署方法: 1、使用cp命令备份ntp服务器配置文件; 2、使用egrep命令优化配置文件; 3、使用vim命令编辑配置文件,包括配置文件文本,允许内容 同步网络上其他机器的时间,定义使用的上游ntp服务器,定义服务器时间; 4.启动NTP服务器; 5.测试服务器和客户端的时间是否同步。

具体操作如下:

1.备份ntp服务器配置文件

cp /etc/ntp.conf /etc/ntp.conf.bak

ll /etc/ntp.conf*

< /blockquote2.精简优化配置文件

egrep -v "^$|# " /etc/ntp.conf.bak >/etc/ntp.conf

3.编辑配置文件

vim /etc/ntp.conf

配置文件文本

driftfile /var/lib/ ntp/drift

restrict default kod nomodify notrap nopeer noquery

restrict -6 默认kod nomodify notrap nopeer noquery

restrict 127.0.0.1

restrict -6 ::1

允许内网其他机器同步时间

restrict 172.16.1.0 mask 255.255.255.0 nomodify notr

#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服务器,并替换原来的注释

服务器ntp1.aliyun.com

服务器time1.aliyun. com

允许上层时间服务器主动修改本地时间

restrict time1.aliyun.com nomodify notrap noquery

限制 ntp1。 aliyun.com nomodify notrap noquery

当外部时间服务器不可用时,使用本地时间作为时间服务

server 127.127.1.0

fudge 127.127.1.0 stratum 10

includefile /etc/ntp/crypto/pw

keys /etc/ntp/keys

4.启动NTP服务器

Centos6: /etc/init.d/ntpd start centos7: systemctl start ntpd

ntpq -p show node list

5.客户端时间同步测试

ntpdate 10.0.0.111 (ntp server)


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:ntp 服务(ntp服务器的搭建)
文章链接:http://www.7966.org/post/25656.html
转载请注明出处

喜欢 (0)