首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >不使用Raspberry Pi的ntp客户端

不使用Raspberry Pi的ntp客户端
EN

Server Fault用户
提问于 2020-06-12 08:59:54
回答 1查看 2.4K关注 0票数 0

免责声明:我不太擅长Linux,我主要是一个Windows管理员。

所以我在我的网络上部署了一堆Raspberry,而我面临的问题之一是它们无法保持正确的时间和日期。因此,我想我只需要安装NTP服务,并将它们指向我的Windows域控制器,它也可以作为NTP服务器工作。但似乎不起作用。这是我的ntp.conf文件:

代码语言:javascript
复制
# /etc/ntp.conf, configuration for ntpd; see ntp.conf(5) for help

driftfile /var/lib/ntp/ntp.drift

# Enable this if you want statistics to be logged.
#statsdir /var/log/ntpstats/

statistics loopstats peerstats clockstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen clockstats file clockstats type day enable


# You do need to talk to an NTP server or two (or three).


# pool.ntp.org maps to about 1000 low-stratum NTP servers.  Your server will
# pick a different set every time it starts up.  Please consider joining the
# pool: <http://www.pool.ntp.org/join.html>
server 192.168.1.11
#pool 0.debian.pool.ntp.org iburst
#pool 1.debian.pool.ntp.org iburst
#pool 2.debian.pool.ntp.org iburst
#pool 3.debian.pool.ntp.org iburst


# Access control configuration; see /usr/share/doc/ntp-doc/html/accopt.html for
# details.  The web page <http://support.ntp.org/bin/view/Support/AccessRestrictions>
# might also be helpful.
#
# Note that "restrict" applies to both servers and clients, so a configuration
# that might be intended to block requests from certain clients could also end
# up blocking replies from your own upstream servers.

# By default, exchange time with everybody, but don't allow configuration.
restrict -4 default kod notrap nomodify nopeer noquery limited
restrict -6 default kod notrap nomodify nopeer noquery limited

# Local users may interrogate the ntp server more closely.
restrict 127.0.0.1
restrict ::1

# Needed for adding pool entries
restrict source notrap nomodify noquery

# Clients from this (example!) subnet have unlimited access, but only if
# cryptographically authenticated.
#restrict 192.168.123.0 mask 255.255.255.0 notrust


# If you want to provide time to your local subnet, change the next line.
# (Again, the address is an example only.)
#broadcast 192.168.123.255

# If you want to listen to time broadcasts on your local subnet, de-comment the
# next lines.  Please do this only if you trust everybody on the network!
#disable auth
#broadcastclient

其中,192.168.1.11是我的DC/NTP服务器的IP。我的配置有问题吗?顺便说一句,当我使用命令强制更新时:

代码语言:javascript
复制
ntpdate -u 192.168.1.11

起作用了..。但它不能持续下去。当我给树莓断电大约一个小时并重新启动它时,他又在错误的时间.NTP同步不起作用。

编辑:根据请求,下面是ntpq -npcrv命令的输出:

代码语言:javascript
复制
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
 192.168.1.11    .LOCL.           1 u   21   64  377    0.418  35727.2   2.839
associd=0 status=c016 leap_alarm, sync_unspec, 1 event, restart,
version="ntpd 4.2.8p10@1.3728-o Sat Mar 10 18:03:33 UTC 2018 (1)",
processor="armv7l", system="Linux/4.14.79-v7+", leap=11, stratum=16,
precision=-20, rootdelay=0.000, rootdisp=334.095, refid=INIT,
reftime=00000000.00000000  Thu, Feb  7 2036  7:28:16.000,
clock=e29463c8.1fec8d2d  Wed, Jun 17 2020 11:41:28.124, peer=0, tc=3,
mintc=3, offset=0.000000, frequency=0.000, sys_jitter=0.000000,
clk_jitter=0.001, clk_wander=0.000
EN

回答 1

Server Fault用户

发布于 2020-06-18 02:04:42

您的NTP源正在使用它自己的本地时钟,这是一个糟糕的时间来源,NTP认为它太远了,无法同步。再次检查/etc/default/ntp是否在NTPD_OPTS中包含-g (通常,该文件将是单行NTPD_OPTS='-g'),并更改192.168.1.11上的NTP配置以使用适当的外部时间源列表(如NTP池)。

票数 1
EN
页面原文内容由Server Fault提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://serverfault.com/questions/1021165

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档