Debian 11 Bullseye
Sponsored Link

NTP サーバー : NTPd の設定2021/08/17

 
NTPd をインストールして、時刻同期サービスを提供する NTP サーバーを構築します。
[1] NTPd のインストールと設定です。
root@dlp:~#
apt -y install ntp
root@dlp:~#
vi /etc/ntp.conf
# 23行目 : デフォルト設定はコメントにして自身のタイムゾーンの NTP サーバーを追記

#pool 0.debian.pool.ntp.org iburst
#pool 1.debian.pool.ntp.org iburst
#pool 2.debian.pool.ntp.org iburst
#pool 3.debian.pool.ntp.org iburst
pool ntp.nict.jp iburst 

# 51行目 : 時刻同期を許可する範囲を追記

restrict 10.0.0.0 mask 255.255.255.0 nomodify notrap
root@dlp:~#
systemctl restart ntp
# 動作確認

root@dlp:~#
ntpq -p

     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
 ntp.nict.jp     .POOL.          16 p    -   64    0    0.000   +0.000   0.000
*ntp-k1.nict.jp  .nict.           1 u    7   64    1   14.932   +0.867   0.550
 ntp-b2.nict.go. .NICT.           1 u    2   64    1   20.220   +1.184   0.422
 ntp-b3.nict.go. .NICT.           1 u    2   64    1   20.305   +1.265   0.261
 ntp-a2.nict.go. .NICT.           1 u    -   64    1   15.095   +0.919   0.244
+ntp-a3.nict.go. .NICT.           1 u    3   64    1   15.012   +0.612   0.459
関連コンテンツ