ntp服务

软件:  ntp  tzdata

配置文件

/etc/ntp.conf   ntp配置文件

/usr/share/zoneinfo  时区对应档案

/etc/sysconfig/clock  设定时区

/etc/localtime  开机后对应文件复制到此处

/bin/date 时间修改与显示

/sbin/hwclock 硬件时间

/usr/sbin/ntpd ntpd服务

/usr/sbin/ntpdate  客户端时间校证

 

  
  
  
  
  1.  For more information about this file, see the man pages 
  2. # ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5). 
  3.  
  4. driftfile /var/lib/ntp/drift 
  5.  
  6. # Permit time synchronization with our time source, but do not 
  7. # permit the source to query or modify the service on this system. 
  8. restrict default kod nomodify notrap nopeer noquery 
  9. restrict -6 default kod nomodify notrap nopeer noquery 
  10.  
  11. # Permit all access over the loopback interface.  This could 
  12. # be tightened as well, but to do so would effect some of 
  13. # the administrative functions. 
  14. restrict 127.0.0.1 
  15. restrict -6 ::1 
  16.  
  17. # Hosts on local network are less restricted. 
  18. #restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap 
  19.  
  20. # Use public servers from the pool.ntp.org project. 
  21. # Please consider joining the pool (http://www.pool.ntp.org/join.html). 
  22. server 0.centos.pool.ntp.org 
  23. server 1.centos.pool.ntp.org 
  24. server 2.centos.pool.ntp.org 

driftfile 后面的文件记录误差时间

server 设定上层服务器  prefer 参数设定优先使用

restrict 设定放行范围

restrict 【ip】 mask 【parameter】

  
  
  
  
  1. restrict 192.168.0.0 mask 255.255.255.0 nomodify notrap 

parameter参数:

ignore 拒绝所有NTP联机

nomodify 客户端不能使用ntpc与ntpq修改服务器参数 但仍然可以网络校时

noquery 不能使用ntpc与ntpq查询服务器时间

notrap 不提供trap远程登录

notrust 拒绝没有认证客户端

kod 组织“kiss of death“攻击

nopeer 不与其他同一层ntp服务器同步

开启服务 /etc/init.d/ntpd start

开机启动 chkconfig on

你可能感兴趣的:(ntp)