From 57c5b5a77e9b011d1b8c0bcd8123a19a4253fa8a Mon Sep 17 00:00:00 2001 From: Andrew Dunham Date: Fri, 27 Oct 2023 14:38:43 -0400 Subject: [PATCH] net/dns/recursive: update IP for b.root-servers.net As of 2023-11-27, the official IP addresses for b.root-servers.net will change to a new set, with the older IP addresses supported for at least a year after that date. These IPs are already active and returning results, so update these in our recursive DNS resolver package so as to be ready for the switchover. See: https://b.root-servers.org/news/2023/05/16/new-addresses.html Fixes #9994 Signed-off-by: Andrew Dunham Change-Id: I29e2fe9f019163c9ec0e62bdb286e124aa90a487 --- net/dns/recursive/recursive.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/dns/recursive/recursive.go b/net/dns/recursive/recursive.go index 5b585483c..d0fb5d5c7 100644 --- a/net/dns/recursive/recursive.go +++ b/net/dns/recursive/recursive.go @@ -64,7 +64,7 @@ var ( var rootServersV4 = []netip.Addr{ netip.MustParseAddr("198.41.0.4"), // a.root-servers.net - netip.MustParseAddr("199.9.14.201"), // b.root-servers.net + netip.MustParseAddr("170.247.170.2"), // b.root-servers.net netip.MustParseAddr("192.33.4.12"), // c.root-servers.net netip.MustParseAddr("199.7.91.13"), // d.root-servers.net netip.MustParseAddr("192.203.230.10"), // e.root-servers.net @@ -80,7 +80,7 @@ var rootServersV4 = []netip.Addr{ var rootServersV6 = []netip.Addr{ netip.MustParseAddr("2001:503:ba3e::2:30"), // a.root-servers.net - netip.MustParseAddr("2001:500:200::b"), // b.root-servers.net + netip.MustParseAddr("2801:1b8:10::b"), // b.root-servers.net netip.MustParseAddr("2001:500:2::c"), // c.root-servers.net netip.MustParseAddr("2001:500:2d::d"), // d.root-servers.net netip.MustParseAddr("2001:500:a8::e"), // e.root-servers.net