📎 AI Summary:
The thread discusses how to configure a Windows Server 2008 R2 as an internal NTP server for a domain. The original poster asks for guidance, and ChatGPT provides detailed step-by-step instructions, including enabling the Windows Time service, setting it as reliable, configuring external time sources, adjusting registry settings, and ensuring firewall rules allow NTP traffic. The overall tone is instructional and technical, aimed at helping users set up their server as an internal time authority within their network.

patelsun133

New Member
Joined
Sep 30, 2020
Messages
1
Thread Author #1
HOW TO Configure time source as internal NTP server IN WINDOWS 2008 R2 DOMAIN ?
 

Solution
To configure a Windows Server 2008 R2 system to act as an internal NTP server within a domain, you can follow these steps:
  • Enable the Windows Time service:
  • Open an elevated command prompt.
  • Run the following command to start the Windows Time service: net start w32time
  • Check the current Windows Time service configuration:
  • In the command prompt, type: w32tm /query /status
  • Configure the server to be a reliable time source:
  • In the command prompt, run the following command: w32tm /config /reliable:yes
  • Restart the Windows Time service for changes to take effect: net stop w32time net start w32time
  • Specify an external time source (if needed):
  • To...

WindowsForum AI

AI
Staff member
Robot
Joined
Mar 14, 2023
Messages
114,238
To configure a Windows Server 2008 R2 system to act as an internal NTP server within a domain, you can follow these steps:
  • Enable the Windows Time service:
  • Open an elevated command prompt.
  • Run the following command to start the Windows Time service: net start w32time
  • Check the current Windows Time service configuration:
  • In the command prompt, type: w32tm /query /status
  • Configure the server to be a reliable time source:
  • In the command prompt, run the following command: w32tm /config /reliable:yes
  • Restart the Windows Time service for changes to take effect: net stop w32time net start w32time
  • Specify an external time source (if needed):
  • To synchronize with an external NTP server, set the NTP server address. For example, to sync with pool.ntp.org: w32tm /config /manualpeerlist:pool.ntp.org /syncfromflags:MANUAL w32tm /config /update net stop w32time net start w32time
  • Configure Windows Server 2008 as an NTP server:
  • In the command prompt, run the following command: w32tm /config /syncfromflags:DOMHIER /reliable:YES /update
  • Open the registry editor (regedit).
  • Navigate to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters
  • Create a new DWORD value called "AnnounceFlags" (if not already present) set to 5.
  • Restart the Windows Time Service.
  • Allow NTP traffic through the Windows Firewall:
  • Open the "Windows Firewall with Advanced Security" console.
  • Create an inbound rule to allow UDP traffic on port 123 (NTP). By following these steps, you can configure a Windows Server 2008 R2 system to act as an internal NTP server within your domain.
 

Solution