NTP サーバーの設定 (Chrony)2014/04/18 |
Chrony をインストールして、時刻同期のための NTP サーバーを構築します。なお、NTP は 123/UDP を使用します。 |
root@dlp:~#
apt-get -y install chrony
root@dlp:~#
vi /etc/chrony/chrony.conf # 20行目:コメント化 # server 0.debian.pool.ntp.org offline minpoll 8# server 1.debian.pool.ntp.org offline minpoll 8# server 2.debian.pool.ntp.org offline minpoll 8# server 3.debian.pool.ntp.org offline minpoll 8# 同期をとるサーバーを指定
server ntp1.jst.mfeed.ad.jp offline minpoll 8
server ntp2.jst.mfeed.ad.jp offline minpoll 8 server ntp3.jst.mfeed.ad.jp offline minpoll 8 # 69行目:時刻同期を許可する範囲を追記 # allow 10/8# allow 192.168/16# allow 172.16/12
allow 10.0.0.0/24
/etc/init.d/chrony restart Restarting time daemon: Starting /usr/sbin/chronyd... chronyd is running and online. # 動作確認 root@dlp:~# chronyc sources 210 Number of sources = 3 MS Name/IP address Stratum Poll Reach LastRx Last sample =============================================================================== ^* ntp1.jst.mfeed.ad.jp 2 8 37 19 +504us[ +561us] +/- 81ms ^+ ntp2.jst.mfeed.ad.jp 2 8 37 20 -855us[ -798us] +/- 85ms ^+ ntp3.jst.mfeed.ad.jp 2 8 37 20 +633us[ +947us] +/- 112ms |
Sponsored Link |