要配置Ubuntu作為NTP服務器,您可以按照以下步驟操作:
sudo apt-get update
sudo apt-get install ntp
sudo nano /etc/ntp.conf
在配置文件中添加以下內容,指定您的NTP服務器IP地址和允許的客戶端IP地址:
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict ::1
server 0.ubuntu.pool.ntp.org iburst
server 1.ubuntu.pool.ntp.org iburst
server 2.ubuntu.pool.ntp.org iburst
server 3.ubuntu.pool.ntp.org iburst
sudo systemctl restart ntp
ntpq -p
這些是配置Ubuntu作為NTP服務器的基本步驟,您可以根據需要進一步調整配置。