From 503919fcf01d7eb8d550df5c3993aee9a966ba9b Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sat, 19 Oct 2024 21:24:05 +0900 Subject: services: ntp: Default to an address that supports IPv6. * gnu/services/networking.scm (%ntp-servers): Replace 0.guix.pool.ntp.org with 2.guix.pool.ntp.org. Fixes: Change-Id: I8bf3dc1cec58e7977c5369739b8662f817eeb186 --- gnu/services/networking.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm index 2d461e9ebc..76563be14f 100644 --- a/gnu/services/networking.scm +++ b/gnu/services/networking.scm @@ -547,11 +547,13 @@ daemon is responsible for allocating IP addresses to its client."))) ;; Within Guix, Leo Famulari is the administrative contact ;; for this NTP pool "zone". ;; The full list of available URLs are 0.guix.pool.ntp.org, - ;; 1.guix.pool.ntp.org, 2.guix.pool.ntp.org, and 3.guix.pool.ntp.org. + ;; 1.guix.pool.ntp.org, 2.guix.pool.ntp.org, and 3.guix.pool.ntp.org. We + ;; use 2.guix.pool.ntp.org as default as it supports IPv6, contrary to the + ;; others. (list (ntp-server (type 'pool) - (address "0.guix.pool.ntp.org") + (address "2.guix.pool.ntp.org") (options '("iburst"))))) ;as recommended in the ntpd manual (define-record-type* -- cgit v1.2.3