CentOS时间服务器搭建

restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery

restrict 127.0.0.1
restrict 192.168.10.0   mask 255.255.255.0    #这行是新添加的,让这个地址的能使用时间服务器,相当于acl控制
restrict -6 ::1

server ntp.fudan.edu.cn prefer #新添加了一个优先,prefer是表示优先的意思
server 0.rhel.pool.ntp.org
server 1.rhel.pool.ntp.org
server 2.rhel.pool.ntp.org

server  127.127.1.0     # local clock
fudge   127.127.1.0 stratum 10

driftfile /var/lib/ntp/drift
keys /etc/ntp/keys

启动服务

service ntpd start

netstat -tlunp

查看123udp端口是否启动起来,现在我们可以登陆客户机器同步了


[root@localhost ~]# ntpdate 192.168.10.231

16 Jun 18:25:53 ntpdate[10535]: step time server 192.168.10.231 offset 1538.540766 sec

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://127.0.0.1/wyyxsx.html