Fedora 21
Sponsored Link

NTPサーバーの設定2014/12/10

 
時刻同期のための NTPサーバーを構築します。なお、NTP は 123/UDP を使用します。
[1] NTP は Fedora Server を最小構成でインストールした場合でもデフォルトでインストールされますが、 もしインストールされていない場合は、以下のようにしてインストールします。
[root@dlp ~]#
yum -y install ntp
[2] NTP の設定です。
[root@dlp ~]#
vi /etc/ntp.conf
# 18行目: 時刻同期を許可する範囲を追記

restrict 10.0.0.0 mask 255.255.255.0 nomodify notrap
# 同期をとるサーバーを変更

#
server 0.fedora.pool.ntp.org iburst
#
server 1.fedora.pool.ntp.org iburst
#
server 2.fedora.pool.ntp.org iburst
#
server 3.fedora.pool.ntp.org iburst
server ntp1.jst.mfeed.ad.jp
server ntp2.jst.mfeed.ad.jp
server ntp3.jst.mfeed.ad.jp
[root@dlp ~]#
systemctl start ntpd

[root@dlp ~]#
systemctl enable ntpd

Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd.service.
[root@dlp ~]#
ntpq -p

     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
*ntp1.jst.mfeed. 172.29.2.50      2 u   53   64    1   68.920   -0.823   0.000
 ntp2.jst.mfeed. 172.16.176.60    2 u   53   64    1   70.748    0.005   0.000
 ntp3.jst.mfeed. 172.29.3.50      2 u   53   64    1   69.337   -0.114   0.000
関連コンテンツ