NPT服务搭建与配制

安装NTP服务
1
yum -y install ntp

编辑vim /etc/ntp.cnf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
restrict 127.0.0.1                                                                                          
restrict ::1

# 注释掉 restrict default nomodify notrap nopeer noquery

# 允许内网网段172.16.111.0网段的机器同步时间
restrict 172.16.111.0 mask 255.255.255.0 nomodify notrap

# 同步阿里云时间
server ntp1.aliyun.com iburst
server ntp2.aliyun.com iburst
server ntp3.aliyun.com iburst
server ntp4.aliyun.com iburst

放行防火墙端口

1
2
sudo firewall-cmd --permanent --add-port=123/udp
sudo firewall-cmd --reload

NTP服务命令

1
2
3
4
systemctl status ntpd #查看NTP状态
systemctl start ntpd #启动NTP服务
systemctl restart ntpd #重启NTP服务
systemctl enable ntpd #开机自启动NTP服务