How to configure Windows 11 as a local NTP server (works in Windows 10, not in 11)

AlexBo 0 Reputation points
2025-07-20T08:40:12.3766667+00:00

Hello,

I'm trying to configure my Windows 11 Pro machine to act as a local NTP server on my LAN. I followed the same procedure that works perfectly on Windows 10, including:

  1. Modifying the registry:
sql
Copy
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer
"Enabled"=dword:00000001

Setting AnnounceFlags:

sql
Copy
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config
"AnnounceFlags"=5

Updating Start and Type values, and ensuring the w32time service is set to Auto and restarted.

Opening UDP port 123 in the firewall (both inbound and outbound).

Restarting the service:

arduino
Copy
net stop w32time
net start w32time

Problem:

The same setup on Windows 10 works fine, and my devices sync time from it.

On Windows 11, NTP clients (like Linux, Jetson, etc.) fail to sync.

Using w32tm /query /status and /peers looks fine locally.

Questions:

Has anything changed in NTP server support in Windows 11?

Is there a new service dependency or network configuration needed?

Are there known issues with the Windows 11 implementation of W32Time as an NTP server?

Any insights or updated guidance would be appreciated.

Thanks!Hello,

I'm trying to configure my Windows 11 Pro machine to act as a local NTP server on my LAN. I followed the same procedure that works perfectly on Windows 10, including:

Modifying the registry:

sql
Copy
HKEY_LOCAL_MACHINE\

Setting AnnounceFlags:

sql
Copy
HKEY_LOCAL_MACHINE\

Updating Start and Type values, and ensuring the w32time service is set to Auto and restarted.

Opening UDP port 123 in the firewall (both inbound and outbound).

Restarting the service:

arduino
Copy
net stop w32time
net start w32time

Problem:

The same setup on Windows 10 works fine, and my devices sync time from it.

On Windows 11, NTP clients (like Linux, Jetson, etc.) fail to sync.

Using w32tm /query /status and /peers looks fine locally.

Questions:

Has anything changed in NTP server support in Windows 11?

Is there a new service dependency or network configuration needed?

Are there known issues with the Windows 11 implementation of W32Time as an NTP server?

Any insights or updated guidance would be appreciated.

Thanks!

Windows for business | Windows Server | Devices and deployment | Configure application groups
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Oliver Nguyen 410 Reputation points Independent Advisor
    2025-08-08T07:16:56.4+00:00

    Hi AlexBo,

    Some Linux-based clients are stricter about NTP protocol compliance. Windows' NTP implementation is known to be minimal and may not respond properly to certain client queries. Consider using Meinberg NTP for a more robust NTP server on Windows because of full-featured NTP daemon.

    Try running this on a Linux client:

    ntpdate -q <windows11-ip>

    If you get a timeout or no response, it confirms the server isn’t replying properly

    Also, use:

    w32tm /stripchart /computer:localhost /samples:5 /dataonly

    to verify that your Windows 11 machine is actually producing time data.

    ==========================================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.