web-dev-qa-db-ja.com

Windows時間-時間データが利用できなかったため、コンピューターは再同期しませんでした

Windows Timeをpool.ntp.orgに同期しようとしたときに次のメッセージが表示されたとき、私は 2番目の回答 この 質問 の指示に従っていました:

C:\WINDOWS\system32>w32tm /resync
Sending resync command to local computer
The computer did not resync because no time data was available.

構成は次のとおりです。

C:\WINDOWS\system32>w32tm /query /configuration
[Configuration]

EventLogFlags: 2 (Local)
AnnounceFlags: 5 (Local)
TimeJumpAuditOffset: 28800 (Local)
MinPollInterval: 10 (Local)
MaxPollInterval: 15 (Local)
MaxNegPhaseCorrection: 54000 (Local)
MaxPosPhaseCorrection: 54000 (Local)
MaxAllowedPhaseOffset: 1 (Local)

FrequencyCorrectRate: 4 (Local)
PollAdjustFactor: 5 (Local)
LargePhaseOffset: 50000000 (Local)
SpikeWatchPeriod: 900 (Local)
LocalClockDispersion: 10 (Local)
HoldPeriod: 5 (Local)
PhaseCorrectRate: 1 (Local)
UpdateInterval: 360000 (Local)


[TimeProviders]

NtpClient (Local)
DllName: C:\WINDOWS\SYSTEM32\w32time.DLL (Local)
Enabled: 1 (Local)
InputProvider: 1 (Local)
AllowNonstandardModeCombinations: 1 (Local)
ResolvePeerBackoffMinutes: 15 (Local)
ResolvePeerBackoffMaxTimes: 7 (Local)
CompatibilityFlags: 2147483648 (Local)
EventLogFlags: 1 (Local)
LargeSampleSkew: 3 (Local)
SpecialPollInterval: 32768 (Local)
Type: NTP (Local)
NtpServer: pool.ntp.org (Local)

NtpServer (Local)
DllName: C:\WINDOWS\SYSTEM32\w32time.DLL (Local)
Enabled: 0 (Local)
InputProvider: 0 (Local)

Windows Timeサービスの登録を解除して再登録しようとしましたが、役に立ちません。

この問題を解決するにはどうすればよいですか?

編集:w32tm /monitor /computers:pool.ntp.orgの出力:

pool.ntp.org[27.124.125.250:123]:
    ICMP: 80ms delay
    NTP: +1.4521260s offset from local clock
        RefID: ntp.waia.asn.au [218.100.43.70]
        Stratum: 2

Warning:
Reverse name resolution is best effort. It may not be
correct since RefID field in time packets differs across
NTP implementations and may not be using IP addresses.

Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\w32time\Parametersのスクリーンショット:

enter image description here

3
George Tian

pool.ntp.orgタイムサーバーのインストールは、次のコマンドで manual によって推奨されます。

w32tm /config /update /manualpeerlist:"0.pool.ntp.org,0x8 1.pool.ntp.org,0x8 2.pool.ntp.org,0x8 3.pool.ntp.org,0x8" /syncfromflags:MANUAL
2
harrymc