网络时间服务器IP地址(搭建内网必看)

在公司内网搭建一台ntp时间服务器,供局域网内所有机器平滑同步时间

公司局域网无法连接internet

概念:NTP是网络时间协议(Network Time Protocol),它是用来同步网络中各个计算机的时间的协议。

资源:

时间服务器IP:192.168.138.140(ntp server)

需要同步时间的服务器:192.168.138.136 (ntp client)

linux 系统:CentOS release 6.9

配置ntp server

打开192.168.138.140机器的 /etc/ntp.conf

文件内容如下:

# 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 kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
# 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.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
#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
# 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

配置权限

文件中

# Permit time synchronization with our time source, but do not
# permit the source to query or modify the service on this system.
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery

上面是配置的说明,下面是配置项,这部分的配置是对客户端(需要同步时间的服务器)的请求的处理策略,默认是拒绝。有-6的那一行是对ipv6的配置。可选的配置如下:

ignore :关闭所有的 NTP 联机服务
nomodify:客户端不能修改服务端的时间参数,但客户端可以同步时间。
notrust :拒绝没有通过认证的客户端机器
noquery :不提供客户端的时间查询:用户端不能使用ntpq,ntpc等命令来查询ntp服务器
notrap :不提供trap远端登陆
nopeer :用于阻止主机尝试与服务器对等,并允许欺诈性服务器控制时钟
kod : 访问违规时发送 KoD 包。

把这两行注释掉,然后配置允许哪些机器可以跟ntp server同步时间

可以配置具体的机器,如:

restrict 192.168.138.136 nomodify

可以配置网段,如:mask配置子网掩码

restrict 192.168.0.0 mask 225.225.225.0 nomodify

配置时间源

如果可以连接internet,可以配置internet上的时间源,internet上的ntp服务器有很多,可以去搜一下。

如果不能连接internet,则把本机作为时间源即可,配置如下:

server 127.127.1.0
fudge 127.127.1.0 stratum 10

时间源可以配置多个,先使用最上面的机器,如果这个机器不可用(比如网络连不上),则会逐下使用。

启动或重启ntp服务

查看ntp服务运行状态:

/etc/init.d/ntpd status

启动ntp服务

/etc/init.d/ntpd start

客户端同步时间

使用ntpdate命令同步时间,ntpdate ntp_server_ip

ntpdate 192.168.138.140

linux系统,客户端的ntp服务不能启动,否则会报如下错误:

ntpdate[88383]: the NTP socket is in use , exiting

停止ntp服务

/etc/init.d/ntpd stop

如果要每隔一段时间就同步一次时间,可以配置crontab定时任务,如,每小时校验一次时间

 * */1 * * * root /usr/sbin/ntpdate 192.168.138.140 >/dev/null 2>&1

注意事项:

注意防火墙的问题,如果无法同步,则检查防火墙

内网搭建一台NTP时间服务器

声明:所有白马号原创内容,未经允许禁止任何网站及个人转载、采集等一切非法引用。本站已启用原创保护,有法律保护作用,否则白马号保留一切追究的权利。发布者:白马号,转转请注明出处:https://www.bmhysw.com/article/13382.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
白马号白马号

相关推荐

  • Win10电脑无法打开YY语音怎么办?

    Win10电脑无法打开YY语音怎么办? 可能的原因 解决方案 方案一:检查网络连接 方案二:检查YY语音更新 方案三:检查防火墙设置 方案四:卸载并重新安装YY语音 可能的原因 YY语音在Win10电脑上无法打开,可能会有以下原因: 网络连接问题 YY语音版本过旧或者过期 防火墙设置阻止YY语音运行 YY语音文件损坏或者系统故障 解决方案 方案一:检查网络连…

    2023-08-20
    00
  • Win10怎么卸载微软拼音输入法?

    Win10怎么卸载微软拼音输入法? 步骤一:打开“设置” 步骤二:进入“应用” 步骤三:找到微软拼音输入法 步骤四:卸载微软拼音输入法 步骤一:打开“设置” 首先打开Windows 10的“设置”应用程序。您可以通过在任务栏中点击“开始”按钮,然后点击“设置”按钮来打开它。您也可以使用键盘快捷键“Win + I”直接打开“设置”。 步骤二:进入“应用” 在“…

    2023-08-05
    00
  • 苹果mac电脑怎么截屏?快捷键截图三种方法

    有不少小伙伴还不了解苹果电脑怎么截图,不过没关系,赤友下面就为大家分享了三种MacBook截屏办法:使用快捷键截图、Mac上用微信QQ截图、右键截图。 如果你经常使用Mac,掌握一种截屏方法就足矣,但是如果你对更多的Mac截屏办法感兴趣,就一起来学习吧! 目录: 第一种:快捷键截图 第二种:微信QQ截图 第三种:右键截图 第一种:快捷键截图对于经常使用Mac…

    2022-07-22 投稿
    00
  • OS X 下如何设置一键密码锁屏

    OS X 下如何设置一键密码锁屏 步骤一:打开“安全性与隐私”设置 步骤二:勾选“立即”选项 步骤三:设置密码 步骤一:打开“安全性与隐私”设置 首先,点击屏幕左上角的苹果图标,选择“系统偏好设置”,然后点击“安全性与隐私”图标。 步骤二:勾选“立即”选项 在“安全性与隐私”设置中,选择“常规”选项卡,然后勾选“立即”选项。 步骤三:设置密码 最后,在“常规…

    2023-07-07
    00
  • 16表里的生物ppt课件(状元大课堂图文解读)

    课文知识点 1.专有名词 三弦:又称”弦子”,中国传统弹拨乐器。柄很长,音箱方形,两面蒙皮,弦三根,侧抱于怀演奏。音色粗犷、豪放。可以独奏、合奏或伴奏,普遍用于民族器乐、戏曲音乐和说唱音乐。 2.教材分析 《表里的生物》一文,叙述了作者小时候一段幼稚可笑的经历。他认为“凡能发出声音的,都是活的生物”,听到父亲的怀表发出清脆的声音,就认…

    2022-05-19 投稿
    00

联系我们

QQ:183718318

在线咨询: QQ交谈

邮件:183718318@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信