[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: hydra: dns: Add IPv6 entries for bayfront.
From: |
Christopher Baines |
Subject: |
02/02: hydra: dns: Add IPv6 entries for bayfront. |
Date: |
Tue, 21 Dec 2021 09:41:08 -0500 (EST) |
cbaines pushed a commit to branch master
in repository maintenance.
commit 8a7e2006fe3742e80fe89fea35c6451236ab2d5c
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Tue Dec 21 14:00:54 2021 +0000
hydra: dns: Add IPv6 entries for bayfront.
* hydra/modules/sysadmin/dns.scm (guix.gnu.org.zone): Add IPv6 entries
for bayfront.
---
hydra/modules/sysadmin/dns.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/hydra/modules/sysadmin/dns.scm b/hydra/modules/sysadmin/dns.scm
index c978522..53ae57a 100644
--- a/hydra/modules/sysadmin/dns.scm
+++ b/hydra/modules/sysadmin/dns.scm
@@ -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)))))