Linux配置NTP时间同步

在 Linux 系统中,配置 NTP 服务器(服务端)和 NTP 客户端(客户端)以确保系统时间的准确性涉及不同的步骤。下面是如何配置 NTP 服务端和客户端的详细说明。

NTP 服务端配置

  1. 安装 NTP 服务

    在 NTP 服务器上安装 NTP 服务包。

    • Debian/Ubuntu 系列:

      sudo apt update
      sudo apt install ntp
      
    • RHEL/CentOS 系列:

      sudo yum install ntp
      
    • Fedora:

      sudo dnf install ntp
      
  2. 配置 NTP 服务端

    编辑 NTP 配置文件 /etc/ntp.conf,配置 NTP 服务器作为时间源,并允许客户端访问它。配置文件示例如下:

    # 选择时间源
    server 0.centos.pool.ntp.org iburst
    server 1.centos.pool.ntp.org iburst
    server 2.centos.pool.ntp.org iburst
    server 3.centos.pool.ntp.org iburst
    
    # 允许客户端访问(修改为你的网络范围)
    restrict default nomodify notrap nopeer noquery
    restrict 127.0.0.1
    restrict ::1
    restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
    

    其中 restrict 指令用于控制访问权限。例如,restrict 192.168.1.0 mask 255.255.255.0 允许在 192.168.1.0/24 网络中的客户端访问 NTP 服务器。

  3. 启动并启用 NTP 服务

    • 启动 NTP 服务:

      sudo systemctl start ntpd
      
    • 设置 NTP 服务开机自启:

      sudo systemctl enable ntpd
      
    • 检查 NTP 服务状态:

      sudo systemctl status ntpd
      
  4. 防火墙配置

    确保防火墙允许 NTP 流量通过 UDP 端口 123。对于 firewalld,执行以下命令:

    sudo firewall-cmd --add-service=ntp --permanent
    sudo firewall-cmd --reload
    

NTP 客户端配置

  1. 安装 NTP 客户端

    在 NTP 客户端上安装 NTP 客户端包。

    • Debian/Ubuntu 系列:

      sudo apt update
      sudo apt install ntp
      
    • RHEL/CentOS 系列:

      sudo yum install ntp
      
    • Fedora:

      sudo dnf install ntp
      
  2. 配置 NTP 客户端

    编辑 NTP 客户端的配置文件 /etc/ntp.conf,指定 NTP 服务器的地址。配置文件示例如下:

    # 配置 NTP 服务器(指定你的 NTP 服务器地址)
    server 192.168.1.10 iburst  # NTP 服务器地址
    
    # 默认限制
    restrict default nomodify notrap nopeer noquery
    restrict 127.0.0.1
    restrict ::1
    

    其中 server 行指定 NTP 服务器的 IP 地址或域名。

  3. 启动并启用 NTP 客户端

    • 启动 NTP 客户端服务:

      sudo systemctl start ntpd
      
    • 设置 NTP 客户端服务开机自启:

      sudo systemctl enable ntpd
      
    • 检查 NTP 客户端服务状态:

      sudo systemctl status ntpd
      
  4. 防火墙配置

    确保防火墙允许 NTP 流量通过 UDP 端口 123(如果客户端上启用了防火墙)。同样,使用 firewalld

    sudo firewall-cmd --add-service=ntp --permanent
    sudo firewall-cmd --reload
    

验证 NTP 配置

在 NTP 客户端上
  • 查看 NTP 同步状态:

    ntpq -p
    

    这将显示当前 NTP 服务器的状态信息。

  • 查看系统时间:

    date
    
在 NTP 服务器上
  • 查看 NTP 同步状态:

    ntpq -p
    

    这将显示与客户端的同步状态以及 NTP 服务器的状态信息。

总结

  1. 配置 NTP 服务端:安装 NTP 服务、编辑配置文件 /etc/ntp.conf、启动服务并设置开机自启。
  2. 配置 NTP 客户端:安装 NTP 客户端、编辑配置文件 /etc/ntp.conf、启动服务并设置开机自启。
  3. 防火墙设置:确保 UDP 端口 123 是开放的,以允许 NTP 流量。
  4. 验证配置:使用 ntpq -pdate 命令检查时间同步状态。

通过这些步骤,你可以配置 Linux 系统的 NTP 服务端和客户端,确保时间的准确性和一致性。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

思静鱼

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值