インターネット接続が可能なLANの他のシステムから時間(B)を取得するために、外部インターネット接続がないシステム(A)を取得しようとしています。
Aのntp.conf(全体の内容は一番下にあります)に以下を追加しました。
server 192.168.2.102
restrict 192.168.2.102
BのIPを参照してください。 1時間のマニュアルページを読んでオンラインの例などを見た後は、そのローカルサーバーを使用し、すべてのタスクにこれを信頼するという意味です。
しかし、これはうまくいきません。 Aで交換時間をすべて見るwireshark
ことができ、ntpq -p
Aでディスプレイを実行できます。
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
ntpd
Aで停止しようとすると、ntpd -gq
再びWiresharkで前後に表示されますが、1〜2分後にコマンドがタイムアウトし、「Server Not Found」というメッセージが表示されます。
私はAの設定に追加しようとしました。
fudge 192.168.2.102 stratum 1
他に何もない。
ntpdに特定のサーバーの時間を設定させるにはどうすればよいですか? 以前は使いやすかったようですntpdate
。価値が下落し、システムには存在しません。
これはマシンAの完全なntp.confです。これは Debian の以前のバージョンです。私が変更した唯一の変更は、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
答え1
次のように動作する必要があります。
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
答え2
私はそれを働かせたので、後世のために#ntp
(freenode)の誰かがBが自分を同期していると報告しなければ、マシンAは幸せではないかもしれないと言いました。これはntpq -p
、Bにアスタリスクの付いたサーバーを表示しないことで確認できます。
操作されたローカルソース第二(システムクロックが実際に同期していることを確認して)修正されました:
server 127.127.1.0
fudge 127.127.1.0 stratum 10
しかし重要なこといいえこの方法ㅏこれは、「ローカル同期」マシンBよりもレイヤ10を信頼しているためです。