web-dev-qa-db-ja.com

ローカルNTPサービスを使用する

外部インターネットアクセスのないシステム(A)を取得して、LAN上の別のシステムから時間を取得しようとしています(B)。

Aのntp.conf(すべてが一番下にあります)に、私は追加しました:

server 192.168.2.102
restrict 192.168.2.102

BのIPを参照します。マニュアルページを読んだり、オンラインの例を見たりして1時間経った後、私が知る限り、これはそのローカルサーバーを使用し、何に対しても信頼することを意味するはずです。

ただし、機能しません。 wiresharkで2つの交換時間を見ることができ、Aショーでntpq -pを実行します。

remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
192.168.2.102   .INIT.      16 u   16   64    0    0.000    0.000   0.000

Aでntpdを停止してntpd -gqを試すと、wiresharkで何度も前後を見ることができますが、1〜2分後にコマンドが「サーバーが見つかりません」でタイムアウトします。

私はAのconfに追加しようとしました:

fudge 192.168.2.102 stratum 1

違いはありません。

ntpdに特定のサーバーからの時間を設定させるにはどうすればよいですか?これは、減価償却されてシステムに存在しないntpdateを使用すると十分に簡単だったようです。


これがマシンAのntp.conf全体です。これは標準のDebianwheezyです。私が行った唯一の変更は、192.168.2.102に関連する行を追加し、debianプールサーバーをコメントアウトして、そこでの混乱を排除しようとすることでした。そのため、とにかく到達できません。

# /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).
#server ntp.your-provider.example
server 192.168.2.102
restrict 192.168.2.102
fudge 192.168.2.102 stratum 1

# 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 0.debian.pool.ntp.org iburst
#server 1.debian.pool.ntp.org iburst
#server 2.debian.pool.ntp.org iburst
#server 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
restrict -6 default kod notrap nomodify nopeer noquery

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

# 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
5
goldilocks

私はそれを動作させたので、後世のために、#ntp(freenode)の誰かが、Bが同期されていると報告しないとマシンAは満足できないかもしれないと言いました。これは、Bのntpq -pで、アスタリスクが前に付いたサーバーが表示されていないことを確認できます。

[〜#〜] b [〜#〜](システムクロックの検査により実際に同期します)でローカルソースを混乱させると、次のように修正されました。

server 127.127.1.0
fudge  127.127.1.0 stratum 10

ただし、層を信頼するため、notでそれを行うことが重要です[〜#〜] a [〜#〜] 「ローカルに同期された」マシンBを数えるものよりも10多い。

4
goldilocks

次のようなものが機能するはずです。

restrict default ignore
restrict 127.0.0.1 nomodify

restrict 192.168.2.102 mask 255.255.255.0 nomodify notrap noquery
server 192.168.2.102 burst iburst

server 127.127.1.0
fudge  127.127.1.0 stratum 10
4
Jeight