当前位置: > CentOS > CentOS教程 >

centos7 NTP 服务器配置

时间:2016-07-13 12:09来源:linux.it.net.cn 作者:IT
  1. 服务器安装ntp
    # yum install -y ntp
  2. 开启NTP服务
    # systemctl enable ntpd
    # systemctl start ntpd
  3. 如果防火墙启用,则设置允许访问ntp服务。
    # firewall-cmd --add-service=ntp --permanent
    # firewall-cmd --reload
    # firewall-cmd --list-all
  4. 编辑 /etc/ntp.conf
    修改server为容易访问的时间服务器。例如
    server 0.cn.pool.ntp.org
    server 1.asia.pool.ntp.org
    server 2.asia.pool.ntp.org
    增加restrict,指定本地地址范围。例如
    restrict 192.168.0.0 mask 255.255.0.0
  5. 重启服务
    # systemctl restart ntpd
  6. 检查服务端口。默认为udp 123端口。
    # netstat -an|grep 123
  7. 客户端运行ntpdate <server>进行时间同步。
    可以写入crontab。例如,每半小时进行一次同步操作。假设NTP服务器地址为192.168.0.123。
    */30 * * * * /usr/sbin/ntpdate 192.168.0.123

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容