搭建 NTP 服務(wù)器需要以下步驟:
使用以下命令安裝 NTP 軟件:
sudo apt-get update
sudo apt-get install ntp
使用以下命令編輯 NTP 配置文件:
sudo nano /etc/ntp.conf
在文件中添加以下內(nèi)容:
# 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 服務(wù)器。你也可以使用其他 NTP 服務(wù)器。
使用以下命令重啟 NTP 服務(wù):
sudo service ntp restart
如果你的服務(wù)器開(kāi)啟了防火墻,需要打開(kāi) UDP 123 端口。使用以下命令打開(kāi)端口:
sudo ufw allow 123/udp
現(xiàn)在你的 NTP 服務(wù)器已經(jīng)搭建成功了。其他設(shè)備可以使用該服務(wù)器進(jìn)行時(shí)間同步。