Назад | Перейти на главную страницу

Клиент ntp не работает на Raspberry Pi

Отказ от ответственности: я не очень хорошо разбираюсь в Linux, я в основном администратор Windows.

Итак, в моей сети развернута куча Raspberry, и одна из проблем, с которыми я сталкиваюсь, заключается в том, что они не могут сохранять правильное время и дату. Поэтому я решил, что просто установлю службу NTP и направлю их на свой контроллер домена Windows, который также работает как сервер NTP. Но похоже, что это не работает. Вот мой файл ntp.conf:

# /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 - это IP-адрес моего сервера DC / NTP. Что-то не так с моей конфигурацией? Кстати, когда я вызываю обновление с помощью команды:

ntpdate -u 192.168.1.11

Это работает ... но недолго. Когда я отключаю питание малины примерно на час и снова загружаю ее, он снова не в то время ... синхронизация NTP не работает.

РЕДАКТИРОВАТЬ: по запросу, вот вывод команды ntpq -npcrv:

     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

Ваш источник NTP использует свои собственные локальные часы, что является плохим источником времени, и NTP считает, что он слишком далеко для синхронизации. Еще раз проверьте, что /etc/default/ntp содержит -g в NTPD_OPTS (обычно этот файл будет одной строкой NTPD_OPTS='-g') и измените конфигурацию NTP на 192.168.1.11 использовать соответствующий список внешних источников времени (например, пул NTP).