Fedora 35にChrony をインストールする

環境情報
# cat /etc/redhat-release
Fedora release 35 (Thirty Five)

インストールの方法
1.Chronyをインストールします
# dnf -y install chrony

2.設定ファイルを編集します

# vi /etc/chrony.conf

3行目 時刻同期するNTPサーバーを変更します
修正前
pool 2.fedora.pool.ntp.org iburst
修正後
pool ntp.nict.jp iburst

27行目 クライアントからの時刻同期リクエストを受け付けるネットワークを追加します
修正前
#allow 192.168.0.0/16
修正後
allow 192.168.229.0/24

3.Chronyを起動します
# systemctl enable –now chronyd

4.ファイアウォールを設定します

# firewall-cmd --add-service=ntp
success
# firewall-cmd --runtime-to-permanent
success

5.動作確認

# chronyc sources
MS Name/IP address         Stratum Poll Reach LastRx Last sample
===============================================================================
^- x.ns.gin.ntt.net              2   6   377    51   +887us[ +887us] +/-   91ms
^- any.time.nl                   2   6   377    52   -260us[ -260us] +/-   30ms
^- time.cloudflare.com           3   6   377    54  +2342us[+2394us] +/-   72ms
^* ntp-b2.nict.go.jp             1   6   377    53  +2376us[+2428us] +/- 5492us

 

Fedora 35

Posted by arkgame