How to configure NTP
What is NTP?
The Network Time Protocol (NTP) synchronizes your device with multiple time servers around the world. You can configure them manually or automatically. Accurate timekeeping is essential for logging, certificates, and many services that rely on consistent timestamps.
On Windows
- Open the Control Panel.

- Go to Clock and Region.

- Click Date and Time.

- Select the Internet Time tab.

- Click Change settings…

- Update the Server value.
- ntp1.polisystems.ch (Germany)
- ntp2.polisystems.ch (Switzerland)
All our machines are synchronized with multiple atomic clocks in Switzerland and Germany, so you can use either server.
- Click Update now, then OK.

Your Windows machine now keeps reliable time.
On Linux
On Linux, configuration via the CLI is straightforward.
- Install the NTP package if needed:
bash
apt install ntp -y
# or
yum install ntp -y
- Edit
/etc/ntp.conf:
bash
nano /etc/ntp.conf
- Update the
serverlines:
bash
server ntp1.polisystems.ch
server ntp2.polisystems.ch
- Restart the service:
bash
service ntp restart
You can also run ntpdate -u ntp1.polisystems.ch for a one-time sync if you need an immediate correction.
On macOS
- Open System Preferences > Date & Time (or System Settings on recent versions).
- Click the lock to unlock the pane if required.
- Enable Set date and time automatically.
- Enter the IP or DNS addresses of your preferred time servers, separated by commas, for example:
ntp1.polisystems.ch., ntp2.polisystems.ch.
Final notes
Your devices are now synced and ready to keep accurate time.
Resources for macOS: https://www.ctrl.blog/entry/tutorial-macos-ntp-config.html