NTP time sync issues

Ramanjaneyulu Butharaju 421 Reputation points
2021-09-09T06:46:20.92+00:00

Hello All,

we have NTP server which is windows 10 installed and in registry settings we configured NTP server (10.10.10.10) to get time source from external time source.
It is working fine.

In AD, We have written GPO, across the domain all the devices should sync with NTP server.

NTP server :
C:\Windows\system32>w32tm /resync
Sending resync command to local computer
Successfull

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

Unable to find solution. Please help

Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
4,770 questions
Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,173 questions
Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
5,899 questions
Windows 10 Network
Windows 10 Network
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Network: A group of devices that communicate either wirelessly or via a physical connection.
2,274 questions
0 comments No comments
{count} votes

Accepted answer
  1. Dave Patrick 426.1K Reputation points MVP
    2021-09-09T13:21:24.403+00:00

    But i want devices to get the time from NTP server itself.

    This isn't a recommended or supported method.

    w32tm /unregister
    net stop w32time
    w32tm /register
    net start w32time
    w32tm /config /manualpeerlist:<ntp ip address> /syncfromflags:manual /reliable:yes /update
    net stop w32time
    net start w32time
    then check
    w32tm /query /source
    w32tm /query /configuration

    --please don't forget to upvote and Accept as answer if the reply is helpful--

    2 people found this answer helpful.
    0 comments No comments

4 additional answers

Sort by: Most helpful
  1. Dave Patrick 426.1K Reputation points MVP
    2021-09-09T12:49:01.637+00:00

    Something here may help.
    https://learn.microsoft.com/en-us/windows-server/networking/windows-time-service/windows-time-service-tools-and-settings
    https://learn.microsoft.com/en-us/windows-server/networking/windows-time-service/how-the-windows-time-service-works

    Some general info

    --please don't forget to upvote and Accept as answer if the reply is helpful--

    0 comments No comments

  2. Ramanjaneyulu Butharaju 421 Reputation points
    2021-09-09T13:16:53.31+00:00

    I have set my GPO to use NTP server for time synchronization all devices including domain controllers.

    If we set "NT5DS" it means it should get the time from DC right ??
    But i want devices to get the time from NTP server itself.

    0 comments No comments

  3. Ramanjaneyulu Butharaju 421 Reputation points
    2021-09-09T13:35:40.087+00:00

    So Which is recommended method ?

    Internal NTP server sync with External time servers

    AD sync with NTP server

    Domain computers sync with AD server ?

    Domain computers > AD > NTP server > External time servers

    ???


  4. Ramanjaneyulu Butharaju 421 Reputation points
    2021-09-09T14:16:36.71+00:00

    Ok Thanks.
    I will reconfigure and update.