Chrony : NTPサーバーの設定2015/06/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 start 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 0 +102us[ -53us] +/- 51ms ^+ ntp2.jst.mfeed.ad.jp 2 6 17 0 -47us[ -202us] +/- 16ms ^* ntp3.jst.mfeed.ad.jp 2 6 17 0 -239us[ -394us] +/- 17ms |
Sponsored Link |