configureNTP.cmd

10:34 PM

:: ===================================================================================================
::
::          Name: configureNTP.cmd
::   Description: Script that configures all existing domain controllers NTP settings
::    Written By: Aslam Latheef
::          Date: 1/31/2012
::
::  Script Usage: configureNTP.cmd
::       Example: D:\Windows\Scripts\configureNTP.cmd
::
::
::  *** Notes ***
::
::  1) This script is only for domain controllers in the APPS & CUST domains
::  2) New domain controllers in new data centers need to be manually added here
::  3) ASHOPSAD01P and ASHOPSAD03P are the primary NTP/PDC Emulator servers located in ASH01 and have
::     a different configuration to poll the OpSource NTP router as well as outside servers
::  4) For more information or help, please email wninobla@opsource.net
::
::
::  Revision History
::
::  1/31/2012 - Creation of script with new format
::
:: ===================================================================================================
 
SET LOGFILE=D:\Windows\Scripts\ntpconfig.log
 
:: ===================================================================================================
::
::  *** WARNING - DO NOT MODIFY!!! ****
::
::  Please do not modify the code below this section as that can cause the script to fail or perform
::  in an unintended manner. If you decide to anyways, do at your own risk.
::
:: ===================================================================================================
 
:: Update server configurations for APPS and CUST domain (PDC Emulators)
w32tm /config /computer:ashopsad01p.apps.corp.opsource.net /syncfromflags:manual /manualpeerlist:"10.182.243.1,0x8 ntp2.usno.navy.mil,0x8 time.nist.gov,0x8 " /reliable:yes /update
w32tm /config /computer:ashopsad03p.cust.corp.opsource.net /syncfromflags:manual /manualpeerlist:"10.182.243.1,0x8 ntp2.usno.navy.mil,0x8 time.nist.gov,0x8 " /reliable:yes /update
 
:: Update server configurations for APPS domain
for %%1 in (02) do w32tm /config /computer:ashopsad%%1p.apps.corp.opsource.net /syncfromflags:manual /manualpeerlist:"10.182.243.1,0x8 10.182.71.21,0x1" /reliable:yes /update
for %%1 in (01 02) do w32tm /config /computer:iadopsad%%1p.apps.corp.opsource.net /syncfromflags:manual /manualpeerlist:"209.34.78.1,0x8 10.182.71.21,0x1" /reliable:yes /update
for %%1 in (11 12) do w32tm /config /computer:iadopsad%%1p.apps.corp.opsource.net /syncfromflags:manual /manualpeerlist:"10.136.0.17,0x8 10.182.71.21,0x1" /reliable:yes /update
for %%1 in (01 02) do w32tm /config /computer:sjcopsad%%1p.apps.corp.opsource.net /syncfromflags:manual /manualpeerlist:"10.128.0.17,0x8 10.182.71.21,0x1" /reliable:yes /update
for %%1 in (01 02) do w32tm /config /computer:lhropsad%%1p.apps.corp.opsource.net /syncfromflags:manual /manualpeerlist:"10.120.0.17,0x8 10.182.71.21,0x1" /reliable:yes /update
 
:: Update server configurations for CUST domain
for %%1 in (04 05 06) do w32tm /config /computer:ashopsad%%1p.cust.corp.opsource.net /syncfromflags:manual /manualpeerlist:"10.182.243.1, 10.182.71.23,0x1" /reliable:yes /update
for %%1 in (03 04) do w32tm /config /computer:iadopsad%%1p.cust.corp.opsource.net /syncfromflags:manual /manualpeerlist:"209.34.78.1, 10.182.71.23,0x1" /reliable:yes /update
for %%1 in (13 14) do w32tm /config /computer:iadopsad%%1p.cust.corp.opsource.net /syncfromflags:manual /manualpeerlist:"10.136.0.17, 10.182.71.23,0x1" /reliable:yes /update
for %%1 in (03 04) do w32tm /config /computer:sjcopsad%%1p.cust.corp.opsource.net /syncfromflags:manual /manualpeerlist:"10.128.0.17, 10.182.71.23,0x1" /reliable:yes /update
for %%1 in (03 04) do w32tm /config /computer:lhropsad%%1p.cust.corp.opsource.net /syncfromflags:manual /manualpeerlist:"10.120.0.17, 10.182.71.23,0x1" /reliable:yes /update
 
 
 
:: Print server confifuration for APPS Domain
echo. > %LOGFILE%
echo APPS Domain Configuration: >> %LOGFILE%
echo. >> %LOGFILE%
for %%1 in (01 02) do echo ASHOPSAD%%1P Configuration: >> %LOGFILE% && echo. >> %LOGFILE% && w32tm /query /computer:ashopsad%%1p.apps.corp.opsource.net /status /verbose >> %LOGFILE% && w32tm /query /computer:ashopsad%%1p.apps.corp.opsource.net /peers /verbose >> %LOGFILE% && echo. >> %LOGFILE%
for %%1 in (01 02) do echo IADOPSAD%%1P Configuration: >> %LOGFILE% && echo. >> %LOGFILE% && w32tm /query /computer:iadopsad%%1p.apps.corp.opsource.net /status /verbose >> %LOGFILE% && w32tm /query /computer:iadopsad%%1p.apps.corp.opsource.net /peers /verbose >> %LOGFILE% && echo. >> %LOGFILE%
for %%1 in (11 12) do echo IADOPSAD%%1P Configuration: >> %LOGFILE% && echo. >> %LOGFILE% && w32tm /query /computer:iadopsad%%1p.apps.corp.opsource.net /status /verbose >> %LOGFILE% && w32tm /query /computer:iadopsad%%1p.apps.corp.opsource.net /peers /verbose >> %LOGFILE% && echo. >> %LOGFILE%
for %%1 in (01 02) do echo SJCOPSAD%%1P Configuration: >> %LOGFILE% && echo. >> %LOGFILE% && w32tm /query /computer:sjcopsad%%1p.apps.corp.opsource.net /status /verbose >> %LOGFILE% && w32tm /query /computer:sjcopsad%%1p.apps.corp.opsource.net /peers /verbose >> %LOGFILE% && echo. >> %LOGFILE%
for %%1 in (01 02) do echo LHROPSAD%%1P Configuration: >> %LOGFILE% && echo. >> %LOGFILE% && w32tm /query /computer:lhropsad%%1p.apps.corp.opsource.net /status /verbose >> %LOGFILE% && w32tm /query /computer:lhropsad%%1p.apps.corp.opsource.net /peers /verbose >> %LOGFILE% && echo. >> %LOGFILE%
 
:: Print server confifuration for CUST domain
echo. >> %LOGFILE%
echo APPS Domain Configuration: >> %LOGFILE%
echo. >> %LOGFILE%
for %%1 in (03 04 05 06) do echo ASHOPSAD%%1P Configuration: >> %LOGFILE% && echo. >> %LOGFILE% && w32tm /query /computer:ashopsad%%1p.cust.corp.opsource.net /status /verbose >> %LOGFILE% && w32tm /query /computer:ashopsad%%1p.cust.corp.opsource.net /peers /verbose >> %LOGFILE% && echo. >> %LOGFILE%
for %%1 in (03 04) do echo IADOPSAD%%1P Configuration: >> %LOGFILE% && echo. >> %LOGFILE% && w32tm /query /computer:iadopsad%%1p.cust.corp.opsource.net /status /verbose >> %LOGFILE% && w32tm /query /computer:iadopsad%%1p.cust.corp.opsource.net /peers /verbose >> %LOGFILE% && echo. >> %LOGFILE%
for %%1 in (13 14) do echo IADOPSAD%%1P Configuration: >> %LOGFILE% && echo. >> %LOGFILE% && w32tm /query /computer:iadopsad%%1p.cust.corp.opsource.net /status /verbose >> %LOGFILE% && w32tm /query /computer:iadopsad%%1p.cust.corp.opsource.net /peers /verbose >> %LOGFILE% && echo. >> %LOGFILE%
for %%1 in (03 04) do echo SJCOPSAD%%1P Configuration: >> %LOGFILE% && echo. >> %LOGFILE% && w32tm /query /computer:sjcopsad%%1p.cust.corp.opsource.net /status /verbose >> %LOGFILE% && w32tm /query /computer:sjcopsad%%1p.cust.corp.opsource.net /peers /verbose >> %LOGFILE% && echo. >> %LOGFILE%
for %%1 in (03 04) do echo LHROPSAD%%1P Configuration: >> %LOGFILE% && echo. >> %LOGFILE% && w32tm /query /computer:lhropsad%%1p.cust.corp.opsource.net /status /verbose >> %LOGFILE% && w32tm /query /computer:lhropsad%%1p.cust.corp.opsource.net /peers /verbose >> %LOGFILE% && echo. >> %LOGFILE%

Current Configuration for Active Directory (As of 2/1/2012)

APPS Domain Configuration:

ASHOPSAD01P Configuration:
Leap Indicator: 0(no warning)
Stratum: 2 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0312500s
Root Dispersion: 0.0274350s
ReferenceId: 0xC00529D1 (source IP: 192.5.41.209)
Last Successful Sync Time: 2/1/2012 4:22:54 PM
Source: ntp2.usno.navy.mil,0x8
Poll Interval: 10 (1024s)
Phase Offset: -0.0000646s
ClockRate: 0.0156009s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 955.0492544s
#Peers: 3
Peer: 10.182.243.1,0x8
State: Active
Time Remaining: 664.0271408s
Mode: 3 (Client)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:32:49 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: ntp2.usno.navy.mil,0x8
State: Active
Time Remaining: 52.9755264s
Mode: 3 (Client)
Stratum: 1 (primary reference - syncd by radio clock)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:22:38 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: time.nist.gov,0x8
State: Active
Time Remaining: 53.0491928s
Mode: 3 (Client)
Stratum: 1 (primary reference - syncd by radio clock)
PeerPoll Interval: 8 (256s)
HostPoll Interval: 9 (512s)
Last Successful Sync Time: 2/1/2012 4:35:26 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 47
ASHOPSAD02P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0605011s
Root Dispersion: 0.0368133s
ReferenceId: 0x0AB6F301 (source IP: 10.182.243.1)
Last Successful Sync Time: 2/1/2012 4:22:38 PM
Source: 10.182.243.1,0x8
Poll Interval: 10 (1024s)
Phase Offset: 0.0000680s
ClockRate: 0.0156002s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 2 (The computer did not resync because only stale time data was available.)
Time since Last Good Sync Time: 970.6974236s
#Peers: 2
Peer: 10.182.243.1,0x8
State: Active
Time Remaining: 53.2713760s
Mode: 3 (Client)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:22:38 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: 10.182.71.21,0x1
State: Active
Time Remaining: 2661.2109089s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:23:10 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
IADOPSAD01P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0499878s
Root Dispersion: 0.0643019s
ReferenceId: 0xD1224E01 (source IP: 209.34.78.1)
Last Successful Sync Time: 2/1/2012 4:34:40 PM
Source: 209.34.78.1,0x8
Poll Interval: 10 (1024s)
Phase Offset: 0.0000638s
ClockRate: 0.0156255s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 248.8382189s
#Peers: 2
Peer: 10.182.71.21,0x1
State: Active
Time Remaining: 2606.5489691s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 6 (64s)
HostPoll Interval: 6 (64s)
Last Successful Sync Time: 2/1/2012 4:22:15 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 11
Peer: 209.34.78.1,0x8
State: Active
Time Remaining: 759.1144949s
Mode: 3 (Client)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:34:24 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
IADOPSAD02P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0499878s
Root Dispersion: 0.0742223s
ReferenceId: 0xD1224E01 (source IP: 209.34.78.1)
Last Successful Sync Time: 2/1/2012 4:34:44 PM
Source: 209.34.78.1,0x8
Poll Interval: 10 (1024s)
Phase Offset: 0.0000680s
ClockRate: 0.0156252s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 245.0266212s
#Peers: 2
Peer: 10.182.71.21,0x1
State: Active
Time Remaining: 2351.1843282s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 6 (64s)
HostPoll Interval: 6 (64s)
Last Successful Sync Time: 2/1/2012 4:18:00 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
Peer: 209.34.78.1,0x8
State: Active
Time Remaining: 762.9107756s
Mode: 3 (Client)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:34:28 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
IADOPSAD11P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0445709s
Root Dispersion: 0.0643092s
ReferenceId: 0x0A880011 (source IP: 10.136.0.17)
Last Successful Sync Time: 2/1/2012 4:22:55 PM
Source: 10.136.0.17,0x8
Poll Interval: 10 (1024s)
Phase Offset: 0.0000674s
ClockRate: 0.0155990s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 954.4602212s
#Peers: 2
Peer: 10.136.0.17,0x8
State: Active
Time Remaining: 53.5664028s
Mode: 3 (Client)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:22:39 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: 10.182.71.21,0x1
State: Active
Time Remaining: 2661.5320910s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:23:11 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
IADOPSAD12P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0445709s
Root Dispersion: 0.0643167s
ReferenceId: 0x0A880011 (source IP: 10.136.0.17)
Last Successful Sync Time: 2/1/2012 4:22:55 PM
Source: 10.136.0.17,0x8
Poll Interval: 10 (1024s)
Phase Offset: 0.0000696s
ClockRate: 0.0155991s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 954.4176892s
#Peers: 2
Peer: 10.136.0.17,0x8
State: Active
Time Remaining: 53.5308369s
Mode: 3 (Client)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:22:39 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: 10.182.71.21,0x1
State: Active
Time Remaining: 2661.5108714s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:23:11 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
SJCOPSAD01P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.1183167s
Root Dispersion: 0.0870845s
ReferenceId: 0x0A800011 (source IP: 10.128.0.17)
Last Successful Sync Time: 2/1/2012 4:33:39 PM
Source: 10.128.0.17,0x8
Poll Interval: 10 (1024s)
Phase Offset: 0.0000687s
ClockRate: 0.0155998s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 311.8883035s
#Peers: 2
Peer: 10.128.0.17,0x8
State: Active
Time Remaining: 710.3645189s
Mode: 3 (Client)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:33:39 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: 10.182.71.21,0x1
State: Active
Time Remaining: 2349.6025339s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 6 (64s)
HostPoll Interval: 6 (64s)
Last Successful Sync Time: 2/1/2012 4:18:02 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
SJCOPSAD02P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.1183167s
Root Dispersion: 0.0783291s
ReferenceId: 0x0A800011 (source IP: 10.128.0.17)
Last Successful Sync Time: 2/1/2012 4:32:26 PM
Source: 10.128.0.17,0x8
Poll Interval: 10 (1024s)
Phase Offset: 0.0000684s
ClockRate: 0.0156251s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 388.2093353s
#Peers: 2
Peer: 10.128.0.17,0x8
State: Active
Time Remaining: 634.0406535s
Mode: 3 (Client)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:32:26 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: 10.182.71.21,0x1
State: Active
Time Remaining: 2348.4625285s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 6 (64s)
HostPoll Interval: 6 (64s)
Last Successful Sync Time: 2/1/2012 4:18:05 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
LHROPSAD01P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.1160431s
Root Dispersion: 0.0479395s
ReferenceId: 0x0A780011 (source IP: 10.120.0.17)
Last Successful Sync Time: 2/1/2012 4:23:02 PM
Source: 10.120.0.17,0x8
Poll Interval: 10 (1024s)
Phase Offset: -0.0000643s
ClockRate: 0.0155998s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 956.1881210s
#Peers: 2
Peer: 10.120.0.17,0x8
State: Active
Time Remaining: 49.8565092s
Mode: 3 (Client)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:22:46 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: 10.182.71.21,0x1
State: Active
Time Remaining: 2657.8192069s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:23:18 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
LHROPSAD02P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.1160431s
Root Dispersion: 0.1244283s
ReferenceId: 0x0A780011 (source IP: 10.120.0.17)
Last Successful Sync Time: 2/1/2012 4:30:45 PM
Source: 10.120.0.17,0x8
Poll Interval: 10 (1024s)
Phase Offset: -0.0000693s
ClockRate: 0.0156059s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 497.1925776s
#Peers: 2
Peer: 10.120.0.17,0x8
State: Active
Time Remaining: 524.8098672s
Mode: 3 (Client)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:30:45 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: 10.182.71.21,0x1
State: Active
Time Remaining: 2346.6884975s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 6 (64s)
HostPoll Interval: 6 (64s)
Last Successful Sync Time: 2/1/2012 4:18:11 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15

CUST Domain Configuration:

ASHOPSAD03P Configuration:
Leap Indicator: 0(no warning)
Stratum: 2 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0312500s
Root Dispersion: 0.0310919s
ReferenceId: 0xC00529D1 (source IP: 192.5.41.209)
Last Successful Sync Time: 2/1/2012 4:22:54 PM
Source: ntp2.usno.navy.mil,0x8
Poll Interval: 10 (1024s)
Phase Offset: -0.0000651s
ClockRate: 0.0156008s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 970.3311094s
#Peers: 3
Peer: 10.182.243.1,0x8
State: Active
Time Remaining: 37.7716754s
Mode: 3 (Client)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:22:38 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: ntp2.usno.navy.mil,0x8
State: Active
Time Remaining: 37.7716754s
Mode: 3 (Client)
Stratum: 1 (primary reference - syncd by radio clock)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:22:38 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: time.nist.gov,0x8
State: Active
Time Remaining: 37.7716754s
Mode: 3 (Client)
Stratum: 1 (primary reference - syncd by radio clock)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 3:48:30 PM
LastSyncError: 0x80004005 (Unspecified error )
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 252
ASHOPSAD04P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0605011s
Root Dispersion: 0.0370797s
ReferenceId: 0x0AB6F301 (source IP: 10.182.243.1)
Last Successful Sync Time: 2/1/2012 4:23:06 PM
Source: 10.182.243.1,
Poll Interval: 10 (1024s)
Phase Offset: -0.0000636s
ClockRate: 0.0156009s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 958.2154194s
#Peers: 2
Peer: 10.182.243.1,
State: Active
Time Remaining: 49.7936581s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:22:50 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: 10.182.71.23,0x1
State: Active
Time Remaining: 2657.5824463s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:23:22 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
ASHOPSAD05P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0542297s
Root Dispersion: 0.0370432s
ReferenceId: 0x0AB6F301 (source IP: 10.182.243.1)
Last Successful Sync Time: 2/1/2012 4:26:19 PM
Source: 10.182.243.1,
Poll Interval: 10 (1024s)
Phase Offset: -0.0000657s
ClockRate: 0.0156007s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 765.8378263s
#Peers: 2
Peer: 10.182.243.1,
State: Active
Time Remaining: 242.2182583s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:26:03 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 255
Peer: 10.182.71.23,0x1
State: Active
Time Remaining: 2850.0744428s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:26:35 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
ASHOPSAD06P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0536652s
Root Dispersion: 0.0375265s
ReferenceId: 0x0AB6F301 (source IP: 10.182.243.1)
Last Successful Sync Time: 2/1/2012 4:34:51 PM
Source: 10.182.243.1,
Poll Interval: 10 (1024s)
Phase Offset: 0.0000677s
ClockRate: 0.0156005s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 253.8727930s
#Peers: 2
Peer: 10.182.243.1,
State: Active
Time Remaining: 754.3707020s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:34:35 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 8
Reachability: 239
Peer: 10.182.71.23,0x1
State: Active
Time Remaining: 2850.0625080s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:26:35 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
IADOPSAD03P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0625000s
Root Dispersion: 1.8455414s
ReferenceId: 0x0AB64717 (source IP: 10.182.71.23)
Last Successful Sync Time: 2/1/2012 4:26:35 PM
Source: 10.182.71.23,0x1
Poll Interval: 10 (1024s)
Phase Offset: 0.0000660s
ClockRate: 0.0156005s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 749.9291190s
#Peers: 2
Peer: 10.182.71.23,0x1
State: Active
Time Remaining: 2849.9616775s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:26:35 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
Peer: 209.34.78.1,
State: Pending
Time Remaining: 830.1974340s
Mode: 0 (reserved)
Stratum: 0 (unspecified)
PeerPoll Interval: 0 (unspecified)
HostPoll Interval: 0 (unspecified)
Last Successful Sync Time: (null)
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 2
ValidDataCounter: 0
Reachability: 0
IADOPSAD04P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0625000s
Root Dispersion: 1.8453428s
ReferenceId: 0x0AB64717 (source IP: 10.182.71.23)
Last Successful Sync Time: 2/1/2012 4:26:35 PM
Source: 10.182.71.23,0x1
Poll Interval: 10 (1024s)
Phase Offset: 0.0000651s
ClockRate: 0.0156001s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 750.0177986s
#Peers: 2
Peer: 10.182.71.23,0x1
State: Active
Time Remaining: 2849.9354011s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:26:35 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
Peer: 209.34.78.1,
State: Pending
Time Remaining: 830.1143920s
Mode: 0 (reserved)
Stratum: 0 (unspecified)
PeerPoll Interval: 0 (unspecified)
HostPoll Interval: 0 (unspecified)
Last Successful Sync Time: (null)
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 2
ValidDataCounter: 0
Reachability: 0
IADOPSAD13P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0625000s
Root Dispersion: 3.8434331s
ReferenceId: 0x0AB64717 (source IP: 10.182.71.23)
Last Successful Sync Time: 2/1/2012 4:26:52 PM
Source: 10.182.71.23,0x1
Poll Interval: 6 (64s)
Phase Offset: -0.0000686s
ClockRate: 0.0155990s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 2 (The computer did not resync because only stale time data was available.)
Time since Last Good Sync Time: 733.6013529s
#Peers: 2
Peer: 10.182.71.23,0x1
State: Active
Time Remaining: 2863.4034323s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 6 (64s)
HostPoll Interval: 6 (64s)
Last Successful Sync Time: 2/1/2012 4:26:48 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
Peer: 10.136.0.17,
State: Pending
Time Remaining: 6399.4430223s
Mode: 0 (reserved)
Stratum: 0 (unspecified)
PeerPoll Interval: 0 (unspecified)
HostPoll Interval: 0 (unspecified)
Last Successful Sync Time: (null)
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 4
ValidDataCounter: 0
Reachability: 0
IADOPSAD14P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0625000s
Root Dispersion: 3.8472659s
ReferenceId: 0x0AB64717 (source IP: 10.182.71.23)
Last Successful Sync Time: 2/1/2012 4:26:47 PM
Source: 10.182.71.23,0x1
Poll Interval: 6 (64s)
Phase Offset: -0.0000653s
ClockRate: 0.0155990s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 2 (The computer did not resync because only stale time data was available.)
Time since Last Good Sync Time: 738.2032056s
#Peers: 2
Peer: 10.182.71.23,0x1
State: Active
Time Remaining: 2861.1415957s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 6 (64s)
HostPoll Interval: 6 (64s)
Last Successful Sync Time: 2/1/2012 4:26:46 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
Peer: 10.136.0.17,
State: Pending
Time Remaining: 6394.3575676s
Mode: 0 (reserved)
Stratum: 0 (unspecified)
PeerPoll Interval: 0 (unspecified)
HostPoll Interval: 0 (unspecified)
Last Successful Sync Time: (null)
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 4
ValidDataCounter: 0
Reachability: 0
SJCOPSAD03P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0936508s
Root Dispersion: 1.8446948s
ReferenceId: 0x0AB64717 (source IP: 10.182.71.23)
Last Successful Sync Time: 2/1/2012 4:26:37 PM
Source: 10.182.71.23,0x1
Poll Interval: 10 (1024s)
Phase Offset: 0.0000690s
ClockRate: 0.0156002s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 749.7187209s
#Peers: 2
Peer: 10.182.71.23,0x1
State: Active
Time Remaining: 2848.4560557s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:26:37 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
Peer: 10.128.0.17,
State: Pending
Time Remaining: 828.6492377s
Mode: 0 (reserved)
Stratum: 0 (unspecified)
PeerPoll Interval: 0 (unspecified)
HostPoll Interval: 0 (unspecified)
Last Successful Sync Time: (null)
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 2
ValidDataCounter: 0
Reachability: 0
SJCOPSAD04P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.0937516s
Root Dispersion: 1.8408149s
ReferenceId: 0x0AB64717 (source IP: 10.182.71.23)
Last Successful Sync Time: 2/1/2012 4:26:40 PM
Source: 10.182.71.23,0x1
Poll Interval: 10 (1024s)
Phase Offset: 0.0000695s
ClockRate: 0.0156254s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 750.8646006s
#Peers: 2
Peer: 10.182.71.23,0x1
State: Active
Time Remaining: 2847.3228530s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:26:40 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
Peer: 10.128.0.17,
State: Pending
Time Remaining: 827.4578496s
Mode: 0 (reserved)
Stratum: 0 (unspecified)
PeerPoll Interval: 0 (unspecified)
HostPoll Interval: 0 (unspecified)
Last Successful Sync Time: (null)
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 2
ValidDataCounter: 0
Reachability: 0
LHROPSAD03P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.1092485s
Root Dispersion: 1.8442513s
ReferenceId: 0x0AB64717 (source IP: 10.182.71.23)
Last Successful Sync Time: 2/1/2012 4:26:42 PM
Source: 10.182.71.23,0x1
Poll Interval: 10 (1024s)
Phase Offset: 0.0000656s
ClockRate: 0.0155997s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 751.7132414s
#Peers: 2
Peer: 10.182.71.23,0x1
State: Active
Time Remaining: 2846.2275982s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:26:42 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
Peer: 10.120.0.17,
State: Pending
Time Remaining: 826.3498267s
Mode: 0 (reserved)
Stratum: 0 (unspecified)
PeerPoll Interval: 0 (unspecified)
HostPoll Interval: 0 (unspecified)
Last Successful Sync Time: (null)
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 2
ValidDataCounter: 0
Reachability: 0
LHROPSAD04P Configuration:
Leap Indicator: 0(no warning)
Stratum: 3 (secondary reference - syncd by (S)NTP)
Precision: -6 (15.625ms per tick)
Root Delay: 0.1092485s
Root Dispersion: 1.8471871s
ReferenceId: 0x0AB64717 (source IP: 10.182.71.23)
Last Successful Sync Time: 2/1/2012 4:26:45 PM
Source: 10.182.71.23,0x1
Poll Interval: 10 (1024s)
Phase Offset: -0.0000689s
ClockRate: 0.0155997s
State Machine: 2 (Sync)
Time Source Flags: 0 (None)
Server Role: 576 (Reliable Time Service)
Last Sync Error: 0 (The command completed successfully.)
Time since Last Good Sync Time: 752.7273581s
#Peers: 2
Peer: 10.182.71.23,0x1
State: Active
Time Remaining: 2845.1978818s
Mode: 1 (Symmetric Active)
Stratum: 2 (secondary reference - syncd by (S)NTP)
PeerPoll Interval: 10 (1024s)
HostPoll Interval: 10 (1024s)
Last Successful Sync Time: 2/1/2012 4:26:45 PM
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 0
ValidDataCounter: 3
Reachability: 15
Peer: 10.120.0.17,
State: Pending
Time Remaining: 825.3513097s
Mode: 0 (reserved)
Stratum: 0 (unspecified)
PeerPoll Interval: 0 (unspecified)
HostPoll Interval: 0 (unspecified)
Last Successful Sync Time: (null)
LastSyncError: 0x00000000 (Succeeded)
LastSyncErrorMsgId: 0x00000000 (Succeeded)
AuthTypeMsgId: 0x0000005A (NoAuth )
Resolve Attempts: 2
ValidDataCounter: 0
Reachability: 0

You Might Also Like

0 comments

Contact Form

Name

Email *

Message *

Translate

Wikipedia

Search results