Hi
I have a private network with all machines as windows 7. I want to make one of the windows 7 machine as NTP Server and rest 3 windows 7 machines as NtpClient so that these will synchronize the clock with the server. I am not able to synchronize the time
Following are the
settings on Server machine
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\TimeProviders\NtpServer\Enabled (value = 1)
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\Config\AnnounceFlags (value = 1)
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\TimeProviders\NtpClient\Enabled (value = 0)
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\TimeProviders\VMICTimeProvider\Enabled (value = 0)
restarting the time service (net stop w32time && net start w32time)
Setting on the each client machine
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\TimeProviders\NtpClient\Enabled (value = 1)
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\TimeProviders\NtpClient\SpecialPollInterval (value = 60) (for each 60 seconds.
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\Parameters\Type (value = NTP)
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\W32Time\Parameters\NTPServer ( value = NTPServerIPAddress, 0X01)
resync the time (w32tm /resync /nowait)
Please tell me are there any other settings i have to do for synchronization.