NTP 安装

每次时间同步都是连接外网,最近公司架构调整,服务器不能上网,就做了台内网ntp服务器,做下笔记!

//安装ntp服务
[[email protected] ~]# yum install ntp

//允许BIOS与系统时间同步
[[email protected] ~]# vim /etc/sysconfig/ntpd
SYNC_HWCLOCK=yes

[[email protected] ~]# grep -Ev ‘^#|^$‘ /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
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

//允许的局域网络段
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

如果无法与上层ntp server通信以本地时间为标准时间
server 127.127.1.0
fudge 127.127.1.1 stratum 8
includefile /etc/ntp/crypto/pw

keys /etc/ntp/keys

详解
restrict <IP 地址> <子网掩码> |<网段> <子网掩码> [ignore|noquery|notrap|nomodiy|notrust|nokod]
ignore :关闭所有ntp服务
noquery:不提供ntp服务
notrap:不提供trap远程事件登录的功能
nomodiy:表示客户端不能更改ntp服务器的时间参数,但可以通过ntp服务器进行时间矫正
notrust:拒绝没有通过认证的客户端
nokod:kod技术可以组织一种dos攻击

//服务端执行,知道何时ntp server完成了和自身同步的过程
[[email protected] ~]# watch ntpd -p

//客户端排错可以用这
[[email protected] ~]# ntpdate -d 192.168.1.204
12 Dec 13:45:02 ntpdate[7735]: ntpdate [email protected] Sat Nov 23 18:21:48 UTC 2013 (1)
Looking for host 192.168.1.204 and service ntp
host found : localhost
transmit(192.168.1.204)
receive(192.168.1.204)
transmit(192.168.1.204)
receive(192.168.1.204)
transmit(192.168.1.204)
receive(192.168.1.204)
transmit(192.168.1.204)
receive(192.168.1.204)
server 192.168.1.204, port 123
stratum 6, precision -23, leap 00, trust 000
refid [192.168.1.204], delay 0.02608, dispersion 0.00003
transmitted 4, in filter 4
reference time:    d834ff41.01e47d7f  Fri, Dec 12 2014 13:44:33.007
originate timestamp: d834ff5e.9ab47225  Fri, Dec 12 2014 13:45:02.604
transmit timestamp:  d834ff5e.6fa7c51a  Fri, Dec 12 2014 13:45:02.436
filter delay:  0.02626  0.02634  0.02644  0.02608 
         0.00000  0.00000  0.00000  0.00000 
filter offset: 0.167760 0.167849 0.167936 0.167741
         0.000000 0.000000 0.000000 0.000000
delay 0.02608, dispersion 0.00003
offset 0.167741
12 Dec 13:45:02 ntpdate[7735]: adjust time server 192.168.1.204 offset 0.167741 sec

问题:no server suitable for synchronization found
安装好ntp后,但是客户端不同步时间,报错,刚开始认为是防火墙,防火墙关了,selinux也关了,还是报错
最后在配置文件中添加上这行才搞定

restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
时间: 2024-11-09 11:49:20

NTP 安装的相关文章

CentOS下NTP安装配置

安装yum install ntp 配置文件 /etc/ntp.confrestrict default kod nomodifynotrap nopeer noqueryrestrict -6 default kod nomodify notrap nopeer noqueryrestrict 127.0.0.1restrict -6 ::1# 用restrict控管权限# nomodify - 用户端不能更改ntp服务器的时间参数# noquery - 用户端不能使用ntpq,ntpc等命令

Linux校时ntp安装和使用

第一种方法(服务器可以连外网): [[email protected] ~]# yum install -y ntp      //安装时间同步程序 [[email protected] ~]# service ntpd start [[email protected] ~]# ntpdate -u cn.pool.ntp.org    //同步网络时间 [[email protected] ~]# vi /etc/ntp.conf   //配置时间同步 在合适位置新增以下三行:restrict

关于openstack的NTP安装

一.NTP的概念 NTP是Network Time Protocol的缩写,又称为网络时间协议.是用来使计算机时间同步化的一种协议,它可以使计算机对其服务器或时钟源(如石英钟,GPS等等)做同步化,它可以提供高精准度的时间校正(LAN上与标准间差小于1毫秒,WAN上几十毫秒),且可介由加密确认的方式来防止恶毒的协议攻击. 二.NTP的安装 (1)controller 节点 安装NTP: # apt-get install ntp -y 配置NTP: 修改配置文件/etc/ntp.conf # v

linux ntp安装简单配置

公司的一台服务器硬件坏了挂了,其中就有ntp服务端,写一下ntp服务端的简单配置. 1.首先安装ntp,centos 系统执行 yum install ntp 2.写入配置文件/etc/ntp.conf如下 restrict 192.168.18.153 mask 255.255.255.0 nomodify notrap restrict 192.168.18.0 mask 255.255.255.0 nomodify server time.pool.aliyun.com #server 1

纠结的NTP安装过程

为了部署实验用的openstack环境,其中有NTP的安装环节.在这个过程中,真是折腾了一下午...遇到了一些问题! 由于公司内部网络管理的原因,很多网站没有办法访问,比如公开的时间服务站点,我找了几个都没有办法访问,于是乎,我就选择了选择将openstack的controller节点node0作为time server,其他的节点作为client. 我的openstack的基础服务器上安装的linux系统是centos7.首先按照openstack官网的说法,安装了chrony 2.1.1的版

CentOS7 NTP 安装配置

NTP 网络时间协议用来同步网络上不同主机的系统时间.你管理的所有主机都可以和一个指定的被称为 NTP 服务器的时间服务器同步它们的时间.而另一方面,一个 NTP 服务器会将它的时间和任意公共 NTP 服务器,或者你选定的服务器同步.由 NTP 管理的所有系统时钟都会同步精确到毫秒级. 在公司环境中,如果他们不想为 NTP 传输打开防火墙,就有必要设置一个内部 NTP 服务器,然后让员工使用内部服务器而不是公共 NTP 服务器.在这个指南中,我们会介绍如何将一个 CentOS 系统配置为 NTP

windows ntp安装及调试

Setting up NTP on Windows It's very helpful that Meinberg have provided an installer for the highly-respected and high-accurate NTP software for Windows users - my thanks to them.  This Web page provides a quick guide to installing NTP on Windows XP,

Meinberg NTP安装配置

https://www.meinbergglobal.com/english/sw/ntp.htm https://www.meinbergglobal.com/download/ntp/windows/ntp-4.2.8p9-win32-setup.exe 配置: C:\Program Files (x86)\NTP\etc\ntp.conf restrict 0.0.0.0 mask 0.0.0.0 nomodify   # Use drift file  driftfile "C:\Pro

linux的ntp安装心得

1.ntp4.2.4之前的版本都存在一个很严重的BUG,当ntp的启动参数里有同时有-g -x,并且在ntp.config中的server的校时服务器地址不可达时,会出现无论是start,stop,restart服务都会报错. 报错内容:Starting ntpd: ERROR:only one panicgate option allowed 这个BUG的描述可以参见:https://bugzilla.redhat.com/show_bug.cgi?id=228424 解决办法:1.升级版本.