Kali ini saya akan membuat NTP Server diatas distro Linux Debian 12
Lakukan update repository
apt update
Install ntp
apt install ntp
Pastikan port NTP (proto UDP port 123) sudah terbuka
Ubah ntp server utama ke indonesia, edit file /etc/ntpsec/ntp.conf
nano /etc/ntpsec/ntp.conf
Berikan comment pada pool yang ada, dan tambahkan pool ntp server baru, berikut
pool 0.id.pool.ntp.org iburst
pool 1.id.pool.ntp.org iburst
pool 2.id.pool.ntp.org iburst
pool 3.id.pool.ntp.org iburst
Sehingga menjadi seperti berikut
Langkah terkahir, restart service ntp
systemctl restart ntp
Sumber/referensi:
https://www.belajarlinux.org/cara-membuat-ntp-server-ubuntu/