`
wyunfuby
  • 浏览: 5378 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

在linux下搭建NTP服务器

阅读更多

最近搭建了NTP时间服务器,下面就将整个过程记录下来,为他人也为自己,即使很简单。

  具体步骤:1,下载NTP时间服务器的.tar.gz包到linux下,解压到自己喜欢的目录

                       2,直接./configure,然后make

                       3,这样在众多文件夹里面就有叫/ntpd和/ntpq、/ntpdate的文件夹了,这里面就有编译生成的命令了,可以拿来直接使用的。很多人觉得要make install,我个人觉得没必要。

                       4,简单的NTP服务器需要,一个ntpd指令,一个ntp.conf配置文件,再一个ntpq指令就够了,如果想做客户端的话当然得要用ntpdate指令了。

                       5,配置文件要考在/etc/ntp.conf,如果做服务器这里的配置文件可以这么写,见底部。

      遇到的问题:两台linux之间,有时#./ntpd 后,#ps -e 可以看到该进程,但是客户端就是连不上,虽然可以ping通,最后发现果然和google上说的一样,要注意时间,有的NTP服务器要一个小时才能正常工作(鸟哥说的),所以如果你的服务器还是不好使,不妨等上一会,然后在试。

我的配置文件:

# For more information about this file, see the man pages

# ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5).

driftfile /var/lib/ntp/drift

# Permit time synchronization with our time source, but do not

# permit the source to query or modify the service on this system.

restrict default nomodify

restrict -6 default  nomodify

# Permit all access over the loopback interface.  This could

# be tightened as well, but to do so would effect some of

# the administrative functions.

restrict 127.0.0.1 

restrict -6 ::1

# Hosts on local network are less restricted.

#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

# Use public servers from the pool.ntp.org project.

# Please consider joining the pool (http://www.pool.ntp.org/join.html).

#server 0.fedora.pool.ntp.org iburst

#server 1.fedora.pool.ntp.org iburst

#server 2.fedora.pool.ntp.org iburst

#server 3.fedora.pool.ntp.org iburst

#broadcast 192.168.1.255 autokey # broadcast server

#broadcastclient   # broadcast client

#broadcast 224.0.1.1 autokey  # multicast server

#multicastclient 224.0.1.1  # multicast client

#manycastserver 239.255.254.254  # manycast server

#manycastclient 239.255.254.254 autokey # manycast client

# Undisciplined Local Clock. This is a fake driver intended for backup

# and when no outside source of synchronized time is available. 

server 127.127.1.0 # local clock

fudge 127.127.1.0 stratum 10 

# Enable public key cryptography.

#crypto

includefile /etc/ntp/crypto/pw

# Key file containing the keys and key identifiers used when operating

# with symmetric key cryptography. 

keys /etc/ntp/keys

# Specify the key identifiers which are trusted.

#trustedkey 4 8 42

# Specify the key identifier to use with the ntpdc utility.

#requestkey 8

# Specify the key identifier to use with the ntpq utility.

#controlkey 8

# Enable writing of statistics records.

#statistics clockstats cryptostats loopstats peerstats

 

分享到:
评论

相关推荐

    linux 搭建内网NTP服务器

    下面将详细介绍如何在Linux内网环境中搭建NTP服务器。 首先,我们需要了解NTP的工作原理。NTP通过与互联网上的公共NTP服务器或其他已知准确的时间源进行通信,来校准本地系统时钟。它利用UDP协议在端口123上进行...

    Linux离线安装NTP服务,内网环境下配置本地时间同步

    Linux离线安装NTP服务,内网环境下配置本地时间同步 多台服务器安装 1、常用命令 rpm -qa | grep ntp #查询已安装的ntp版本信息等 rpm -e --nodeps ntp-4.2.6p5-29.el7.centos.2.x86_64 #卸载 systemctl status ...

    Suselinux11NTP服务器端搭建设置宣贯.pdf

    Suselinux11 NTP服务器端搭建设置宣贯 1. 查看系统时钟 在 Linux 系统中,查看系统时钟可以使用 `date` 命令。该命令将显示当前系统的日期和时间信息。系统时钟是 Linux 内核时钟,用于记录系统的当前时间。 2. ...

    Linux下配置NTP架设本地的时间服务器

    本文将详细介绍如何在Linux系统下配置NTP架设本地的时间服务器。 一、NTP协议简介 NTP是一个基于UDP协议的网络时间同步协议,用于将计算机的系统时间与一个精确的时间源保持同步。NTP协议可以使系统与一个精确的...

    LINUX NTP服务器搭建和客户端配置

    本文将详细介绍如何在Linux系统上搭建NTP服务器以及配置客户端,特别是针对CISCO交换机和路由器设备。 首先,需要了解NTP(Network Time Protocol)网络时间协议。NTP允许网络中的设备通过互联网同步其系统时钟,...

    ESXi时间同步测试,与Windows搭建的NTPserver无法同步的原因[整理].pdf

    本文主要讨论了ESXi时间同步测试中遇到的问题,即ESXi无法与Windows搭建的NTP服务器同步,而可以与Linux搭建的NTP服务器同步。为查找问题根源,搭建了测试环境,进行抓包分析,研究其中发生的过程。 首先,我们需要...

    Suselinux11NTP服务器端搭建设置.pdf

    在 Linux 操作系统中,NTP 服务器端搭建设置是非常重要的,本文将详细介绍 Suse Linux 11 NTP 服务器端搭建设置的步骤和相关知识点。 一、查看系统时钟和硬件时钟 在 Linux 操作系统中,系统时钟(也称为软件时钟...

    搭建NTP服务器所需要的离线安装包

    搭建NTP服务器所需要的离线安装包,使用方式 #安装ntp服务器以及其依赖包 rpm -ivh autogen-libopts-5.18-5.el7.x86_64.rpm rpm -ivh ntp-4.2.6p5-18.el7.centos.x86_64.rpm rpm -ivh ntpdate-4.2.6p5-18.el7.centos....

    linux下ntp时间服务器的搭建与配置.docx

    下面将详细讲解如何在Linux系统中设置NTP服务器。 1. **服务端的配置** **第一步,安装NTP服务**: 在Linux系统中,通常使用`yum`或`apt-get`来安装NTP服务,具体取决于你的Linux发行版。对于RHEL/CentOS,可以...

    linux 构建ntp 服务器

    安装ntp程序后服务器即使ntp服务器端又是ntp客户端,启用了ntp服务,同时在本机执行ntpdate 同步时间会出现问题”the NTP socket is in use, exiting”,解决办法是停止本机的ntp服务程序。 NTP (server,client) ...

    Linux/windows 服务端/客户端 ntp一键设置脚本

    一键设置ntp服务器和客户端,在红帽Linux和win2008R2实测。使用前请先打开脚本看清楚说明。

    linux服务器ntp配置方法

    本文将详细介绍 Linux 服务器 NTP 配置方法,包括搭建时间同步服务器、配置时间同步客户机和服务端验证。 一、搭建时间同步服务器 1. 安装 NTP 服务器 使用 RPM 包管理器安装 NTP 服务器,可以使用以下命令: `...

    局域网搭建NTP时间服务器及配置借鉴.pdf

    2. 利用Linux系统搭建NTP服务器。 本文中采用第一种方案,即在Windows 2003服务器上安装NTP软件。下载地址为http://www.meinberg.de/download/ntp/windows/ntp-4.2.4p7@copenhagen-o-win32-setup.exe。 **时间...

    Suselinux11NTP服务器端搭建设置借鉴.pdf

    Suselinux11NTP服务器端搭建设置借鉴.pdf

    Linux下NTP 的配置方式

    Linux下的NTP(Network Time Protocol)是用来同步网络中不同计算机的时间协议,对于精确时间的管理至关重要,尤其在服务器集群和分布式系统中。本篇将详细阐述如何在Linux系统中配置NTP服务,以及NTP服务配置文件的...

    linux配置ntp时间同步.txt

    NTP服务器将本地系统的时钟与一个公共的NTP服务器同步然后作为时间主机提供服务,使本地网络的所有客户端能同步时钟。 同步时钟最大的好处就是相关系统上日志文件中的数据,如果网络中使用中央日志主机集中管理日志...

    局域网搭建NTP时间服务器及配置参考.pdf

    "局域网搭建NTP时间服务器及配置参考" 一、局域网中时间不同步造成的问题 作为网络管理员,需要保证网络设备的稳定运行,及时处理网络中随时出现的故障。如果无法实现时间同步,就会增加处理故障的难度。例如: *...

Global site tag (gtag.js) - Google Analytics