NTP时间服务器搭建部署

一.NTP介绍
NTP(Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协议。它的用途是把计算机的时钟同步到世界协调时UTC,其精度在局域网内可达0.1ms,在互联网上绝大多数的地方其精度可以达到1-50ms。
NTP服务器就是利用NTP协议提供时间同步服务的
二.NTP服务器安装
1.查看本机系统版本
cat /etc/redhat-release
2.查看本机NTP软件包
rpm -qa ntp
三.NTP服务器配置
1.备份ntp服务器配置文件
cp /etc/ntp.conf /etc/ntp.conf.bak
ll /etc/ntp.conf*
2.精简优化配置文件
egrep -v "^$|#" /etc/ntp.conf.bak >/etc/ntp.conf
3.编辑配置文件
vim /etc/ntp.conf

配置文件文本:

driftfile /var/lib/ntp/drift
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict -6 ::1
允许内网其他机器同步时间
restrict 172.16.1.0 mask 255.255.255.0 nomodify notr
#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 iburst
定义使用的上游 ntp服务器,将原来的注释
server ntp1.aliyun.com
server time1.aliyun.com
允许上层时间服务器主动修改本机时间
restrict time1.aliyun.com nomodify notrap noquery
restrict ntp1.aliyun.com nomodify notrap noquery
外部时间服务器不可用时,以本地时间作为时间服务
server 127.127.1.0
fudge 127.127.1.0 stratum 10
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys

四.启动NTP服务器
Centos6: /etc/init.d/ntpd start centos7: systemctl start ntpd
ntpq -p 显示节点列表

五.客户端时间同步测试
ntpdate 10.0.0.111(ntp服务器)

原文地址:http://blog.51cto.com/13520779/2089570

时间: 2024-10-10 03:21:31

NTP时间服务器搭建部署的相关文章

NTP时间服务器搭建及配置

网络时间协议NTP(Network Time Protocol)是用于互联网中时间同步的标准互联网协议.NTP的用途是把计算机的时间同步到某些时间标准.目前采用的时间标准是世界协调时UTC(Universal Time Coordinated).NTP的主要开发者是美国特拉华大学的David L. Mills教授.其精度在局域网内可达0.1ms,在互联网上绝大多数的地方其精度可以达到1-50ms. NTP服务的安装 [[email protected] ~]# yum install ntp [

Centos 7 ntp时间服务器搭建

1.查看是否已安装ntp rpm -qa | grep ntp ntp-4.2.6p5-22.el7.centos.2.x86_64 ntpdate-4.2.6p5-22.el7.centos.2.x86_64 如果有上述内容输出,测说明ntp服务已安装:否则需要安装ntp服务 关闭selinux并开放防火墙配置 sed -i "s/SELINUX=enforcing/SELINUX=disabled/" /etc/selinux/config setenforce 0 firewal

CentOS下NTP时间服务器搭建

1.1 NTP简介 NTP(Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协议. 1.2 NTP用途 有些时候,局域网里面的设备需要进行时间的同步,当时又不能连接到互联网上.这时候,就需要在一台服务器上搭建NTP服务了,然后其他的电脑只需要和该服务器进行时间同步即可.本次服务搭建的环境是在CentOS6.5,其他的Linux环境的搭建应该也差不多. 1.3 NTP的安装 用rpm命令检查下是不是还没有安装到ntp,我这里是已经安装过的了,如果还

NTP时间服务器搭建

1. NTP简介 NTP(Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协议.它的用途是把计算机的时钟同步到世界协调时UTC,其精度在局域网内可达0.1ms,在互联网上绝大多数的地方其精度可以达到1-50ms. NTP服务器就是利用NTP协议提供时间同步服务的. 2. NTP服务器安装 yum -y install ntp vim /etc/ntp.conf 允许任何ip的客户机都可以进行时间同步 将restrict default kod n

Centos6系列搭建NTP时间服务器

NTP(Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协议.它的用途是把计算机的时钟同步到世界协调时UTC,其精度在局域网内可达0.1ms,在互联网上绝大多数的地方其精度可以达到1-50ms. NTP官方站点:http://www.ntp.org/ ,NTP服务基于C/S(Client/Server)架构,每台机器既可以是NTPserver,也可以为NTPclient. 在linux中有两种查看系统时间的方法: date        #查看系

搭建内网NTP时间服务器

          搭建内网的NTP时间服务器 需求:搭建一台时间服务器,使得无外网的服务器可以同步时间. 一.环境 1. [[email protected] ~]# cat /etc/redhat-release 2. CentOS release 6.8 (Final) 3. [[email protected] ~]# hostname -I 4. 10.0.0.61 172.16.1.61 5. #外网10.0.0.61;内网172.16.1.61 二.安装ntp并检查是否安装成功 1

部署企业内部NTP时间服务器

部署企业内部NTP时间服务器,假设node0作为NTP时间服务器主节点,node1, node2都是ntp客户端从节点,内部网段10.10.75.0. 所有节点通过yum命令安装ntp,命令如下:yum install ntp . 修改node0节点的配置文件/etc/ntp.conf,内容如下:server 0.cn.pool.ntp.orgserver 0.asia.pool.ntp.orgserver 3.asia.pool.ntp.orgrestrict 0.cn.pool.ntp.or

局域网部署ntp时间服务器

搭建ntp时间服务器 时间服务器配置 须切换到root用户,再进行操作 检查ntp是否安装 [[email protected] ~]# rpm -qa | grep ntp 如果没有安装,须安装 [[email protected] ~]# yum -y install ntp ntpdate 修改ntp配置文件 [[email protected] ~]# vim /etc/ntp.conf 修改内容如下 #授权172.16.1.0-172.16.1.255网段上的所有机器可以从这台机器上查

ntp时间服务器的安装和配置搭建

配置好yum源后,执行yum install ntp ntpdate -y即可安装ntp时间服务器删除已安装服务器yum –y remove ntpdatechkconfig ntpd on 设置开机启动然后vi /etc/ntp.conf 进入ntp时间服务器配置文件修改配置/etc/init.d/ntpd restart 重启ntp时间服务器/etc/init.d/ntpd stop 停止ntp时间服务器service ntpd start 启动ntp时间服务器ntpq -p 查看ntp服务