User Tools

Site Tools


windows:windows_time_service_ntp

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
windows:windows_time_service_ntp [2025/10/07 11:38] – [(Optional) Pin NTP to the management path] aperezwindows:windows_time_service_ntp [2025/10/07 12:08] (current) aperez
Line 373: Line 373:
  
  
 +----
 +----
  
 +===== 🕒 NTP and DNS on Cisco Catalyst 9500 (IOS XE 17.12) — Houston, TX =====
 +
 +DNS + NTP con zona horaria Central (CST/CDT). ''ip domain-lookup'' no es requerido en esta versión.
 +
 +<code bash>
 +conf t
 +ip name-server 8.8.8.8
 +ip name-server 1.1.1.1
 +
 +! NTP servers (FQDN soportado)
 +ntp server 0.pool.ntp.org
 +ntp server 1.pool.ntp.org
 +ntp server 2.pool.ntp.org
 +ntp server 3.pool.ntp.org
 +
 +! (Opcional) Fuente de NTP para dirección estable
 +ntp source Loopback0
 +
 +! Zona horaria Houston (Central) + DST EE.UU.
 +clock timezone CST -6
 +clock summer-time CDT recurring 2 Sun Mar 2:00 1 Sun Nov 2:00
 +
 +end
 +write memory
 +</code>
 +
 +----
 +
 +==== 🔁 (Opcional) Enviar NTP por el VRF de management ====
 +Si tu salida a Internet va por **Mgmt-vrf**, usa:
 +
 +<code bash>
 +conf t
 +ntp source Loopback0
 +ntp server vrf Mgmt-vrf 0.pool.ntp.org
 +ntp server vrf Mgmt-vrf 1.pool.ntp.org
 +ntp server vrf Mgmt-vrf 2.pool.ntp.org
 +ntp server vrf Mgmt-vrf 3.pool.ntp.org
 +end
 +write memory
 +</code>
 +
 +----
 +
 +==== 🔍 Verificación ====
 +<code bash>
 +show hosts                      ! valida resolución DNS
 +ping 0.pool.ntp.org             ! (o ping vrf Mgmt-vrf 0.pool.ntp.org)
 +show ntp associations
 +show ntp status
 +show clock detail
 +show run | i name-server|ntp|clock
 +</code>
 +
 +**Esperado:**
 +  * Un servidor con ''*'' como **system peer** en ''show ntp associations''.
 +  * ''show clock detail'' mostrando CST/CDT y estado de DST.
 +  * DNS resolviendo (''show hosts'').
 +
 +----
 +
 +==== 🧠 Notas ====
 +  * Si algún FQDN no resuelve, prueba primero con **IP** para descartar DNS.
 +  * Asegura salida **UDP/123** desde la interfaz/VRF usada por NTP.
 +  * Puedes marcar un servidor como preferido:  
 +    <code>ntp server 0.pool.ntp.org prefer</code>
  
 ---- ----
 ---- ----
windows/windows_time_service_ntp.1759855094.txt.gz · Last modified: 2025/10/07 11:38 by aperez

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki