What is NTP?
Network Time Protocol (NTP) is a internet protocol to synchronize the clocks of the computer systems through the routing of packets in networks with latency variable. NTP uses UDP like your transport layer, using the port 123. It is designed to resist the effects of variable latency.
We open the CMD and put the following line indicating the NTP server(s) to which it is going to connect.
text
w32tm /config /syncfromflags:manual /manualpeerlist:»server_ntp1 server_ntp2″We stop the service:
text
net stop w32timeWe start the service:
text
net start w32timeWe check that the change has been made correctly:
text
w32tm /query /statusAll the best
:wq!
Comments