To view the clients connected to the server: sudo chronyc clients
- Install chrony if its not installed
sudo systemctl status chronyd- If nothing shows up:
sudo dnf install chronysudo systemctl enable --now chronyd && sudo systemctl start chronyd
- Point the server to a server listed at NTP Pool Project.
sudo vim /etc/chrony.conf- Edit the line that says "Allow NTP client access from local network"
allow \<subnet\>/\<CIDR\>
- Restart the
chronyddaemonsudo systemctl restart chronyd
To view the server(s) connected to the client: sudo chronyc sources
- Install chrony if its not installed
sudo systemctl status chronyd- If nothing shows up:
sudo dnf install chronysudo systemctl enable --now chronyd && sudo systemctl start chronyd
- Point the client at the NTP server
sudo vim /etc/chrony.conf- Add the servers below the comment that mentions Use public serves from pool.ntp.org
source \<NTP Server IP\> maxpoll 16 iburst
- Restart the
chronyddaemonsudo systemctl restart chronyd