首页 > 代码库 > NTP时间服务器的安装配置

NTP时间服务器的安装配置

$yum install -y ntp      #安装NTP服务包

$cd /etc

$cp ntp.conf ntp.conf.bak      #备份配置文件


$vim 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 192.168.240.129


#注册互联网服务器地址,用于本服务器与互联网的时间同步

server time.nist.gov

server 192.168.240.129

fudge 192.168.240.129 straatum 10


#启动ntpd服务

$service ntpd start


#查看和time.windows.com 的网络连通情况

$ntpq -p time.windows.com


#和time.windows.com 进行时间同步。

$ntpdate time.windows.com


NTP时间服务器的安装配置