Chrony : NTP サーバーの設定2015/11/03 |
Chrony をインストールして、時刻同期のための NTP サーバーを構築します。なお、NTP は 123/UDP を使用します。
|
|
[1] | Chrony は Fedora Server を最小構成でインストールした場合でもデフォルトでインストールされますが、 もしインストールされていない場合は、以下のようにしてインストールします。 |
[root@dlp ~]# dnf -y install chrony
|
[2] | Chrony の設定です。 |
[root@dlp ~]#
vi /etc/chrony.conf # 3行目: 同期をとるサーバーを変更 # pool 2.fedora.pool.ntp.org iburst
server ntp1.jst.mfeed.ad.jp iburst
server ntp2.jst.mfeed.ad.jp iburst server ntp3.jst.mfeed.ad.jp iburst # 19行目: 時刻同期を許可するネットワークを追記
allow 10.0.0.0/24
systemctl restart chronyd [root@dlp ~]# systemctl enable chronyd [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 6 17 6 -1950us[-1950us] +/- 77ms ^* ntp2.jst.mfeed.ad.jp 2 6 17 6 -284us[ -171us] +/- 81ms ^+ ntp3.jst.mfeed.ad.jp 2 6 17 5 +357us[ +357us] +/- 130ms |
Sponsored Link |
|