ntpdate IPv4-Abfrage an den lokalen NTP-Server schlägt fehl

ntpdate IPv4-Abfrage an den lokalen NTP-Server schlägt fehl

Der Befehl ntpdate -q -4 localhostan einen NTP-Server führt zwei Abfragen durch 127.0.0.1und eine davon schlägt fehl:

ist das nicht möglich, weil/etc/hostsDatei?

ntpdate -q -4 localhost
server 127.0.0.1, stratum 2, offset 0.000006, delay 0.02565
server 127.0.0.1, stratum 0, offset 0.000000, delay 0.00000

/etc/hostsDateiinhalt:

::1             1a.ncomputers.org 1a localhost
127.0.0.1       1a.ncomputers.org 1a localhost
2a02:c207:2010:6775::1  1b.ncomputers.org 1b
2a02:c205:2009:8290::1  1c.ncomputers.org 1c
5.189.146.13    1b.ncomputers.org 1b
80.241.208.120  1c.ncomputers.org 1c

/etc/ntpd.confDateiinhalt:

driftfile /var/lib/ntp/ntp.drift
restrict default kod nomodify nopeer noquery notrap
restrict localhost
server 2001:4ca0:0:103::81bb:fe20
server 2001:638:a000:1123:123::1
server 2001:62a:4:311::123

ntpdateVersion: 4.2.8p10

Antwort1

Möglicherweise müssen Sie dies zu Ihrer ntp.conf-Datei hinzufügen, um Localhost-IPV4- und IPV6-Abfragen zuzulassen:

restrict 127.0.0.1 
restrict ::1

verwandte Informationen