热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

CentOS7-ntp时间同步服务器

NTP时钟同步方式说明NTP在linux下有两种时钟同步方式,分别为直接同步和平滑同步:直接同步使用ntpdate命令进行同步,直接进行时间变更。如果服务器上存在一个12点运行的任务,当前

NTP时钟同步方式说明


NTPlinux下有两种时钟同步方式,分别为直接同步和平滑同步:

直接同步

使用ntpdate命令进行同步,直接进行时间变更。如果服务器上存在一个12点运行的任务,当前服务器时间是13点,但标准时间时11点,使用此命令可能会造成任务重复执行。因此使用ntpdate同步可能会引发风险,因此该命令也多用于配置时钟同步服务时第一次同步时间时使用。

平滑同步

使用ntpd进行时钟同步,可以保证一个时间不经历两次,它每次同步时间的偏移量不会太陡,是慢慢来的,这正因为这样,ntpd平滑同步可能耗费的时间比较长。

 

标准时钟同步服务

http://www.pool.ntp.org/zone/cn网站包含全球的标准时间同步服务,也包括对中国时间的同步,对应的URLcn.pool.ntp.org,在其中也描述了ntp配置文件中的建议写法:

server1.cn.pool.ntp.org

server3.asia.pool.ntp.org

server2.asia.pool.ntp.org


2. 环境情况

准备两台电脑,分别为:

IP                 用途

10.0.0.202    ntpd服务器,用于与外部公共ntpd同步标准时间

10.0.0.203    ntpd客户端,用于与ntpd同步时间

3. 检查服务是否安装

 

使用rpm检查ntp包是否安装

[root@localhostkevin]# rpm -q ntp

ntp-4.2.6p5-19.el7.centos.3.x86_64

如果已经安装则略过此步,否则使用yum进行安装,并设置系统开机自动启动并启动服务

[root@localhostkevin]# yum -y install ntp

[root@localhostkevin]# systemctl enable ntpd

[root@localhostkevin]# systemctl start ntpd


4. 设置ntp服务器: 10.0.0.202

配置前先使用命令:ntpdate -u cn.pool.ntp.org,同步服务器

修改/etc/ntp.conf文件,红色字体是修改的内容

# For more information about thisfile, see the man pages

# ntp.conf(5), ntp_acc(5),ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5).

 

driftfile /var/lib/ntp/drift

 

# Permit time synchronization withour time source, but do not

# permit the source to query ormodify the service on this system.

restrict default nomodify notrapnopeer noquery

 

# Permit all access over the loopbackinterface.  This could

# be tightened as well, but to do sowould effect some of

# the administrative functions.

restrict 127.0.0.1

restrict ::1

 

# Hosts on local network are lessrestricted.

#restrict 192.168.1.0 mask255.255.255.0 nomodify notrap

restrict 10.0.0.0 mask255.255.255.0 nomodify notrap

# Use public servers from thepool.ntp.org project.

# Please consider joining the pool(http://www.pool.ntp.org/join.html).

#server0.centos.pool.ntp.org iburst

#server1.centos.pool.ntp.org iburst     ###注意此处四行要注释掉

#server2.centos.pool.ntp.org iburst

#server3.centos.pool.ntp.org iburst

 

server 2.cn.pool.ntp.org

server 1.asia.pool.ntp.org

server 2.asia.pool.ntp.org

 

#broadcast 192.168.1.255 autokey     # broadcast server

#broadcastclient            # broadcast client

#broadcast 224.0.1.1 autokey       # multicast server

#multicastclient 224.0.1.1        # multicast client

#manycastserver 239.255.254.254           # manycast server

#manycastclient 239.255.254.254autokey # manycast client

restrict 2.cn.pool.ntp.orgnomodify notrap noquery

restrict 1.asia.pool.ntp.orgnomodify notrap noquery

restrict 2.asia.pool.ntp.orgnomodify notrap noquery

 

server 127.0.0.1 # localclock

fudge 127.0.0.1 stratum 10

 

 

 

# Enable public key cryptography.

#crypto

 

includefile /etc/ntp/crypto/pw

 

# Key file containing the keys andkey identifiers used when operating

# with symmetric key cryptography.

keys /etc/ntp/keys

 

# Specify the key identifiers whichare trusted.

#trustedkey 4 8 42

 

# Specify the key identifier to usewith the ntpdc utility.

#requestkey 8

 

# Specify the key identifier to usewith the ntpq utility.

#controlkey 8

 

# Enable writing of statistics records.

#statistics clockstats cryptostatsloopstats peerstats

 

# Disable the monitoring facility toprevent amplification attacks using ntpdc

# monlist command when defaultrestrict does not include the noquery flag. See

# CVE-2013-5211 for more details.

# Note: Monitoring will not bedisabled with the limited restriction flag.

disable monitor

[root@lb01 ~]#

修改完成后重启ntpd服务systemctlrestart ntpd

使用ntpq -p 查看网络中的NTP服务器,同时显示客户端和每个服务器的关系

使用ntpstat 命令查看时间同步状态,这个一般需要5-10分钟后才能成功连接和同步。所以,服务器启动后需要稍等下:

刚启动的时候,一般是:

# ntpstat

unsynchronised

 time server re-starting

  polling server every 64 s

连接并同步后:

# ntpstat

synchronised to NTP server(202.112.10.36) at stratum 3

  time correct to within 275 ms

  polling server every 256 s


5. 设置ntp客户端: 10.0.0.203

安装ntp服务并设置为自动启动,和前面的设置方式相同。然后编辑/etc/ntp.conf文件,红色字体为变化的内容。

# For more information about thisfile, see the man pages

# ntp.conf(5), ntp_acc(5),ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5).

 

driftfile /var/lib/ntp/drift

 

# Permit time synchronization withour time source, but do not

# permit the source to query ormodify the service on this system.

restrict default nomodify notrapnopeer noquery

 

# Permit all access over the loopbackinterface.  This could

# be tightened as well, but to do sowould effect some of

# the administrative functions.

restrict 127.0.0.1

restrict ::1

 

# Hosts on local network are lessrestricted.

#restrict 192.168.1.0 mask255.255.255.0 nomodify notrap

 

# Use public servers from thepool.ntp.org project.

# Please consider joining the pool(http://www.pool.ntp.org/join.html).

#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

server 10.0.0.202

restrict 10.0.0.202  nomodify notrap noquery

 

server 127.0.0.1

fudge 127.0.0.1 stratum 10

 

 

#broadcast 192.168.1.255 autokey     # broadcast server

#broadcastclient            # broadcast client

#broadcast 224.0.1.1 autokey       # multicast server

#multicastclient 224.0.1.1        # multicast client

#manycastserver 239.255.254.254           # manycast server

#manycastclient 239.255.254.254autokey # manycast client

 

# Enable public key cryptography.

#crypto

 

includefile /etc/ntp/crypto/pw

 

# Key file containing the keys andkey identifiers used when operating

# with symmetric key cryptography.

keys /etc/ntp/keys

 

# Specify the key identifiers whichare trusted.

#trustedkey 4 8 42

 

# Specify the key identifier to usewith the ntpdc utility.

#requestkey 8

 

# Specify the key identifier to usewith the ntpq utility.

#controlkey 8

 

# Enable writing of statisticsrecords.

#statistics clockstats cryptostatsloopstats peerstats

 

# Disable the monitoring facility toprevent amplification attacks using ntpdc

# monlist command when defaultrestrict does not include the noquery flag. See

# CVE-2013-5211 for more details.

# Note: Monitoring will not bedisabled with the limited restriction flag.

disable monitor

[root@docker02 ~]#

重启ntpd服务

systemctl restart ntpd

启动后,查看同步情况,这个步骤一般根据服务器配置,同步时间不同,我的虚拟机同步为约两分钟

 ntpq -p

 [root@lb01 opt]# ntpstat

synchronised to NTP server(10.0.0.202) at stratum 4

  time correct to within 1243 ms

  polling server every 64 s


本文出自 “蓝叶子_架构” 博客,请务必保留此出处http://dellinger.blog.51cto.com/12445009/1947889


推荐阅读
  • VScode格式化文档换行或不换行的设置方法
    本文介绍了在VScode中设置格式化文档换行或不换行的方法,包括使用插件和修改settings.json文件的内容。详细步骤为:找到settings.json文件,将其中的代码替换为指定的代码。 ... [详细]
  • 展开全部下面的代码是创建一个立方体Thisexamplescreatesanddisplaysasimplebox.#Thefirstlineloadstheinit_disp ... [详细]
  • C++字符字符串处理及字符集编码方案
    本文介绍了C++中字符字符串处理的问题,并详细解释了字符集编码方案,包括UNICODE、Windows apps采用的UTF-16编码、ASCII、SBCS和DBCS编码方案。同时说明了ANSI C标准和Windows中的字符/字符串数据类型实现。文章还提到了在编译时需要定义UNICODE宏以支持unicode编码,否则将使用windows code page编译。最后,给出了相关的头文件和数据类型定义。 ... [详细]
  • 开发笔记:实验7的文件读写操作
    本文介绍了使用C++的ofstream和ifstream类进行文件读写操作的方法,包括创建文件、写入文件和读取文件的过程。同时还介绍了如何判断文件是否成功打开和关闭文件的方法。通过本文的学习,读者可以了解如何在C++中进行文件读写操作。 ... [详细]
  • 本文讨论了在openwrt-17.01版本中,mt7628设备上初始化启动时eth0的mac地址总是随机生成的问题。每次随机生成的eth0的mac地址都会写到/sys/class/net/eth0/address目录下,而openwrt-17.01原版的SDK会根据随机生成的eth0的mac地址再生成eth0.1、eth0.2等,生成后的mac地址会保存在/etc/config/network下。 ... [详细]
  • #include<iostream>usingnamespacestd;intmain(){HereIseperatemynumberbe ... [详细]
  • vue使用
    关键词: ... [详细]
  • Spring源码解密之默认标签的解析方式分析
    本文分析了Spring源码解密中默认标签的解析方式。通过对命名空间的判断,区分默认命名空间和自定义命名空间,并采用不同的解析方式。其中,bean标签的解析最为复杂和重要。 ... [详细]
  • 向QTextEdit拖放文件的方法及实现步骤
    本文介绍了在使用QTextEdit时如何实现拖放文件的功能,包括相关的方法和实现步骤。通过重写dragEnterEvent和dropEvent函数,并结合QMimeData和QUrl等类,可以轻松实现向QTextEdit拖放文件的功能。详细的代码实现和说明可以参考本文提供的示例代码。 ... [详细]
  • 本文讨论了在Windows 8上安装gvim中插件时出现的错误加载问题。作者将EasyMotion插件放在了正确的位置,但加载时却出现了错误。作者提供了下载链接和之前放置插件的位置,并列出了出现的错误信息。 ... [详细]
  • 本文讨论了在手机移动端如何使用HTML5和JavaScript实现视频上传并压缩视频质量,或者降低手机摄像头拍摄质量的问题。作者指出HTML5和JavaScript无法直接压缩视频,只能通过将视频传送到服务器端由后端进行压缩。对于控制相机拍摄质量,只有使用JAVA编写Android客户端才能实现压缩。此外,作者还解释了在交作业时使用zip格式压缩包导致CSS文件和图片音乐丢失的原因,并提供了解决方法。最后,作者还介绍了一个用于处理图片的类,可以实现图片剪裁处理和生成缩略图的功能。 ... [详细]
  • 本文介绍了深入浅出Linux设备驱动编程的重要性,以及两种加载和删除Linux内核模块的方法。通过一个内核模块的例子,展示了模块的编译和加载过程,并讨论了模块对内核大小的控制。深入理解Linux设备驱动编程对于开发者来说非常重要。 ... [详细]
  • .NET中各种数据库连接大全(转)[more].NET中各种数据库连接大全sql.gif)SQLSERVEROdbCStandardSecurity:driver{SQLSe ... [详细]
  • Imtryingtousethisforabasicsearchwithpagination:我正在尝试使用此分区进行基本搜索:$construct?AND? ... [详细]
  • 摘要:本文从介绍基础概念入手,探讨了在CC++中对日期和时间操作所用到的数据结构和函数,并对计时、时间的获取、时间的计算和显示格式等方面进行了阐述。本文还通过大量的实例向你展示了t ... [详细]
author-avatar
-彼岸花开-hui
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有