美文网首页
CentOS配置NTP服务器及客户端

CentOS配置NTP服务器及客户端

作者: 醉卧毛毛虫 | 来源:发表于2019-12-17 17:42 被阅读0次

    1、服务端

    1.1 安装ntp服务

    yum  -y  install  ntp
    

    1.2 修改配置文件

    vi /etc/ntp.conf
    

    添加如下内容

    # 将这行给注释
    #restrict default nomodify notrap nopeer noquery
    
    # 然后添加这两行 ,意思是 允许IPV4 IPV6 查询 拒绝修改
    restrict -4 default kod notrap nomodify
    restrict -6 default kod notrap nomodify
    
    # 添加修改上层时间服务器,如果能联通外网,则不需要修改,
    server 0.rhel.pool.ntp.org iburst
    server 1.rhel.pool.ntp.org iburst
    server 2.rhel.pool.ntp.org iburst
    server 3.rhel.pool.ntp.org iburst
    # 如果联不通外网,则把上面几行注释,然后添加下面两行,意思是设置成时间服务器是自己
    server 127.127.1.0
    fudge 127.127.1.0 stratum 10
    

    1.3 启动服务并开机启动

    systemctl start ntpd && systemctl enable ntpd
    

    2、客户端

    2.1 安装ntp服务

    yum  -y  install  ntp
    

    2.2 修改配置文件

    vi /etc/ntp.conf
    

    添加如下内容

    # IP为NTP 服务端IP
    server   192.168.10.20   iburst
    

    2.3 启动服务并开机启动

    systemctl start ntpd && systemctl enable ntpd
    

    相关文章

      网友评论

          本文标题:CentOS配置NTP服务器及客户端

          本文链接:https://www.haomeiwen.com/subject/skftlctx.html