安装NTP服务器
在Linux系统上,配置NTP时间服务器的第一步是安装NTP软件包。大多数Linux发行版都提供了NTP的预编译包,用户只需通过包管理工具进行安装。
sudo apt-get update
sudo apt-get install ntp
sudo yum install ntp
/etc/ntp.conf
。打开该文件后,你会看到许多配置项,其中最重要的部分是定义时间源(即上层的主时钟)和控制访问权限。
# Specify the upstream NTP servers
server 0.pool.ntp.org iburst
server 1.pool.ntp.org iburst
server 2.pool.ntp.org iburst
server 3.pool.ntp.org iburst
# Restrict access to the NTP server
restrict default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict ::1
server
指令用于指定上游NTP服务器。iburst
选项可在网络连接时提高同步速度。restrict
指令则用于限制哪些主机可以访问你的NTP服务器,以提高安全性。
sudo ntpdate -u your.ntp.server.ip
sudo ntpq -p