码迷,mamicode.com
首页 > 其他好文 > 详细

centos搭建ntp时间服务器

时间:2017-05-24 22:44:25      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:搭建本地ntp服务器 centos

1、安装。

yum install -y ntp

2、开机启动。

chkconfig ntpd on

3、配置。

vim /etc/ntp.conf

修改restrict default kod nomodify notrap nopeer noquery

变成restrict default  nomodify notrap

添加以下这行,其中192.168.0.0 netmask是允许连接此服务器的ip段

restrict 192.168.0.0 netmask 255.255.0.0 nomodify notrap

保存退出

4、重启服务。

/etc/init.d/ntpd restart

5、防火墙放行。

vim /etc/sysconfig/iptables

-A INPUT -s 192.168.0.0/16 -j ACCEPT

centos搭建ntp时间服务器

标签:搭建本地ntp服务器 centos

原文地址:http://zhukeqiang.blog.51cto.com/8692790/1928995

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!