Link to home
Start Free TrialLog in
Avatar of Goraps
GorapsFlag for Canada

asked on

Time sync for Domain and Phone system

I have a Windows 2003 server acting as a DC. I have a mixed network of Windows XP and WIndows 7 Pro computers. I also have a Nortel BCM 400 Phone system. I need the network and phone system to keep precise time. Please advise the best way to do this.. I am not having any luck with the systems keeping go time.
Avatar of XyPlan
XyPlan

On the Active Domain Controller you can force it to Sync with an external time source.

For example from a command prompt on the DC


net time "/setsntp:uk.pool.ntp.org"

Not sure of the Nortel BCM 400 but either sync that with the DC or use the same external time source.

if you have a domain logon script, you can sync with the domain time by including the following command (assuming its a batch file)

net time /set
Avatar of Goraps

ASKER

Using that command will configure server to always go out to that server and sync time?  I am in Toronto Canada.
ASKER CERTIFIED SOLUTION
Avatar of Chris Dent
Chris Dent
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Goraps

ASKER

Chris-Dent,

 I have followed these steps... How can I test that it is working?

The non-intrusive way would be to check the event logs for messages from Windows Time.

A more intrusive approach involved changing the time on your DC by a couple of minutes (no more than a couple, i.e. 2, and definitely no more than 5). Then run:

w32tm /resync

Verify that time corrects itself.

You can, in theory, do the same on your phone system. It should pick up the change from your DC.

Chris
Avatar of Goraps

ASKER

I checked the event log first and I am getting this Error.

 User generated image

You missed a g off the end of the name :)

ca.pool.ntp.org

Chris
Avatar of Goraps

ASKER

Ok that fixed the server end of things.... My server time is just under one min faster than my Clients / Phone system.

On one of your clients run:

w32tm /resync /rediscover

By default it should pick up time from the server (PDC Emulator role holder).

The test above should give immediate results. But don't be too troubled if it takes a little while for the rest, NTP isn't instant, the client has to pull time, the server doesn't push.

Chris
Avatar of Goraps

ASKER

Ran the command and got this error from Client:

 User generated image

Just to be sure, you're running this on one of the domain members? Not the server itself?

If so, would you try:

w32tm /query /source

Chris
Avatar of Goraps

ASKER

This is one a WIn 7 workstation on the same domain.
Just checking :)

Please can you run:

w32tm /config /syncfromflags:domhier /update
w32tm /resync /rediscover

If in doubt about the time source you can always run "w32tm /query /source".

Chris
Avatar of Goraps

ASKER

Here is the screen shot from commands issued:
Source points to the proper internal DC.

 User generated image

That looks much better :)

Chris
Avatar of Goraps

ASKER

Do I have to do this on all workstations in the office?

No, you might just give it some time, the option we set above is the default for domain members.

If you find they're not synchronising we do something to make them run it from a central location.

Chris
Avatar of Goraps

ASKER

Ok thanks.. i have a mix bag of win7 / winxp workstations.

Avatar of Goraps

ASKER

Is there a website that links to ca.pool.ntp.org ? I want to get a visual. We are on a cell phone service by Rogers and people are now asking why the Cell phone network is off by 30 or so seconds.

hmm.. it's basically a network of volunteer organisations, this is the source:

http://support.ntp.org/bin/view/Servers/NTPPoolServers

If you want a greater degree of accuracy you might look for an OpenAccess Stratum-1 server from this list:

http://support.ntp.org/bin/view/Servers/StratumOneTimeServers

Stratum refers to the time-source (behind the server), Stratum-1 systems are typically directly connected to non-networked time sources (Stratum-0 time sources, such as Atomic Clocks). Stratum-2 take time from Stratum-1 over the network (Internet).

Chris