Changes between Initial Version and Version 1 of linux/ntp


Ignore:
Timestamp:
2014/05/23 11:27:14 (10 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • linux/ntp

    v1 v1  
     1= NTPによる時刻同期のメモ 
     2 
     3NTPでサーバ間の時刻同期を行うための設定例を示す。 
     4 
     5### NTPサーバの設定 
     6/etc/ntp.confを以下のように編集する。 
     7{{{ 
     8... 
     9#server 0.rhel.pool.ntp.org 
     10#server 1.rhel.pool.ntp.org 
     11#server 2.rhel.pool.ntp.org 
     12... 
     13#statistics clockstats cryptostats loopstats peerstats 
     14restrict 192.168.1.0 mask 255.255.255.0 
     15server 127.127.1.0 
     16fudge 127.127.1.0 stratum 10 
     17}}} 
     18restrict,server,fudgeの3行を追加し、インターネットに接続していない場合、NTPサーバの設定をコメントアウトする。 
     19 
     20== NTPクライアント 
     21NTPサーバとなるホストの設定を/etc/ntp.confに追加する。 
     22{{{ 
     23server 192.168.1.1 
     24}}}