Chrony : NTPサーバーの設定2016/06/22 |
Chrony をインストールして、時刻同期のための NTP サーバーを構築します。
|
|
[1] | Chrony のインストールと設定です。 |
[root@dlp ~]#
dnf -y install 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 start chronyd [root@dlp ~]# systemctl enable chronyd |
[2] | Firewalld を有効にしている場合は NTP サービスの許可が必要です。なお、NTP は 123/UDP を使用します。 |
[root@dlp ~]# firewall-cmd --add-service=ntp --permanent success [root@dlp ~]# firewall-cmd --reload success |
[3] | 動作確認をしておきます。以下のように結果が返ってくれば OK です。 |
[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 37 20 +561us[ +530us] +/- 98ms ^* ntp2.jst.mfeed.ad.jp 2 6 37 20 -91us[ -122us] +/- 80ms ^+ ntp3.jst.mfeed.ad.jp 2 6 37 21 -567us[ -598us] +/- 127ms |
Sponsored Link |