Debian 9 Stretch
Sponsored Link

NTP サーバーの設定 (Chrony)2017/06/18

 
Chrony をインストールして、時刻同期のための NTP サーバーを構築します。なお、NTP は 123/UDP を使用します。
[1] Chrony のインストールと設定です。
root@dlp:~#
apt -y install chrony
root@dlp:~#
vi /etc/chrony/chrony.conf
# 3行目:コメント化

#
pool 2.debian.pool.ntp.org iburst
# 同期をとるサーバーを指定

server ntp.nict.jp iburst
server ntp1.jst.mfeed.ad.jp iburst
server ntp2.jst.mfeed.ad.jp iburst
# 最終行に追記:時刻同期を許可する範囲を追記

allow 10.0.0.0/24
root@dlp:~#
systemctl restart chrony
# 動作確認

root@dlp:~#
chronyc sources

210 Number of sources = 3
MS Name/IP address         Stratum Poll Reach LastRx Last sample
===============================================================================
^* ntp-a2.nict.go.jp             1   6     7     1   +508us[ +446us] +/- 9385us
^- ntp1.jst.mfeed.ad.jp          2   6     7     1  -1555us[-1617us] +/-   82ms
^- ntp2.jst.mfeed.ad.jp          2   6     7     1  -1476us[-1538us] +/-  101ms
関連コンテンツ