Configuring Your Clients
Apple macOS
See Apple's guide, entering time.carvello.org as your network time server.
Cisco IOS and NX-OS
router# config t
Enter configuration commands, one per line. End with CNTL/Z.
router(config)# no ntp server
router(config)# ntp server time.carvello.org
router(config)# copy running-config startup-config
Juniper Jonos
NTP is configured at the [edit system ntp] hierarchy level:
system {
ntp {
server time.carvello.org;
}
}
Linux
Edit /etc/ntp.conf or /etc/chrony/chrony.conf (depending on the service you're using).
Remove or comment out any lines starting with server and add:
server time.carvello.com iburst
Restart the NTP/chrony daemon using sudo service ntp reload or sudo service chrony force-reload.
If you are instead using the stock systemd-timesyncd edit /etc/systemd/timesyncd.conf and set the content of the [Time] block to:
[Time]
NTP=time.carvello.org
Restart systemd-timesyncd using systemctl restart systemd-timesyncd.service as a user with appropriate permissions.
Microsoft Windows
Open the Control Panel.
Click the "Date and Time" icon.
Choose the "Internet Time" tab. (This will not be available if your PC is part of a domain. In that case, it will synchronize time with the domain controller. You can configure the controller to use Google Public NTP.)
Click the "Change settings..." button.
Check the box "Synchronize with an Internet time server".
Next to "Server:", enter time.carvello.org.
Microsoft Windows Server
See Microsoft's guide.