




已阅读5页,还剩7页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
Network Time Protocol(NTP,网络时间协议)用于同步它所有客户端时钟的服务。NTP服务器将本地系统的时钟与一个公共的NTP服务器同步然后作为时间主机提供服务,使本地网络的所有客户端能同步时钟。 同步时钟最大的好处就是相关系统上日志文件中的数据,如果网络中使用中央日志主机集中管理日志,得到的日志结果就更能反映真实情况。在同步了时钟的网络中,集中式的性能监控、服务监控系统能实时的反应系统信息,系统管理员可以快速的检测和解决系统错误。安装配置NTP服务 下面将介绍NTP服务器的简单配置:第一步,安装NTP服务 一般的Linux发行版都会带ntp软件包,如果你的系统中还没有安装,就使用rpm命令安装此包,以下以centos系统为例配置一台时间服务器:查找当前系统是否已安装ntprootlocalhost # rpm -qa | grep ntpchkfontpath-1.10.1-1.1ntp-4.2.2p1-8.el5.centos.1 (这个就是已经安装的RPM包)如果没有安装,可用下例命令安装:rootlocalhost # rpm -ivh ntp-4.2.2p1-8.el5.centos.1.rpm第二步,配置NTP服务器NTP服务器配置如下: 编辑配置文件/etc/ntp.confrestrict default kod nomodify notrap nopeer noqueryrestrict -6 default kod nomodify notrap nopeer noqueryrestrict restrict -6 :1restrict mask nomodify notrapserver25server 0.server 1.server 2.server # local clockfudge stratum 10配置文件说明如下: 第一行restrict、default定义默认访问规则,nomodify禁止远程主机修改本地服务器配置,notrap拒绝特殊的ntpdq捕获消息,noquery拒绝btodq/ntpdc查询(这里的查询是服务器本身状态查询)。 restrict mask nomodify notrap 这句是手动增加的,意思是从-54的服务器都可以使用我们的NTP服务器来同步时间。 server 25 这句也是手动增加的,指明局域网中作为NTP服务器的IP;配置文件的最后两行作用是当服务器与公用的时间服务器失去联系时以本地时间为客户端提供时间服务。端口ntp使用udp协议,记得开放其123端口。启动NTPD 为了使NTP服务可以在系统引导的时候自动启动,执行: #chkconfig ntpd on 启动ntpd:service ntpd startNTP客户端配置: 在客户端手动执行“ntpdate 服务器IP”来同步时间; 另可以使用crond来定时同步时间: 以root身份运行周期性任务:rootsupersun root# crontab -e添加以下内容,每15分钟更新一下时间:15 * * * * ntpdate 服务器IP 此处的ntpdate命令包含在ntp软件包中,记得确认系统中是否已安装。第三步,检查时间服务器是否正确同步 使用下面的命令检查时间服务器同步的状态: #ntpq -p 一个可以证明同步有问题的证据是:所有远程服务器的jitter值是4000并且delay和reach的值是0。可能的原因有: 有防火墙阻断了与server之间的通讯,即123端口是否正常开放; 此外每次重启NTP服务器之后大约要35分钟客户端才能与server建立正常的通讯连接,否则你在客户端执行“ntpdate 服务器ip”的时候将返回: 27 Jun 10:20:17 ntpdate21920: no server suitable for synchronization foundLinux下NTP服务器的配置 Linux下的ntp软件不但能自动与互联网上的时钟保持同步,同时本身已经是一台SNTP服务器了,可以供局域网内的电脑校对时间。服务配置如下:第一步 安装软件包 我用的是RPM包安装的,或者到/ntp/去下载xntp重新编译一个新的。 #rpm -qa | grep ntp ntp-4.2.0-7 chkfontpath-1.10.0-1第二步让LAN的时间服务器(第三级)与互联网上的时间服务器(第一或者第二级)同步 修改/etc/ntp.conf这是NTP的主要配置文件,里面设置了你用来同步时间的时间服务器的域名或者IP地址,下面是到 互联网同步时间的最基本的配置: 首先定义我们喜欢的时间服务器: server server 接下来,我们设置上面两台服务器的访问权限,在这个例子中我们不允许它们修改或者查询我们配置在Linux上的NTP服务器mask 55 nomodify notrap noquery mask 55 nomodify notrap noquery 掩码55是用来 限制远程NTP服务器的掩码地址。 接下来设置允许访问我们时间服务器的客户机地址,通常这些服务器都应该位于我们自己局域网内。请注意,配置中noquery已经去掉了: restrict mask notrust nomodify notrap 在上例中,掩码地址扩展为255,因此从-54的服 务器都可以使用我们的NTP服务器来同步时间。 最后,也是最重要的是默认的限制配置要从你配置文件中删除,否则它将覆盖你所有的配置选项,你将发现如果不删除该配置,你的时间服务器将只能和自己通讯。 如果ntp.conf中有以下一行,请将它注释:#restrict default ignore 保存你的配置文件,然后对每个你在ntp.conf里配置的时间服务器执行2编查询命令: # 27 Jun 10:12:01 ntpdate25475: adjust time offset -0.127154 sec # 27 Jun 10:12:06 ntpdate25478: adjust time offset 0.010008 sec第三步 启动NTP进程 为了使NTP服务可以在系统引导的时候自动启动,执行: #chkconfig ntpd on启动/关闭/重启NTP/查看状态的命令是:#/etc/init.d/ntpd start #/etc/init.d/ntpd stop #/etc/init.d/ntpd restart #/etc/init.d/ntpd status切记每次修改了配置文件后都需要重新启动服务来使配置生效。可以使用下面的命令来检查NTP服务 是否启动,你应该可以得到一个进程ID号:#pgrep ntpd第四步 检查时间服务器是否正确同步 使用下面的命令检查时间服务器同步的状态:#ntpq -p一个可以证明同步问题的证据是所有远程服务器的jitter值是4000并且delay和reach的值是0。可能的原因有: 配置文件中的restrict default ignore没有被注释 有防火墙阻断了与server之间的通讯 此外每次重启NTP服务器之后大约要35分钟客户端才能与server建立正常的通讯连接,否则你执行ntpdate ip的时候将返回: 27 Jun 10:20:17 ntpdate21920: no server suitable for synchronization found第五步 客户端与ntp服务器同步时间在客户端安装NTP,安装过程同NTP在服务器端。 客户端开启ntp服务 #service ntpd start 与ntp服务器同步 #ntpdate (ntp服务器地址)接下来编辑 /etc/ntp.confntp.conf#server # local clockfudge stratum 10server .hk # A stratum 1 server at server 192.168.x.y #x.y为你前面所装机器在局域网里的IPdriftfile /etc/ntp/driftbroadcastdelay 0.008authenticate nokeys /etc/ntp/keysrestrict 192.168.x.0 mask notrust nomodify notrap/x.0为你所在局域网段restrict restrict 192.168.x.y #x.y为你前面所装机器在局域网里的IP#restrict default ignore#同时配置#/sbin/service ntpd start /启动ntpd 参数可为restart start stop#/sbin/chkconfig -add ntpd#/sbin/chkconfig -level 234 ntpd on /配置在开机时运行如何检查?#netstat -unl | grep 123 /查看123端口#ndptrace 192.168.x.y /看校对时间过程,出现offset即为正常 否则为time out# ntpq -p如果出现 jitter的值 为4000则是防火墙或者网络问题正常为remote refid st t when poll reach delay offset jitter=*clock.nc.fukuok .GPS. 1 u 43 64 37 19.067 -6.884 10.339+clock.tl.fukuok .GPS. 1 u 36 64 35 19.670 -3.259 2.341LOCAL(0) LOCAL(0) 5 l 45 64 37 0.000 0.000 0.001几点注意:1.虽然ntp溢出问题较少 ,但建议配置大型网罗的时候,不要装在重要数据库服务器或者Web主机上(Ntp是root权限)2.在遇到问题之前,先看看ntp自带的文档。3.防火墙问题的话,送一句配置$TMP -t filter -A INPUT -p udp -destination-port 123 -j ACCEPT也就是123 udp in 全部接受。如果子网IP仍然提示4000错误,可以把restrict mask notrust nomodify notrap改为restrict mask nomodify对于权限参数的说明可以参考台湾鸟哥的文章的说明:rootroot# vi /etc/ntp.conf# 1. 關於權限設定部分#權限的設定主要以restrict 這個參數來設定,主要的語法為:#restrict IP mask netmask_IP parameter#其中IP可以是軟體位址,也可以是 default ,default 就類似 咯!#至於 paramter則有:#ignore:關閉所有的NTP 連線服務#nomodify:表示Client 端不能更改 Server 端的時間參數,不過,#Client端仍然可以透過 Server 端來進行網路校時。#notrust:該 Client 除非通過認證,否則該 Client 來源將被視為不信任網域#noquery:不提供 Client 端的時間查詢#如果 paramter完全沒有設定,那就表示該 IP (或網域) 沒有任何限制!#在我們這個例子當中,因為拒絕所有,僅開放/24 ,#並且讓 以及本機 IP 可以不受限制,所以:restrict default ignore# 關閉所有的 NTP 要求封包restrict #開啟內部遞迴網路介面 lorestrict # 主機本身的 IP 也同時開啟!restrict 0mask 55 nomodify# 針對另一個IP 開放讓他可以更新時間!restrict mask nomodify# 在網域裡面的client 可以進行網路校時,但不會影響 Server !# 2. 上層主機的設定#上層主機我們選擇.tw ,要設定上層主機主要以 server#這個參數來設定,語法為:#server IP|FQDN prefer#Server 後面接的就是我們上層 Time Server 囉!而如果 Server 參數#後面加上perfer 的話,那表示我們的 NTP 主機主要以該部主機來作為#時間校正的對應。另外,為了解決更新時間封包的傳送延遲動作,#所以可以使用driftfile 來規定我們的主機#在與 Time Server 溝通時所花費的時間,可以記錄在 driftfile#後面接的檔案內,例如下面的範例中,我們的NTP server 與#.tw連線時所花費的時間會記錄在 /etc/ntp/drift 檔案內# 先輸入第二層主機的IPserver 0 preferserver 0 preferserver 55 prefer# 第一層的主機就列為參考用!server 0server 1server 51# 當然要讓Server 可以進入我們的 NTP 主機啦!權限要開放啊!restrict 0restrict 0restrict 55restrict 0restrict 1restrict 51driftfile /etc/ntp/drift最后附上我的修改过后的/etc/ntp.conf文件。参考了以下几篇文章:在RedHat9下配置时间服务器时间同步NTP服务器的配置原创linux NTP配置簡易 NTP 伺服器設定# Prohibit general access to this service.#restrict default ignorerestrict mask 55 nomodify notrap noqueryrestrict mask 55 nomodify notrap noqueryrestrict mask 55 nomodify notrap noqueryrestrict mask 55 nomodify notrap noquery# Permit all access over the loopback interface. This could# be tightened as well, but to do so would effect some of# the administrative functions.restrict # - CLIENT NETWORK -# Permit systems on this network to synchronize with this# time service. Do not permit those systems to modify the# configuration of this service. Also, do not use those# systems as peers for synchronization.restrict mask nomodify# - OUR TIMESERVERS - # or remove the default restrict line # Permit time synchronization with our time source, but do not# permit the source to query or modify the service on this system.# restrict mytrustedtimeserverip mask 55 nomodify notrap noquery# server mytrustedtimeserverip# - NTP MULTICASTCLIENT -#multicastclient# listen on default # restrict mask 55 notrust nomodify notrap# restrict mask notrust nomodify notrap# - GENERAL CONFIGURATION -# Undisciplined Local Clock. This is a fake driver intended for backup# and when no outside source of synchronized time is available. The# default stratum is usually 3, but in this case we elect to use stratum# 0. Since the server line does not have the prefer keyword, this driver# is never used for synchronization, unless no other other# synchronization source is available. In case the local host is# controlled by some external source, such as an external oscillator or# another protocol, the prefer keyword would cause the local host to# disregard all other synchronization sources, unless the kernel# modifications are in use and declare an unsynchronized condition.#server fudge stratum 10# Drift file. Put this in a directory which the daemon can write to.# No symbolic links allowed, either, since the daemon updates the file# by creating a temporary in the same directory and then rename()ing# it to the file.#driftfile /var/lib/ntp/driftbroadcastdelay0.008# Authentication delay. If you use, or plan to use someday, the# authentication facility you should make the programs in the auth_stuff# directory and figure out what this number should be on your machine.#authenticate yes# Keys file. If you want to diddle your server at run time, make a# keys file (mode 600 for sure) and define the key number to be# used for making requests.# PLEASE DO NOT USE THE DEFAULT VALUES HERE. Pick your own, or remote# systems might be able to reset your clock at will. Note also that# ntpd is started with a -A flag, disabling authentication, that# will have to be removed as well.#keys/etc/ntp/keysLinux 配置NTP服务器2012-06-14 11:11:41|分类:Linux|字号订阅/s/blog_4899b7bd0100yegb.html/blog/13138221.验证Server上的NTP版本roottestdb # rpm -q ntpntp-4.2.2p1-9.el5_4.1如果没有安装,需要在安装光盘的Server目录下找到ntp-*.rpm并安装2.修改有关权限的设置roottestdb # vim /etc/ntp.conf常用选项:ignore: 禁止所有的NTP请求包进入nomodify: 禁止其他计算机更改本机NTP服务的设置,但可以通过NTP服务器进行网络校时notrust: 禁止所有未通过认证的NTP包进入noquery: 禁止其他计算机查询本机NTP服务的状态我这里的设置:restrict default nomodify notrap noqueryrestrict restrict mask nomodify notraprestrict mask nomodify notrapserver 0.server 1.server 2.server 3.server fudge stratum 103.启动NTProottestdb # /etc/init.d/ntpd start4.停止NTProottestdb # /etc/init.d/ntpd stop5.重启NTProottestdb # /etc/init.d/ntpd restart6.设置NTP随系统启动自动加载roottestdb # chkconfig ntpd on7.检查NTP服务同步状态roottestdb # ntpq -p8.客户端时间同步命令ntpdate 8 (此IP地址为配置的本地NTP服务器的IP地址)当用ntpdate -d 来查询时会发现导致 no server suitable for synchronization found 的错误的信息有以下2个:错误1.Server dropped: Strata too high在ntp客户端运行ntpdate serverIP,出现no server suitable for synchronization found的错误。在ntp客户端用ntpdate d serverIP查看,发现有“Server dropped: strata too high”的错误,并且显示“stratum 16”。而正常情况下strat
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 中职校考模拟试题及答案
- 公益基金会合作协议范本新5篇
- 高二会考模拟试题及答案
- 高中联合模拟试题及答案
- 2025年临床检验医学实验室技能操作考察卷答案及解析
- 自如管家考试模拟试题及答案
- 2025年核医学诊断学综合理论测试答案及解析
- 2025年产科新生儿窒息处理技巧考试卷答案及解析
- 2025年妇产科妊娠合并糖尿病诊疗技术考试答案及解析
- 泉州事业考试试题及答案
- 葫芦种植技术
- 热敏电阻器配方设计与制备工艺详解
- 监理工程师题库检测试题打印含答案详解【完整版】
- 《英语(第三版)》课件-Unit 3
- 2025-2026学年九年级英语上学期第一次月考 (江苏省连云港专用)原卷
- 2《归园田居》任务式公开课一等奖创新教案(表格式)统编版高中语文必修上册
- 银行文明礼仪课件
- 虚拟电厂运行关键课件
- GB/T 18380.12-2022电缆和光缆在火焰条件下的燃烧试验第12部分:单根绝缘电线电缆火焰垂直蔓延试验1 kW预混合型火焰试验方法
- 《空气动力学》配套教学课件
- 安全经验分享食物中毒
评论
0/150
提交评论