CentOS7の時刻同期にNTPを使用する

CentOS 7#でNTPを使用した時間同期

[ 日付:2015-11-07] 出典:Linuxコミュニティ作成者:scorpio3k [フォント:中小規模]
  1. NTPクロック同期方法の説明
    NTPには、Linuxでの2つのクロック同期方法、つまり直接同期とスムーズ同期があります。
    直接同期
    ntpdateコマンドを使用して、時刻を同期して直接変更します。サーバー上で12時に実行されているタスクがある場合、現在のサーバー時間は13:00ですが、標準時間は11時です。このコマンドを使用すると、タスクが繰り返される場合があります。したがって、ntpdate同期を使用するとリスクが発生する可能性があるため、このコマンドは、初めて同期するクロック同期サービスを構成するときにも使用されます。
    スムーズな同期
    クロック同期にntpdを使用すると、時間が2回経過しないようにすることができ、各同期時間のオフセットが急になりすぎず、時間がかかります。このため、ntpdのスムーズな同期には時間がかかる場合があります。

標準クロック同期サービス
http://www.pool.ntp.org/zone/cn Webサイトには、グローバル標準の時間同期サービスと、中国時間の同期が含まれています。対応するURLはcn.pool.ntp.orgで、ntpについても説明しています。構成ファイルで推奨される表現:
server 1.cn.pool.ntp.org 
server 3.asia.pool.ntp.org 
server 2.asia.pool.ntp.org

  1. 環境状況
    4台のコンピューターを準備します。
IP 使用
192.168.11.212 ntpdサーバー。標準時刻を外部のパブリックntpdと同期するために使用されます
172.16.248.129 ntpdクライアント。ntpdと時間を同期するために使用されます
172.16.248.130 ntpdクライアント。ntpdと時間を同期するために使用されます
172,16,248.131 ntpdクライアント。ntpdと時間を同期するために使用されます

3. サービスがインストールされているかどうかを確認します####

[ root@localhost kevin]# rpm -q ntp
ntp-4.2.6p5-19.el7.CentOS.3.x86_64
[ root@localhost kevin]# yum -y install ntp
[ root@localhost kevin]# systemctl enable ntpd
[ root@localhost kevin]# systemctl start ntpd

4. ntpサーバーを設定します:192.168.11.212

構成前に次のコマンドを使用します: ntpdate -u cn.pool.ntp.org、同期サーバー

# For more information about this file, 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 with our time source, but do not # permit the source to query or modify the service on this system. restrict default nomodify notrap nopeer noquery  # Permit all access over the loopback interface. This could # be tightened as well, but to do so would effect some of # the administrative functions. restrict 127.0.0.1 restrict ::1  # Hosts on local network are less restricted. #restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap restrict 172.16.248.0 mask 255.255.255.0 nomodify notrap  # Use public servers from the pool.ntp.org project. # Please consider joining the pool(http://www.pool.ntp.org/join.html). #server 0.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.254 autokey # manycast client #上位タイムサーバーがローカル時間制限をアクティブに変更できるようにする2.cn.pool.ntp.org nomodify notrap noquery restrict 1.asia.pool.ntp.org nomodify notrap noquery restrict 2.asia.pool.ntp.org nomodify notrap noquery  server 127.0.0.1 # local clock fudge 127.0.0.1 stratum 10  # Enable public key cryptography. #crypto  includefile /etc/ntp/crypto/pw  # Key file containing the keys and key identifiers used when operating # with symmetric key cryptography. keys /etc/ntp/keys  # Specify the key identifiers which are trusted. #trustedkey 4842  # Specify the key identifier to use with the ntpdc utility. #requestkey 8  # Specify the key identifier to use with the ntpq utility. #controlkey 8  # Enable writing of statistics records. #statistics clockstats cryptostats loopstats peerstats  # Disable the monitoring facility to prevent amplification attacks using ntpdc # monlist command when default restrict does not include the noquery flag. See # CVE-2013-5211for more details. # Note: Monitoring will not be disabled with the limited restriction flag. disable monitor 

変更が完了したら、ntpdサービス systemctl restartntpdを再起動します

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クライアントを設定します:172.16.248.129 | 130 | 131

前の設定と同じように、ntpサービスをインストールし、自動的に開始するように設定します。次に、/ etc /ntp.confファイルを編集します。赤いフォントが変更されたコンテンツです。

# For more information about this file, 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 with our time source, but do not # permit the source to query or modify the service on this system. restrict default nomodify notrap nopeer noquery  # Permit all access over the loopback interface. This could # be tightened as well, but to do so would effect some of # the administrative functions. restrict 127.0.0.1 restrict ::1  # Hosts on local network are less restricted. #restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap  # Use public servers from the pool.ntp.org project. # Please consider joining the pool(http://www.pool.ntp.org/join.html). #server 0.centos.pool.ntp.org iburst  server 172.16.248.1  restrict 172.16.248.1 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.254 autokey # manycast client  # Enable public key cryptography. #crypto includefile /etc/ntp/crypto/pw  # Key file containing the keys and key identifiers used when operating # with symmetric key cryptography. keys /etc/ntp/keys  # Specify the key identifiers which are trusted. #trustedkey 4842  # Specify the key identifier to use with the ntpdc utility. #requestkey 8  # Specify the key identifier to use with the ntpq utility. #controlkey 8  # Enable writing of statistics records. #statistics clockstats cryptostats loopstats peerstats  # Disable the monitoring facility to prevent amplification attacks using ntpdc # monlist command when default restrict does not include the noquery flag. See # CVE-2013-5211for more details. # Note: Monitoring will not be disabled with the limited restriction flag. disable monitor  

ntpdサービスを再起動します

# systemctl restart ntpd

開始後、同期を確認します

# ntpq -p
# ntpstat 

イントラネットであるため、ntpstatをすばやく同期できます。

( adsbygoogle = window.adsbygoogle || []).push({});

Recommended Posts

CentOS7の時刻同期にNTPを使用する
CentOS8でのnmcliの詳細な使用
VMwareでCentOSの静的IPを設定する
コマンドを使用して、CentOS7の特定のホスト名をクリアします
Centos8のdjangoプロジェクトにnginx + uwsgiをデプロイするためのチュートリアル
歴史上初めて、PythonはJavaを上回りました!
CentOS8はNTPサービスを有効にします
Centos7にMySQL5.7をインストールします
セントスにphpをインストールする
ubuntuでスーパーバイザーを使用する
CentOS7にredis5.0をインストールします
CentOSでHadoopを構築する
CentOS7でRapidSVNを使用する
セントスでのKVM仮想化
CentOSのNTPプールプロジェクトに参加するようにNTPを構成する方法
CentOS8でタイムゾーンを設定または変更する方法