本文共 1212 字,大约阅读时间需要 4 分钟。
系统版本(linux centos 7.6)
服务器端配置
1. 安装NTP
yum –y install ntp
2. 编辑ntp.conf文件
[root@NTP ~]# vim /etc/ntp.conf
restrict 192.168.192.40 nomodify notrap nopeer noquery #开启内部递归网络接口lo 即允许本机地址一切的操作restrict 127.0.0.1restrict ::1 # Hosts on local network are less restricted.restrict 192.168.192.0 mask 255.255.255.0 nomodify notrap #我们允许局域网内所有客户端连接到这台服务器同步时间.但是拒绝让他们修改服务器上的时间service 192.168.192.40 # 这句也是手动增加的,指明局域网中作为NTP服务器的IP# Use public servers from the pool.ntp.org project.# Please consider joining the pool (http://www.pool.ntp.org/join.html).#server 0.centos.pool.ntp.org iburst#server 1.centos.pool.ntp.org iburst#server 2.centos.pool.ntp.org iburst#server 3.centos.pool.ntp.org iburstserver ntp1.aliyun.com iburst #互联网上的三个ntp服务器server ntp2.aliyun.com iburstserver ntp3.aliyun.com iburst server 127.127.1.0 #当服务器与公用的时间服务器失去联系时(连不上网),以局域网的时间服务器为客户端提供时间同步服务fudge 127.127.1.0 stratum 10 #broadcast 192.168.1.255 autokey # broadcast server#broadcastclient # broadcast client#broadcast 224.0.1.1 autokey # multicast server
3. 防火墙开放端口
firewall-cmd --zone=public --add-port=123/udp –permanent
firewall-cmd --reload
客户端配置:
yum install ntp ntpdate -y
2. 配置ntp.conf文件
只需增加 server 服务器IP
3. 手动同步时间
ntpdate 服务器IP或域名
转载地址:http://tkcpo.baihongyu.com/