NTP : NTPサーバーの設定 (Chrony)2015/06/03 |
Chrony をインストールして、時刻同期のための NTP サーバーを構築します。
|
|
[1] | Chrony のインストールと設定です。 |
[root@dlp ~]#
yum -y install chrony
[root@dlp ~]#
vi /etc/chrony.conf # 3行目: 同期をとるサーバーを変更 # server 0.centos.pool.ntp.org iburst# server 1.centos.pool.ntp.org iburst# server 2.centos.pool.ntp.org iburst# server 3.centos.pool.ntp.org iburst
server ntp.nict.jp iburst
server ntp1.jst.mfeed.ad.jp iburst server ntp2.jst.mfeed.ad.jp iburst # 25行目: 時刻同期を許可するネットワークを追記
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 =============================================================================== ^* ntp-b2.nict.go.jp 1 6 17 3 +13us[ +118us] +/- 11ms ^- ntp1.jst.mfeed.ad.jp 2 6 17 3 -940us[ -940us] +/- 101ms ^- ntp2.jst.mfeed.ad.jp 2 6 17 4 -419us[ -314us] +/- 82ms |
Sponsored Link |