ubuntu 22.01 搭建ntp服务器
时间: 2023-09-28 11:07:55 浏览: 163
很抱歉,目前还没有 Ubuntu 22.01 版本。不过,搭建 NTP 服务器的方法在大部分版本的 Ubuntu 上都是类似的,以下是搭建 NTP 服务器的步骤:
1. 安装 NTP 服务器和客户端
在终端中执行以下命令安装 NTP 服务器和客户端:
```
sudo apt update
sudo apt install ntp
```
2. 配置 NTP 服务器
编辑 NTP 配置文件 `/etc/ntp.conf`,添加以下内容:
```
# Specify one or more NTP servers
server 0.ubuntu.pool.ntp.org
server 1.ubuntu.pool.ntp.org
server 2.ubuntu.pool.ntp.org
server 3.ubuntu.pool.ntp.org
# Allow other machines to synchronize with this server
restrict default nomodify nopeer noquery notrap
restrict 127.0.0.1
restrict ::1
```
这里我们使用 Ubuntu 官方提供的 NTP 服务器池,你也可以使用其他的 NTP 服务器。
3. 重启 NTP 服务器
执行以下命令重启 NTP 服务器:
```
sudo systemctl restart ntp
```
4. 验证 NTP 服务器
使用 `ntpq` 命令来验证 NTP 服务器是否正常工作:
```
ntpq -p
```
这将显示当前已连接的 NTP 服务器列表以及其时间同步状态。
现在你已经成功搭建了一个 NTP 服务器,其他设备可以使用该服务器同步时间。
阅读全文