Ubuntu 20.04にNTPd をインストールする

1.NTPd のインストール
# apt -y install ntp

2.ntpの設定
# vim /etc/ntp.conf

21行目~24行目
修正前
pool 0.ubuntu.pool.ntp.org iburst
pool 1.ubuntu.pool.ntp.org iburst
pool 2.ubuntu.pool.ntp.org iburst
pool 3.ubuntu.pool.ntp.org iburst

修正後
#pool 0.ubuntu.pool.ntp.org iburst
#pool 1.ubuntu.pool.ntp.org iburst
#pool 2.ubuntu.pool.ntp.org iburst
#pool 3.ubuntu.pool.ntp.org iburst

27行目
修正前
pool ntp.ubuntu.com

修正後
#pool ntp.ubuntu.com
pool ntp.nict.jp iburst 

51行目
修正前
#restrict 192.168.123.0 mask 255.255.255.0 notrust
修正後
restrict 192.168.123.0 mask 255.255.255.0 notrust

3.ntpを再起動
# systemctl restart ntp

4.動作確認

# 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-b2.nict.go. .NICT.           1 u   17   64    1    9.066    3.056   0.714
+ntp-b3.nict.go. .NICT.           1 u   48   64    1    8.762    3.030   2.023
+ntp-a3.nict.go. .NICT.           1 u   15   64    1    8.274    3.154   0.500
*ntp-a2.nict.go. .NICT.           1 u   48   64    1    9.095    2.586   2.083

 

Ubuntu 20.04

Posted by arkgame