There are two options. 1. Make PDC Emulator Holding Domain controller to follow its own CMOS Time settings. 2. Configure External Time service on PDC emulator holding Domain controller 1. Make PDC Emulator Holding Domain controller to follow its own CMOS Time settings. To configure the PDC master without using an external time source, change the announce flag on the PDC master. The PDC master is the server that holds the forest root PDC master role for the domain. This configuration forces the PDC master to announce itself as a reliable time source and uses the built-in complementary metal oxide semiconductor (CMOS) clock. To configure the PDC master by using an internal hardware clock, follow these steps:
Once this is done , Your PDC Emulator will follow the internal clock for time synchronization across the domain. 2.Configure External Time service on PDC emulator holding Domain controller Here we will have to make use of External Time Source ( Internet). To Accomplish this follow below steps.
Open a Command Prompt.
Type the following command to display the time difference between the local computer and a target computer, and then press ENTER:
w32tm /stripchart /computer: target /samples: n /dataonly
target
Specifies the Domain Name System (DNS) name or IP address of the NTP server that you are comparing the local computer's time against, for example, time.windows.com.
n
Specifies the number of time samples that will be returned from the target computer to test basic NTP communication.
Open User Datagram Protocol (UDP) port 123 for outgoing traffic if needed.
Open UDP port 123 (or a different port that you have selected) for incoming NTP traffic.
Type the following command to configure the PDC emulator, and then press ENTER:
w32tm /config /manualpeerlist: peers /syncfromflags:manual /reliable:yes /update
where peers specifies the list of DNS names or IP addresses of the NTP time source that the PDC emulator synchronizes from. For example, you can specify time.windows.com. When specifying multiple peers, use a space as the delimiter and enclose them in quotation marks. For more information about the NTP servers that you can use, see Microsoft Knowledge Base article 262680 (http://go.microsoft.com/fwlink/?LinkID=60401).
For example, to configure your PDC emulator to use the following list of fictional time servers:
Run the following command:
w32tm /config /manualpeerlist:”ntp1.fabrikam.com ntp.contoso.com time.fineartschool.net” /reliable:yes /update
Open a Command Prompt on Previous PDC Emulator Domain controller.
Type the following command and then press ENTER:
w32tm /config /syncfromflags:domhier /reliable:no /update
net stop w32time
net start w32time
Additional Information. 1. UDP Port 123 is used for Time service on all client systems and on servers 2. All client systems/servers/domain controllers(which are not holding PDC) sync their time with PDC using NT5DS Protocol. 3. PDC holding DC uses NTP Protocol to sync the time with External time source. References, http://technet.microsoft.com/en-us/library/cc784800(v=ws.10).aspx http://www.windowsnetworking.com/articles_tutorials/configuring-windows-time-service.html http://technet.microsoft.com/en-us/library/cc784882(v=ws.10).aspx http://technet.microsoft.com/en-us/library/cc738042(v=ws.10).aspx