Fedora 23
Sponsored Link

NTPd : NTP サーバーの設定2015/11/03

 
NTPd をインストールして、時刻同期のための NTP サーバーを構築します。なお、NTP は 123/UDP を使用します。
[1] NTPd は Fedora Server を最小構成でインストールした場合でもデフォルトでインストールされますが、 もしインストールされていない場合は、以下のようにしてインストールします。
[root@dlp ~]#
dnf -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 iburst
server ntp2.jst.mfeed.ad.jp iburst
server ntp3.jst.mfeed.ad.jp iburst
[root@dlp ~]#
systemctl start ntpd

[root@dlp ~]#
systemctl enable ntpd

[root@dlp ~]#
ntpq -p

     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
*ntp1.jst.mfeed. 133.243.236.17   2 u    1   64    1   18.298    0.685   0.049
 ntp2.jst.mfeed. 133.243.236.17   2 u    2   64    1   18.299    0.076   0.085
 ntp3.jst.mfeed. 133.243.236.17   2 u    1   64    1   18.477   -0.487   0.246
関連コンテンツ