NTP时间服务器的安装配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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时间服务器的安装配置的主要内容,如果未能解决你的问题,请参考以下文章