安装服务端(需关闭防火墙或开放UDP123)
- 安装ntp包
yum install ntp -y
- 配置ntp,修改
/etc/nep.conf
reserict 192.168.1.51 # 当前服务器IP或127.0.0.1
reserict 192.168.1.1 mask 255.255.255.0 nomodify notrap # 当前局域网下的主机可用于同步时间
server 127.127.1.0 # 以本机作为时间服务器,需注释掉server0-n
fudge 127.127.1.0 startnum 10 # 设置服务器层级
- 启动服务和开机自启
systemctl restart ntp && systemctl enable ntp
- 查看状态:ntpstat
正常会显示synchroised
安装客户端
- 安装ntp
yum install ntp -y
- 配置ntp,修改
/etc/nep.conf
server 192.168.1.51 # 服务端IP,需注释掉server0-n
- 检测
ntpdate 192.168.1.51 # 服务端IP
补充关于防火墙:
添加123(udp)端口: firewall-cmd --zone=public --add-port=123/udp --permanent
查询防火墙状态: firewall-cmd --state
查询端口号123是否开启: firewall-cmd --query-port=80/tcp
网友评论