gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-grid5k] 06/16: test with dns in grid


From: gnunet
Subject: [taler-grid5k] 06/16: test with dns in grid
Date: Tue, 23 Nov 2021 19:22:23 +0100

This is an automated email from the git hooks/post-receive script.

marco-boss pushed a commit to branch master
in repository grid5k.

commit d0d510f5eea8fa75692f4a9e904ce4130496a864
Author: Boss Marco <bossm8@bfh.ch>
AuthorDate: Mon Nov 22 19:12:22 2021 +0100

    test with dns in grid
---
 configs/etc/bind/named.conf.local   | 13 +++++++++++++
 configs/etc/bind/named.conf.options | 20 ++++++++++++++++++++
 configs/var/lib/bind/perf.taler     | 12 ++++++++++++
 3 files changed, 45 insertions(+)

diff --git a/configs/etc/bind/named.conf.local 
b/configs/etc/bind/named.conf.local
new file mode 100644
index 0000000..45544f0
--- /dev/null
+++ b/configs/etc/bind/named.conf.local
@@ -0,0 +1,13 @@
+key "ddns-key.perf.taler" {
+  algorithm hmac-sha256;
+  secret "<DYNDNS_KEY_HERE>"
+};
+
+zone "perf.taler" {
+  type master;
+  file "/var/lib/bind/perf.taler";
+  update-policy {
+    grant ddns-key.perf.taler subdomain perf.taler. ANY;
+  };
+};
+
diff --git a/configs/etc/bind/named.conf.options 
b/configs/etc/bind/named.conf.options
new file mode 100644
index 0000000..d752a72
--- /dev/null
+++ b/configs/etc/bind/named.conf.options
@@ -0,0 +1,20 @@
+acl grid5000 {
+        172.16.0.0/12;
+       127.0.0.0/8;
+};
+
+options {
+        directory "/var/cache/bind";
+
+        allow-query { grid5000; };
+        allow-update { grid5000; };
+
+        dnssec-validation auto;
+
+        rrset-order { order random; };
+
+        listen-on-v6 { any; };
+
+        forwarders { <GRID_DNS_HERE> };
+};
+
diff --git a/configs/var/lib/bind/perf.taler b/configs/var/lib/bind/perf.taler
new file mode 100644
index 0000000..bb335e0
--- /dev/null
+++ b/configs/var/lib/bind/perf.taler
@@ -0,0 +1,12 @@
+$ORIGIN .
+$TTL 3600      ; 1 hour
+perf.taler             IN SOA  ns1.perf.taler. admin.perf.taler. (
+                               202112574  ; serial
+                               604800     ; refresh (1 week)
+                               86400      ; retry (1 day)
+                               2419200    ; expire (4 weeks)
+                               604800     ; minimum (1 week)
+                               )
+                       NS      ns1.perf.taler.
+$ORIGIN perf.taler.
+ns1                    A       127.0.0.1

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]