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 07:59] aperezwindows:windows_time_service_ntp [2025/10/07 12:08] (current) aperez
Line 1: Line 1:
 ===== 🕒 NTP Configuration on Windows Server 2024 ===== ===== 🕒 NTP Configuration on Windows Server 2024 =====
 + NTP Configuration on Aruba CX 6300 / 6400 (Houston, TX)
 To configure the Windows Time Service (''w32time'') and synchronize with specific NTP servers, run the following commands **as Administrator** from PowerShell or CMD. To configure the Windows Time Service (''w32time'') and synchronize with specific NTP servers, run the following commands **as Administrator** from PowerShell or CMD.
  
Line 60: Line 60:
  
  
-===== 🕒 NTP Configuration on Aruba CX 6400 (Houston, TX) =====+===== 🕒 NTP Configuration on Aruba CX 6300 / 6400 (Houston, TX) =====
  
 To configure the switch to synchronize its time using public NTP servers and apply the correct time zone for Houston (Central Time), run the following commands in **configuration mode**: To configure the switch to synchronize its time using public NTP servers and apply the correct time zone for Houston (Central Time), run the following commands in **configuration mode**:
Line 139: Line 139:
  
 # Enable Daylight Saving Time for USA # Enable Daylight Saving Time for USA
-time daylight-time-rule usa+time daylight-time-rule continental-us-and-canada
  
 exit exit
Line 178: Line 178:
 ---- ----
  
 +
 +
 +===== 🕒 NTP and DNS Configuration on Aruba 3810M (Houston, TX) =====
 +
 +This configuration enables NTP synchronization, DNS resolution, and applies the correct Central Time zone (Houston, TX) with daylight saving rules for the continental U.S. and Canada.
 +
 +<code bash>
 +configure terminal
 +
 +! Enable NTP mode
 +timesync ntp
 +ntp enable
 +
 +! Configure DNS servers for hostname resolution
 +ip dns server-address priority 1 8.8.8.8
 +ip dns server-address priority 2 1.1.1.1
 +
 +! Configure NTP servers (can use hostnames if DNS is working)
 +ntp server 0.pool.ntp.org
 +ntp server 1.pool.ntp.org
 +ntp server 2.pool.ntp.org
 +ntp server 3.pool.ntp.org
 +
 +! Set time zone to Central Time (UTC−6)
 +time timezone -360
 +
 +! Enable daylight saving time for continental U.S. and Canada
 +time daylight-time-rule continental-us-and-canada
 +
 +exit
 +write memory
 +</code>
 +
 +----
 +
 +==== 🔍 Verification ====
 +
 +Verify NTP synchronization, DNS status, and system time:
 +
 +<code bash>
 +show ntp status
 +show ntp associations
 +show ip dns
 +show time
 +show clock
 +</code>
 +
 +**Expected results:**
 +  * ''System time synchronized to NTP Server …'' → indicates active synchronization.  
 +  * ''Time zone offset: -360'' → confirms Central Time.  
 +  * ''Daylight time rule: continental-us-and-canada'' → DST adjustment active.  
 +  * ''DNS server(s): 8.8.8.8, 1.1.1.1'' → confirms DNS configuration.
 +
 +----
 +
 +==== 🧠 Notes ====
 +  * Aruba 3810M supports **FQDN or IP** for NTP servers — DNS must be reachable.  
 +  * To use an internal NTP source (e.g. Windows Server), replace pool servers with:
 +    <code>
 +    ntp server 10.28.64.22
 +    </code>
 +  * If DNS is unreachable, use IP addresses directly for NTP.  
 +  * NTP uses UDP port 123; confirm outbound reachability.  
 +  * Save configuration permanently with ''write memory''.
 +
 +
 +----
 +----
 +
 +
 +===== 🕒 SNTP and DNS — Dell EMC N3048P (DNOS 6.5.3.6, Houston, TX) =====
 +
 +Validated configuration for accurate timekeeping with SNTP (unicast), DNS resolvers, Central Time (UTC−6) and U.S. DST.
 +
 +<code bash>
 +! Already applied (from running-config):
 +sntp unicast client enable
 +sntp server 216.239.35.0
 +sntp server 162.159.200.1
 +sntp server 129.6.15.28
 +sntp server 132.163.96.5
 +clock summer-time recurring USA
 +clock timezone -6 minutes 0
 +ip name-server "8.8.8.8"
 +ip name-server "1.1.1.1"
 +
 +exit
 +write memory
 +</code>
 +
 +==== 🔍 Verification ====
 +<code bash>
 +show sntp
 +show clock
 +show running-config | include sntp|clock|name-server
 +</code>
 +
 +**Expected:**
 +  * ''SNTP Client Mode: Unicast'' and servers ''Reachable''  
 +  * ''Clock timezone offset: -6'' and ''DST: USA (active when applicable)''  
 +  * Last sync time updates periodically (UDP/123 reachable)
 +
 +==== 🧠 Notes ====
 +  * DNOS 6 in N3000 uses **SNTP** (no full NTP).  
 +  * If DNS is down, keep servers by **IP** (as configured).  
 +  * Ensure outbound **UDP/123** is allowed from the chosen source-interface.  
 +  * Persist with ''write memory'' after any change.
 +
 +
 +
 +----
 +----
 +
 +===== 🕒 NTP and DNS Configuration on Aruba 7220 (AOS 8.12, Houston, TX) =====
 +
 +Use IANA timezone names. For Houston, use ''America/Chicago'' (DST automático).
 +
 +<code bash>
 +configure terminal
 +
 +! DNS (opcional, para resolver FQDN)
 +ip name-server 8.8.8.8
 +ip name-server 1.1.1.1
 +
 +! NTP servers (FQDN soportado si hay DNS)
 +ntp server 0.pool.ntp.org
 +ntp server 1.pool.ntp.org
 +ntp server 2.pool.ntp.org
 +ntp server 3.pool.ntp.org
 +
 +! Zona horaria IANA (Houston)
 +clock timezone America/Chicago
 +
 +end
 +write memory
 +</code>
 +
 +==== 🔍 Verificación ====
 +<code bash>
 +show ntp servers
 +show ntp status
 +show clock
 +</code>
 +
 +**Esperado:**
 +  * Uno de los NTP marcado como peer activo.
 +  * ''show clock'' mostrando hora local con ''CDT/CST'' según corresponda (DST automático).
 +
 +----
 +----
 +
 +===== 🕒 NTP and DNS Configuration on Arista 7050QX (EOS 4.13.x, Houston, TX) =====
 +
 +This configuration enables DNS resolution, adds public NTP servers, and applies the Central Time zone.
 +
 +<code bash>
 +configure terminal
 +
 +ip name-server 8.8.8.8
 +ip name-server 1.1.1.1
 +
 +ntp server 0.pool.ntp.org
 +ntp server 1.pool.ntp.org
 +ntp server 2.pool.ntp.org
 +ntp server 3.pool.ntp.org
 +
 +clock timezone US/Central
 +
 +end
 +write memory
 +</code>
 +
 +----
 +
 +
 +==== 🔍 Verification ====
 +<code bash>
 +show ntp status
 +show ntp associations
 +show clock
 +</code>
 +Expected:
 +  * One server selected as the system peer.
 +  * ''show clock'' shows local time with timezone ''US/Central''.
 +
 +----
 +
 +==== 🧠 Notes ====
 +  * ''ip name-server'' configures DNS resolvers on EOS. :contentReference[oaicite:0]{index=0}  
 +  * ''ntp server <ip|fqdn>'' adds time sources; EOS NTP is enabled by default. Use ''iburst'' if desired for faster initial sync. :contentReference[oaicite:1]{index=1}  
 +  * Time zone labels accept **IANA/alias names** like **''US/Central''** or **''America/Chicago''** (''clock timezone ?'' lists options). :contentReference[oaicite:2]{index=2}  
 +  * To force the source address, use **''ntp local-interface <intf>''** (e.g., **Management1** or a VLAN SVI). :contentReference[oaicite:3]{index=3}  
 +  * If NTP must traverse **VRF MGMT**, append **''vrf MGMT''** to each server line. :contentReference[oaicite:4]{index=4}
 +
 +
 +----
 +----
 +
 +===== 🕒 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.1759841976.txt.gz · Last modified: 2025/10/07 07:59 by aperez

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki