NTP : Configure NTP Server2021/04/29 |
Install Chrony to Configure NTP Server for Time Synchronization.
|
|
[1] | Install and Configure Chrony. |
[root@dlp ~]#
dnf -y install chrony
[root@dlp ~]#
vi /etc/chrony.conf # line 3: change servers to synchronize (replace to your own timezone NTP server) # need NTP server itself to sync time with other NTP server # pool 2.centos.pool.ntp.org iburst
pool ntp.nict.jp iburst
# line 27: add network range to allow to receive time synchronization requests from NTP Clients # specify your local network and so on # if not specified, only localhost is allowed
allow 10.0.0.0/24
systemctl enable --now chronyd |
[2] | If Firewalld is running, allow NTP service. NTP uses [123/UDP]. |
[root@dlp ~]# firewall-cmd --add-service=ntp --permanent success [root@dlp ~]# firewall-cmd --reload success |
[3] | Verify it works normally. |
[root@dlp ~]# chronyc sources MS Name/IP address Stratum Poll Reach LastRx Last sample =============================================================================== ^- ntp-a2.nict.go.jp 1 6 17 15 +8846us[+8846us] +/- 26ms ^* ntp-b2.nict.go.jp 1 6 17 15 -3064us[-8395us] +/- 18ms ^- ntp-b3.nict.go.jp 1 6 17 14 +5604us[+5604us] +/- 26ms ^- ntp-k1.nict.jp 1 6 17 15 +138us[ +138us] +/- 20ms |
Sponsored Link |