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