前言
server可以联网,client没有联网,client同步到server的时间。注意一点
serverIP:192.168.0.201
clientIP:192.168.0.202
在客户端和服务端分别安装ntp软件,sudo apt-get install ntp
。
1 修改服务器端的配置文件
修改配置文件sudo vim /etc/ntp.conf
,加入restrict 192.168.0.0 mask 255.255.255.0 nomodify
,允许能同步的服务器所在的内部网段。
具体ntp.conf
配置内容,相关语法查看网址ubuntu配置ntp时间服务器。
2 修改防火墙机制
# 设置防火墙必须取消对123端口的限制
iptables -t filter -A INPUT -p udp --destination-port 123 -j ACCEPT
3 重启ntp服务
sudo /etc/init.d/ntp restart
4 客户端同步
sudo ntpdate 192.168.0.201
5 参考文献
- ubuntu搭建NTP服务器
- ubuntu配置ntp时间服务器 ——非常详细介绍NTP以及使用。
- linux 时间同步的2种方法
- Linux系统时间同步方法