Skip to content

Commit 1e65dba

Browse files
committed
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.
1 parent e1829a2 commit 1e65dba

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

dns/ofborg.org.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ D("ofborg.org",
4949
A("build04", "185.119.168.13"),
5050

5151
A("build05", "142.132.171.106"),
52-
AAAA("build05", "2a01:4f8:1c1b:6d41::"),
52+
AAAA("build05", "2a01:4f8:1c1b:6d41::1"),
5353

5454
A("eval01", "95.217.15.9"),
5555
AAAA("eval01", "2a01:4f9:c012:cf00::1"),
@@ -61,7 +61,7 @@ D("ofborg.org",
6161
AAAA("eval03", "2a01:4f9:c012:e37b::1"),
6262

6363
A("eval04", "95.217.18.12"),
64-
AAAA("eval04", "2a01:4f9:c012:273b::"),
64+
AAAA("eval04", "2a01:4f9:c012:273b::1"),
6565

6666
// nixos-foundation-macstadium-44911305
6767
A("mac01", "208.83.1.173"),

non-critical-infra/hosts/build05.ofborg.org/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
matchConfig.MACAddress = "96:00:03:fd:32:fd";
2323
address = [
2424
"142.132.171.106/32"
25-
"2a01:4f8:1c1b:6d41::/64"
25+
"2a01:4f8:1c1b:6d41::1/64"
2626
];
2727
routes = [
2828
{ Gateway = "fe80::1"; }

non-critical-infra/hosts/eval04.ofborg.org/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
matchConfig.MACAddress = "96:00:03:f4:25:eb";
2424
address = [
2525
"95.217.18.12/32"
26-
"2a01:4f9:c012:273b::/64"
26+
"2a01:4f9:c012:273b::1/64"
2727
];
2828
routes = [
2929
{ Gateway = "fe80::1"; }

0 commit comments

Comments
 (0)