hydra: dns: Add IPv6 entries for bayfront.

* hydra/modules/sysadmin/dns.scm (guix.gnu.org.zone): Add IPv6 entries
for bayfront.
This commit is contained in:
Christopher Baines 2021-12-21 14:00:54 +00:00
parent 0c863b4457
commit 8a7e2006fe
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 6 additions and 1 deletions

View File

@ -47,6 +47,7 @@
(define gnu.org-ip6 "2001:470:142:3::a")
(define hydra-ip4 "18.4.89.46")
(define bayfront-ip4 "185.233.100.56")
(define bayfront-ip6 "2a0c:e300::58")
(define berlin-ip4 "141.80.181.40")
(define milano-guix-1-ip4 "159.149.133.203")
(define fosshost-1-ip4 "147.75.35.153")
@ -94,6 +95,7 @@
("hydra" "" "IN" "A" hydra-ip4)
("berlin" "" "IN" "A" berlin-ip4)
("bayfront" "" "IN" "A" bayfront-ip4)
("bayfront" "" "IN" "AAAA" bayfront-ip6)
("fosshost1" "" "IN" "A" fosshost-1-ip4)
("fosshost2" "" "IN" "A" fosshost-2-ip4)
("overdrive1" "" "IN" "A" overdrive1-ip4)
@ -108,7 +110,10 @@
("data" "" "IN" "A" "78.47.68.4")
("coordinator.bayfront"
"" "IN" "A" bayfront-ip4)
("coordinator.bayfront"
"" "IN" "AAAA" bayfront-ip6)
("bordeaux" "" "IN" "A" bayfront-ip4)
("bordeaux" "" "IN" "AAAA" bayfront-ip6)
;; This record is required in order to prove to Amazon ACM that we
;; own the domain. As long as it exists, ACM will automatically
@ -123,4 +128,4 @@
(origin "guix.gnu.org")
(ns primary-ns)
(entries guix.gnu.org.zone)
(serial 2021101409)))))
(serial 2021122114)))))