Home Linux & Systems Cybersecurity Cloud & DevOps Networks & Infrastructure SIEM & Monitoring DFIR & Threat Intel Development & Other All categories Projects About Tools

NTP configuration in WINDOWS

Leer en espanol
NTP configuration in WINDOWS

Table of contents

Network Time Protocol (NTP) is an Internet protocol for synchronizing the clocks of computer systems through packet routing over networks with variable latency. N.T. ===

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 w32time

We start the service:

text
net start w32time

We check that the change has been made correctly:

text
w32tm /query /status

All the best

:wq!

Comments