NTP时间同步
目录
- NTP时间同步
- [一、 概述](#一、 概述)
- [二、 软件包](#二、 软件包)
- 三、NTP服务器配置
- [1、 修改配置文件](#1、 修改配置文件)
- [2、 重启服务](#2、 重启服务)
- [3、 防火墙设置](#3、 防火墙设置)
- 四、NTP客户端配置
- [1、 修改配置文件](#1、 修改配置文件)
- [2、 验证时间](#2、 验证时间)
- [4、 重启服务](#4、 重启服务)
- [5、 验证时间是否同步](#5、 验证时间是否同步)
一、 概述
Network Time Protocol(网络时间协议)
它用来同步网络中各个计算机的时间的协议。210.72.145.39,国家授权中心服务器IP地址
Stratum(分层设计),Stratum层的总数限制在15以内(包括15)
服务端端口:323 客户端端口:123
二、 软件包
bash
]# yum -y install chrony
]# rpm -ql chrony
]# rpm -qc chrony
/etc/chrony.conf
/etc/chrony.keys
/etc/logrotate.d/chrony
/etc/sysconfig/chronyd
三、NTP服务器配置
1、 修改配置文件
bash
]# cat /etc/chrony.conf
server 0.centos.pool.ntp.org iburst
allow 192.168.0.0/16
deny 192.168.4.1
local stratum 10
2、 重启服务
bash
]# systemctl restart chronyd
]# systemctl enabled chronyd
3、 防火墙设置
bash
可提前干掉防火墙,并修改配置文件将enabled改为disabled
]# systemctl disable firewalld --now
如不想干掉
]# firewall-cmd --set-default-zone=trusted
四、NTP客户端配置
1、 修改配置文件
bash
主配置文件/etc/chrony.conf
]# cat /etc/chrony.conf
3 server 192.168.3.30 iburst //设置与指定IP地址服务器同步数据
//iburst参数设置重启服务后尽快同步时间
2、 验证时间
bash
客户端将时间修改错误
]# date -s "hour:minute" //调整时间
]# date //查看时间
4、 重启服务
bash
]# systemctl restart chronyd
5、 验证时间是否同步
bash
]# date
]# chronyc sources -V