搭建 NTP 服務器需要以下步驟:
使用以下命令安裝 NTP 軟件:
sudo apt-get update
sudo apt-get install ntp
使用以下命令編輯 NTP 配置文件:
sudo nano /etc/ntp.conf
在文件中添加以下內容:
# You do need to talk to an NTP server or two (or three).
server ntp.ubuntu.com
server 0.ubuntu.pool.ntp.org
server 1.ubuntu.pool.ntp.org
server 2.ubuntu.pool.ntp.org
這里使用了 Ubuntu 官方的 NTP 服務器。你也可以使用其他 NTP 服務器。
使用以下命令重啟 NTP 服務:
sudo service ntp restart
如果你的服務器開啟了防火墻,需要打開 UDP 123 端口。使用以下命令打開端口:
sudo ufw allow 123/udp
現在你的 NTP 服務器已經搭建成功了。其他設備可以使用該服務器進行時間同步。