ntp服务器如何进行配置和搭建呢?

2025-05-27 0 22

互联网时代,不同类型服务器作用有所差异,其中NTP服务器是用来使计算机时间同步化的一种协议,它可以使计算机对其服务器或时钟源做同步化,它可以提供高精准度的时间校正,且可介由加密确认的方式来防止恶毒的协议攻击,那么ntp服务器要怎么去配置和部署呢?

ntp服务器如何进行配置和搭建呢?

ntp服务器如何进行配置和部署呢?

一.NTP介绍

NTP(Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协议。它的用途是把计算机的时钟同步到世界协调时UTC,其精度在局域网内可达0.1ms,在互联网上绝大多数的地方其精度可以达到1-50ms,NTP服务器就是利用NTP协议提供时间同步服务的。

二.NTP服务器安装

1.查看本机系统版本

cat /etc/redhat-release

2.查看本机NTP软件包

rpm -qa ntp

三.NTP服务器配置

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

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

ll /etc/ntp.conf*

2.精简优化配置文件

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 default 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服务器,将原来的注释

server ntp1.aliyun.com

server time1.aliyun.com

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

restrict time1.aliyun.com nomodify notrap noquery

restrict 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

四.启动NTP服务器

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

ntpq -p 显示节点列表

五.客户端时间同步测试

ntpdate 10.0.0.111(ntp服务器)

以上则是本文的全部内容,有需要的朋友可以参考下

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 行业资讯 ntp服务器如何进行配置和搭建呢? https://www.kuaiidc.com/68657.html

相关文章

发表评论
暂无评论