December 2018
Beginner
826 pages
22h 54m
English
Maybe the network you're managing is very restricted, and it takes ages to get network changes done. In this case, you might have a pool of servers that are designated as NTP providers for the rest of your estate.
In this case, you will need to configure chronyd to allow connections from other clients. We'll use centos2 for the server.
On centos2, add a line to the bottom of our chrony.conf file to allow access from our eth1 network (192.168.33.0):
$ sudo tee --append /etc/chrony.conf << HEREallow 192.168.33.0/24HERE
Restart chronyd with the new changes:
$ sudo systemctl restart chronyd
Now, on the system that's to be the client, centos1, perform the following steps.
First, modify our chrony.conf file by commenting ...