天天看點

CentOS7-ntp時間同步伺服器

NTP時鐘同步方式說明

NTP在linux下有兩種時鐘同步方式,分别為直接同步和平滑同步:

直接同步

使用ntpdate指令進行同步,直接進行時間變更。如果伺服器上存在一個12點運作的任務,目前伺服器時間是13點,但标準時間時11點,使用此指令可能會造成任務重複執行。是以使用ntpdate同步可能會引發風險,是以該指令也多用于配置時鐘同步服務時第一次同步時間時使用。

平滑同步

使用ntpd進行時鐘同步,可以保證一個時間不經曆兩次,它每次同步時間的偏移量不會太陡,是慢慢來的,這正因為這樣,ntpd平滑同步可能耗費的時間比較長。

标準時鐘同步服務

http://www.pool.ntp.org/zone/cn網站包含全球的标準時間同步服務,也包括對中國時間的同步,對應的URL為cn.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

連接配接并同步後:

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檔案,紅色字型為變化的内容。

#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

# Enable writing of statisticsrecords.

[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

本文轉自 藍葉子Sheep 51CTO部落格,原文連結:http://blog.51cto.com/dellinger/1947889,如需轉載請自行聯系原作者

繼續閱讀