搭建NTP服务器

搭建NTP服务器
1、使用chrony搭建NTP服务器
本章节介绍利用CentOS 7.X chrony搭建NTP服务器
CentOS 7.X为最小化安装且关闭SELinux和防火墙,网卡地址为192.168.0.10/24
1.1 安装chrony软件
在NTP服务器和客户端上安装chrony软件
yum -y install chrony在这里插入图片描述
1.2 修改NTP服务器chrony配置文件
vim /etc/chrony.conf
指定本机网卡地址为服务器地址,如指定其他地址或域名,需保证IP及端口可达
允许访问客户端的范围为192.168.0.0/24、local stratum参数搭建NTP服务器_第1张图片
systemctl restart chronyd
systemctl enable chronyd搭建NTP服务器_第2张图片
1.3 修改NTP服务器chrony配置文件
vim /etc/chrony.conf
指定服务器地址为192.168.0.10搭建NTP服务器_第3张图片
1.4 客户端同步时间
chronyc sources在这里插入图片描述
2、使用ntp搭建NTP服务器
本章节介绍利用CentOS 7.X ntp搭建NTP服务器
CentOS 7.X为最小化安装且关闭SELinux和防火墙,网卡地址为192.168.0.10/24
2.1 安装ntp软件
在服务器上安装ntp软件
yum -y install ntp在这里插入图片描述
在客户端安装ntpdate软件
yum -y install ntpdate在这里插入图片描述
2.2 修改NTP服务器ntp配置文件
vim /etc/ntp.conf
默认情况下,服务器允许所有客户端同步时间,如下配置只允许192.168.0.0/24网段同步时间
指定本机为服务器地址,如指定其他地址或域名,需保证IP及端口可达搭建NTP服务器_第4张图片
systemctl restart ntpd
systemctl enable ntpd在这里插入图片描述
2.3 客户端同步时间
ntpdate 192.168.0.10在这里插入图片描述

你可能感兴趣的:(Linux)