ofborg: give eval04 and build05 routable IPv6
eval04 and build05 used the bare ::/64 address instead of ::1/64 like the other ofborg nodes, and their AAAA records pointed at the same address. The all-zero interface ID is reserved as the Subnet-Router anycast address (RFC 4291), so it is not a valid host unicast address, and it was not reachable from here. Use ::1 in both the host config and DNS to match the other nodes.
Jörg Thalheim committed
Jun 19, 2026 at 12:26 UTC
3fe15c5431aaa5f5e93cdd04da5d190c1cc74158
3 files changed
+4
-4
dns/ofborg.org.js
+2
-2
@@ -49,7 +49,7 @@ D("ofborg.org",
49
A("build04", "185.119.168.13"),
50
51
A("build05", "142.132.171.106"),
52
- AAAA("build05", "2a01:4f8:1c1b:6d41::"),
52
+ AAAA("build05", "2a01:4f8:1c1b:6d41::1"),
53
54
A("eval01", "95.217.15.9"),
55
AAAA("eval01", "2a01:4f9:c012:cf00::1"),
@@ -61,7 +61,7 @@ D("ofborg.org",
61
AAAA("eval03", "2a01:4f9:c012:e37b::1"),
62
63
A("eval04", "95.217.18.12"),
64
- AAAA("eval04", "2a01:4f9:c012:273b::"),
64
+ AAAA("eval04", "2a01:4f9:c012:273b::1"),
65
66
// nixos-foundation-macstadium-44911305
67
A("mac01", "208.83.1.173"),
non-critical-infra/hosts/build05.ofborg.org/default.nix
+1
-1
@@ -22,7 +22,7 @@
22
matchConfig.MACAddress = "96:00:03:fd:32:fd";
23
address = [
24
"142.132.171.106/32"
25
- "2a01:4f8:1c1b:6d41::/64"
25
+ "2a01:4f8:1c1b:6d41::1/64"
26
];
27
routes = [
28
{ Gateway = "fe80::1"; }
non-critical-infra/hosts/eval04.ofborg.org/default.nix
+1
-1
@@ -23,7 +23,7 @@
23
matchConfig.MACAddress = "96:00:03:f4:25:eb";
24
address = [
25
"95.217.18.12/32"
26
- "2a01:4f9:c012:273b::/64"
26
+ "2a01:4f9:c012:273b::1/64"
27
];
28
routes = [
29
{ Gateway = "fe80::1"; }