From 37a3925d98c39ee6b0e936bc4aac67d2984dff0e Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 17 Apr 2022 21:34:13 +0100 Subject: initial dns master via Rex --- openbsd/frontends/Rexfile | 46 +++++++++++++++++ openbsd/frontends/var/nsd/etc/key.conf.tpl | 4 ++ openbsd/frontends/var/nsd/etc/nsd.conf.master.tpl | 59 ++++++++++++++++++++++ .../var/nsd/zones.master/buetow.org.zone.tpl | 38 ++++++++++++++ .../var/nsd/zones.master/dtail.dev.zone.tpl | 16 ++++++ .../var/nsd/zones.master/foo.surf.zone.tpl | 17 +++++++ .../var/nsd/zones.master/foo.zone.zone.tpl | 19 +++++++ .../var/nsd/zones.master/irregular.ninja.zone.tpl | 18 +++++++ .../var/nsd/zones.master/sidewalk.ninja.zone.tpl | 18 +++++++ .../var/nsd/zones.master/snonux.de.zone.tpl | 19 +++++++ .../var/nsd/zones.master/snonux.me.zone.tpl | 19 +++++++ openbsd/frontends/var/nsd:blowfish/etc/nsd.conf | 59 ---------------------- .../var/nsd:blowfish/zones/master/buetow.org.zone | 38 -------------- .../var/nsd:blowfish/zones/master/dtail.dev.zone | 16 ------ .../var/nsd:blowfish/zones/master/foo.surf.zone | 17 ------- .../var/nsd:blowfish/zones/master/foo.zone.zone | 19 ------- .../nsd:blowfish/zones/master/irregular.ninja.zone | 18 ------- .../nsd:blowfish/zones/master/sidewalk.ninja.zone | 18 ------- .../var/nsd:blowfish/zones/master/snonux.de.zone | 19 ------- .../var/nsd:blowfish/zones/master/snonux.me.zone | 19 ------- .../frontends/var/nsd:twofish/etc/key.conf.templ | 4 -- 21 files changed, 273 insertions(+), 227 deletions(-) create mode 100644 openbsd/frontends/var/nsd/etc/key.conf.tpl create mode 100644 openbsd/frontends/var/nsd/etc/nsd.conf.master.tpl create mode 100644 openbsd/frontends/var/nsd/zones.master/buetow.org.zone.tpl create mode 100644 openbsd/frontends/var/nsd/zones.master/dtail.dev.zone.tpl create mode 100644 openbsd/frontends/var/nsd/zones.master/foo.surf.zone.tpl create mode 100644 openbsd/frontends/var/nsd/zones.master/foo.zone.zone.tpl create mode 100644 openbsd/frontends/var/nsd/zones.master/irregular.ninja.zone.tpl create mode 100644 openbsd/frontends/var/nsd/zones.master/sidewalk.ninja.zone.tpl create mode 100644 openbsd/frontends/var/nsd/zones.master/snonux.de.zone.tpl create mode 100644 openbsd/frontends/var/nsd/zones.master/snonux.me.zone.tpl delete mode 100644 openbsd/frontends/var/nsd:blowfish/etc/nsd.conf delete mode 100644 openbsd/frontends/var/nsd:blowfish/zones/master/buetow.org.zone delete mode 100644 openbsd/frontends/var/nsd:blowfish/zones/master/dtail.dev.zone delete mode 100644 openbsd/frontends/var/nsd:blowfish/zones/master/foo.surf.zone delete mode 100644 openbsd/frontends/var/nsd:blowfish/zones/master/foo.zone.zone delete mode 100644 openbsd/frontends/var/nsd:blowfish/zones/master/irregular.ninja.zone delete mode 100644 openbsd/frontends/var/nsd:blowfish/zones/master/sidewalk.ninja.zone delete mode 100644 openbsd/frontends/var/nsd:blowfish/zones/master/snonux.de.zone delete mode 100644 openbsd/frontends/var/nsd:blowfish/zones/master/snonux.me.zone delete mode 100644 openbsd/frontends/var/nsd:twofish/etc/key.conf.templ (limited to 'openbsd/frontends') diff --git a/openbsd/frontends/Rexfile b/openbsd/frontends/Rexfile index cd5a6eb..4985c47 100644 --- a/openbsd/frontends/Rexfile +++ b/openbsd/frontends/Rexfile @@ -20,6 +20,11 @@ our $ipv6address = sub { return '::1'; }; +sub secret { + my $secret = shift; + read_file($ENV{HOME} . '/.rexsecrets/' . $secret); +} + desc 'Install various packages'; task 'packages', group => 'frontends', sub { @@ -119,6 +124,47 @@ task 'smtpd', group => 'frontends', service 'smtpd', ensure => 'started'; }; +desc 'Setup DNS master'; +task 'dnsmaster', group => 'dnsmaster', + sub { + my $restart = FALSE; + + file '/var/nsd/etc/key.conf', + content => template('./var/nsd/etc/key.conf.tpl', + nsd_secret => secret('nsd_secret')), + owner => 'root', + group => '_nsd', + mode => '640', + on_change => sub { + $restart = TRUE; + }; + + file '/var/nsd/etc/nsd.conf', + content => template('./var/nsd/etc/nsd.conf.master.tpl'), + owner => 'root', + group => '_nsd', + mode => '640', + on_change => sub { + $restart = TRUE; + }; + + for my $tpl (<./var/nsd/zones/master/*.zone.tpl>) { + my $zone = $tpl; + $zone =~ s/\.tpl$//; + file $zone, + content => template($tpl), + owner => 'root', + group => 'wheel', + mode => '644', + on_change => sub { + $restart = TRUE; + }; + } + + service 'nsd' => 'restart' if $restart; + service 'nsd', ensure => 'started'; + }; + desc 'Setup HA'; task 'ha', group => 'frontends', sub { diff --git a/openbsd/frontends/var/nsd/etc/key.conf.tpl b/openbsd/frontends/var/nsd/etc/key.conf.tpl new file mode 100644 index 0000000..976661a --- /dev/null +++ b/openbsd/frontends/var/nsd/etc/key.conf.tpl @@ -0,0 +1,4 @@ +key: + name: blowfish.buetow.org + algorithm: hmac-sha256 + secret: "<%= $nsd_secret %>" diff --git a/openbsd/frontends/var/nsd/etc/nsd.conf.master.tpl b/openbsd/frontends/var/nsd/etc/nsd.conf.master.tpl new file mode 100644 index 0000000..535acea --- /dev/null +++ b/openbsd/frontends/var/nsd/etc/nsd.conf.master.tpl @@ -0,0 +1,59 @@ +include: "/var/nsd/etc/key.conf" + +server: + hide-version: yes + verbosity: 1 + database: "" # disable database + debug-mode: no + +remote-control: + control-enable: yes + control-interface: /var/run/nsd.sock + +zone: + name: "buetow.org" + zonefile: "master/buetow.org.zone" + notify: 108.160.134.135 blowfish.buetow.org + provide-xfr: 108.160.134.135 blowfish.buetow.org + +zone: + name: "dtail.dev" + zonefile: "master/dtail.dev.zone" + notify: 108.160.134.135 blowfish.buetow.org + provide-xfr: 108.160.134.135 blowfish.buetow.org + +zone: + name: "foo.zone" + zonefile: "master/foo.zone.zone" + notify: 108.160.134.135 blowfish.buetow.org + provide-xfr: 108.160.134.135 blowfish.buetow.org + +zone: + name: "foo.surf" + zonefile: "master/foo.surf.zone" + notify: 108.160.134.135 blowfish.buetow.org + provide-xfr: 108.160.134.135 blowfish.buetow.org + +zone: + name: "snonux.de" + zonefile: "master/snonux.de.zone" + notify: 108.160.134.135 blowfish.buetow.org + provide-xfr: 108.160.134.135 blowfish.buetow.org + +zone: + name: "irregular.ninja" + zonefile: "master/irregular.ninja.zone" + notify: 108.160.134.135 blowfish.buetow.org + provide-xfr: 108.160.134.135 blowfish.buetow.org + +zone: + name: "sidewalk.ninja" + zonefile: "master/sidewalk.ninja.zone" + notify: 108.160.134.135 blowfish.buetow.org + provide-xfr: 108.160.134.135 blowfish.buetow.org + +zone: + name: "snonux.me" + zonefile: "master/snonux.me.zone" + notify: 108.160.134.135 blowfish.buetow.org + provide-xfr: 108.160.134.135 blowfish.buetow.org diff --git a/openbsd/frontends/var/nsd/zones.master/buetow.org.zone.tpl b/openbsd/frontends/var/nsd/zones.master/buetow.org.zone.tpl new file mode 100644 index 0000000..42bff2d --- /dev/null +++ b/openbsd/frontends/var/nsd/zones.master/buetow.org.zone.tpl @@ -0,0 +1,38 @@ +$ORIGIN buetow.org. +$TTL 4h +@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( + <%= time() %> ; serial + 1h ; refresh + 30m ; retry + 7d ; expire + 1h ) ; negative + IN NS blowfish.buetow.org. + IN NS twofish.buetow.org. + + IN MX 10 buetow.org. + IN MX 20 www.buetow.org. + 86400 IN A 23.88.35.144 + 86400 IN AAAA 2a01:4f8:c17:20f1::42 + +* IN MX 10 buetow.org. +* IN MX 20 www.buetow.org. +* 86400 IN A 23.88.35.144 +* 86400 IN AAAA 2a01:4f8:c17:20f1::42 + +blowfish 86400 IN A 23.88.35.144 +blowfish 86400 IN AAAA 2a01:4f8:c17:20f1::42 +git1 3600 IN CNAME blowfish + +twofish 86400 IN A 108.160.134.135 +twofish 86400 IN AAAA 2401:c080:1000:45af:5400:3ff:fec6:ca1d +git2 3600 IN CNAME twofish +www 3600 IN CNAME twofish + +vulcan 86400 IN A 95.216.174.192 +vulcan 86400 IN AAAA 2a01:4f9:c010:250e::1 +vu 86400 IN CNAME vulcan +wolke7 3600 IN CNAME vulcan +edge 3600 IN CNAME vulcan + +sofia 86400 IN CNAME 79-100-3-54.ip.btc-net.bg. +www2 3600 IN CNAME snonux.codeberg.page. diff --git a/openbsd/frontends/var/nsd/zones.master/dtail.dev.zone.tpl b/openbsd/frontends/var/nsd/zones.master/dtail.dev.zone.tpl new file mode 100644 index 0000000..0d67272 --- /dev/null +++ b/openbsd/frontends/var/nsd/zones.master/dtail.dev.zone.tpl @@ -0,0 +1,16 @@ +$ORIGIN dtail.dev. +$TTL 4h +@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( + <%= time() %> ; serial + 1h ; refresh + 30m ; retry + 7d ; expire + 1h ) ; negative + IN NS blowfish.buetow.org. + IN NS twofish.buetow.org. + + 86400 IN A 23.88.35.144 + 86400 IN AAAA 2a01:4f8:c17:20f1::4 +* 86400 IN CNAME blowfish.buetow.org. +github 86400 IN CNAME mimecast.github.io. + diff --git a/openbsd/frontends/var/nsd/zones.master/foo.surf.zone.tpl b/openbsd/frontends/var/nsd/zones.master/foo.surf.zone.tpl new file mode 100644 index 0000000..e92b881 --- /dev/null +++ b/openbsd/frontends/var/nsd/zones.master/foo.surf.zone.tpl @@ -0,0 +1,17 @@ +$ORIGIN foo.surf. +$TTL 4h +@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( + <%= time() %> ; serial + 1h ; refresh + 30m ; retry + 7d ; expire + 1h ) ; negative + IN NS blowfish.buetow.org. + IN NS twofish.buetow.org. + + IN MX 20 buetow.org. + IN MX 10 www.buetow.org. + + 86400 IN A 108.160.134.135 + 86400 IN AAAA 2401:c080:1000:45af:5400:3ff:fec6:ca1d +www 86400 IN CNAME blowfish.buetow.org. diff --git a/openbsd/frontends/var/nsd/zones.master/foo.zone.zone.tpl b/openbsd/frontends/var/nsd/zones.master/foo.zone.zone.tpl new file mode 100644 index 0000000..4efbf3d --- /dev/null +++ b/openbsd/frontends/var/nsd/zones.master/foo.zone.zone.tpl @@ -0,0 +1,19 @@ +$ORIGIN foo.zone. +$TTL 4h +@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( + <%= time() %> ; serial + 1h ; refresh + 30m ; retry + 7d ; expire + 1h ) ; negative + IN NS blowfish.buetow.org. + IN NS twofish.buetow.org. + + IN MX 10 buetow.org. + IN MX 20 www.buetow.org. + + + 86400 IN A 23.88.35.144 + 86400 IN AAAA 2a01:4f8:c17:20f1::42 +* 86400 IN CNAME blowfish.buetow.org. +www 86400 IN CNAME twofish.buetow.org. diff --git a/openbsd/frontends/var/nsd/zones.master/irregular.ninja.zone.tpl b/openbsd/frontends/var/nsd/zones.master/irregular.ninja.zone.tpl new file mode 100644 index 0000000..d3c55e5 --- /dev/null +++ b/openbsd/frontends/var/nsd/zones.master/irregular.ninja.zone.tpl @@ -0,0 +1,18 @@ +$ORIGIN irregular.ninja. +$TTL 4h +@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( + <%= time() %> ; serial + 1h ; refresh + 30m ; retry + 7d ; expire + 1h ) ; negative + IN NS blowfish.buetow.org. + IN NS twofish.buetow.org. + + IN MX 10 buetow.org. + IN MX 20 www.buetow.org. + + 86400 IN A 23.88.35.144 + 86400 IN AAAA 2a01:4f8:c17:20f1::42 +* 86400 IN CNAME blowfish.buetow.org. +www 86400 IN CNAME twofish.buetow.org. diff --git a/openbsd/frontends/var/nsd/zones.master/sidewalk.ninja.zone.tpl b/openbsd/frontends/var/nsd/zones.master/sidewalk.ninja.zone.tpl new file mode 100644 index 0000000..42b1db7 --- /dev/null +++ b/openbsd/frontends/var/nsd/zones.master/sidewalk.ninja.zone.tpl @@ -0,0 +1,18 @@ +$ORIGIN sidewalk.ninja. +$TTL 4h +@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( + <%= time() %> ; serial + 1h ; refresh + 30m ; retry + 7d ; expire + 1h ) ; negative + IN NS blowfish.buetow.org. + IN NS twofish.buetow.org. + + IN MX 10 buetow.org. + IN MX 20 www.buetow.org. + + 86400 IN A 23.88.35.144 + 86400 IN AAAA 2a01:4f8:c17:20f1::42 +* 86400 IN CNAME blowfish.buetow.org. +www 86400 IN CNAME twofish.buetow.org. diff --git a/openbsd/frontends/var/nsd/zones.master/snonux.de.zone.tpl b/openbsd/frontends/var/nsd/zones.master/snonux.de.zone.tpl new file mode 100644 index 0000000..cc530b6 --- /dev/null +++ b/openbsd/frontends/var/nsd/zones.master/snonux.de.zone.tpl @@ -0,0 +1,19 @@ +$ORIGIN snonux.de. +$TTL 4h +@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( + <%= time() %> ; serial + 1h ; refresh + 30m ; retry + 7d ; expire + 1h ) ; negative + IN NS blowfish.buetow.org. + IN NS twofish.buetow.org. + + IN MX 10 buetow.org. + IN MX 20 www.buetow.org. + + + 86400 IN A 23.88.35.144 + 86400 IN AAAA 2a01:4f8:c17:20f1::42 +* 86400 IN CNAME blowfish.buetow.org. +www 86400 IN CNAME twofish.buetow.org. diff --git a/openbsd/frontends/var/nsd/zones.master/snonux.me.zone.tpl b/openbsd/frontends/var/nsd/zones.master/snonux.me.zone.tpl new file mode 100644 index 0000000..e756998 --- /dev/null +++ b/openbsd/frontends/var/nsd/zones.master/snonux.me.zone.tpl @@ -0,0 +1,19 @@ +$ORIGIN snonux.me. +$TTL 4h +@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( + <%= time() %> ; serial + 1h ; refresh + 30m ; retry + 7d ; expire + 1h ) ; negative + IN NS blowfish.buetow.org. + IN NS twofish.buetow.org. + + IN MX 10 buetow.org. + IN MX 20 www.buetow.org. + + + 86400 IN A 23.88.35.144 + 86400 IN AAAA 2a01:4f8:c17:20f1::42 +* 86400 IN CNAME blowfish.buetow.org. +www 86400 IN CNAME twofish.buetow.org. diff --git a/openbsd/frontends/var/nsd:blowfish/etc/nsd.conf b/openbsd/frontends/var/nsd:blowfish/etc/nsd.conf deleted file mode 100644 index 535acea..0000000 --- a/openbsd/frontends/var/nsd:blowfish/etc/nsd.conf +++ /dev/null @@ -1,59 +0,0 @@ -include: "/var/nsd/etc/key.conf" - -server: - hide-version: yes - verbosity: 1 - database: "" # disable database - debug-mode: no - -remote-control: - control-enable: yes - control-interface: /var/run/nsd.sock - -zone: - name: "buetow.org" - zonefile: "master/buetow.org.zone" - notify: 108.160.134.135 blowfish.buetow.org - provide-xfr: 108.160.134.135 blowfish.buetow.org - -zone: - name: "dtail.dev" - zonefile: "master/dtail.dev.zone" - notify: 108.160.134.135 blowfish.buetow.org - provide-xfr: 108.160.134.135 blowfish.buetow.org - -zone: - name: "foo.zone" - zonefile: "master/foo.zone.zone" - notify: 108.160.134.135 blowfish.buetow.org - provide-xfr: 108.160.134.135 blowfish.buetow.org - -zone: - name: "foo.surf" - zonefile: "master/foo.surf.zone" - notify: 108.160.134.135 blowfish.buetow.org - provide-xfr: 108.160.134.135 blowfish.buetow.org - -zone: - name: "snonux.de" - zonefile: "master/snonux.de.zone" - notify: 108.160.134.135 blowfish.buetow.org - provide-xfr: 108.160.134.135 blowfish.buetow.org - -zone: - name: "irregular.ninja" - zonefile: "master/irregular.ninja.zone" - notify: 108.160.134.135 blowfish.buetow.org - provide-xfr: 108.160.134.135 blowfish.buetow.org - -zone: - name: "sidewalk.ninja" - zonefile: "master/sidewalk.ninja.zone" - notify: 108.160.134.135 blowfish.buetow.org - provide-xfr: 108.160.134.135 blowfish.buetow.org - -zone: - name: "snonux.me" - zonefile: "master/snonux.me.zone" - notify: 108.160.134.135 blowfish.buetow.org - provide-xfr: 108.160.134.135 blowfish.buetow.org diff --git a/openbsd/frontends/var/nsd:blowfish/zones/master/buetow.org.zone b/openbsd/frontends/var/nsd:blowfish/zones/master/buetow.org.zone deleted file mode 100644 index 6e6d925..0000000 --- a/openbsd/frontends/var/nsd:blowfish/zones/master/buetow.org.zone +++ /dev/null @@ -1,38 +0,0 @@ -$ORIGIN buetow.org. -$TTL 4h -@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( - 2022031701 ; serial - 1h ; refresh - 30m ; retry - 7d ; expire - 1h ) ; negative - IN NS blowfish.buetow.org. - IN NS twofish.buetow.org. - - IN MX 10 buetow.org. - IN MX 20 www.buetow.org. - 86400 IN A 23.88.35.144 - 86400 IN AAAA 2a01:4f8:c17:20f1::42 - -* IN MX 10 buetow.org. -* IN MX 20 www.buetow.org. -* 86400 IN A 23.88.35.144 -* 86400 IN AAAA 2a01:4f8:c17:20f1::42 - -blowfish 86400 IN A 23.88.35.144 -blowfish 86400 IN AAAA 2a01:4f8:c17:20f1::42 -git1 3600 IN CNAME blowfish - -twofish 86400 IN A 108.160.134.135 -twofish 86400 IN AAAA 2401:c080:1000:45af:5400:3ff:fec6:ca1d -git2 3600 IN CNAME twofish -www 3600 IN CNAME twofish - -vulcan 86400 IN A 95.216.174.192 -vulcan 86400 IN AAAA 2a01:4f9:c010:250e::1 -vu 86400 IN CNAME vulcan -wolke7 3600 IN CNAME vulcan -edge 3600 IN CNAME vulcan - -sofia 86400 IN CNAME 79-100-3-54.ip.btc-net.bg. -www2 3600 IN CNAME snonux.codeberg.page. diff --git a/openbsd/frontends/var/nsd:blowfish/zones/master/dtail.dev.zone b/openbsd/frontends/var/nsd:blowfish/zones/master/dtail.dev.zone deleted file mode 100644 index 09018a4..0000000 --- a/openbsd/frontends/var/nsd:blowfish/zones/master/dtail.dev.zone +++ /dev/null @@ -1,16 +0,0 @@ -$ORIGIN dtail.dev. -$TTL 4h -@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( - 2022011708 ; serial - 1h ; refresh - 30m ; retry - 7d ; expire - 1h ) ; negative - IN NS blowfish.buetow.org. - IN NS twofish.buetow.org. - - 86400 IN A 23.88.35.144 - 86400 IN AAAA 2a01:4f8:c17:20f1::4 -* 86400 IN CNAME blowfish.buetow.org. -github 86400 IN CNAME mimecast.github.io. - diff --git a/openbsd/frontends/var/nsd:blowfish/zones/master/foo.surf.zone b/openbsd/frontends/var/nsd:blowfish/zones/master/foo.surf.zone deleted file mode 100644 index a08cf19..0000000 --- a/openbsd/frontends/var/nsd:blowfish/zones/master/foo.surf.zone +++ /dev/null @@ -1,17 +0,0 @@ -$ORIGIN foo.surf. -$TTL 4h -@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( - 2022013001 ; serial - 1h ; refresh - 30m ; retry - 7d ; expire - 1h ) ; negative - IN NS blowfish.buetow.org. - IN NS twofish.buetow.org. - - IN MX 20 buetow.org. - IN MX 10 www.buetow.org. - - 86400 IN A 108.160.134.135 - 86400 IN AAAA 2401:c080:1000:45af:5400:3ff:fec6:ca1d -www 86400 IN CNAME blowfish.buetow.org. diff --git a/openbsd/frontends/var/nsd:blowfish/zones/master/foo.zone.zone b/openbsd/frontends/var/nsd:blowfish/zones/master/foo.zone.zone deleted file mode 100644 index 4bfa771..0000000 --- a/openbsd/frontends/var/nsd:blowfish/zones/master/foo.zone.zone +++ /dev/null @@ -1,19 +0,0 @@ -$ORIGIN foo.zone. -$TTL 4h -@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( - 2022011708 ; serial - 1h ; refresh - 30m ; retry - 7d ; expire - 1h ) ; negative - IN NS blowfish.buetow.org. - IN NS twofish.buetow.org. - - IN MX 10 buetow.org. - IN MX 20 www.buetow.org. - - - 86400 IN A 23.88.35.144 - 86400 IN AAAA 2a01:4f8:c17:20f1::42 -* 86400 IN CNAME blowfish.buetow.org. -www 86400 IN CNAME twofish.buetow.org. diff --git a/openbsd/frontends/var/nsd:blowfish/zones/master/irregular.ninja.zone b/openbsd/frontends/var/nsd:blowfish/zones/master/irregular.ninja.zone deleted file mode 100644 index 1bd851a..0000000 --- a/openbsd/frontends/var/nsd:blowfish/zones/master/irregular.ninja.zone +++ /dev/null @@ -1,18 +0,0 @@ -$ORIGIN irregular.ninja. -$TTL 4h -@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( - 2022011707 ; serial - 1h ; refresh - 30m ; retry - 7d ; expire - 1h ) ; negative - IN NS blowfish.buetow.org. - IN NS twofish.buetow.org. - - IN MX 10 buetow.org. - IN MX 20 www.buetow.org. - - 86400 IN A 23.88.35.144 - 86400 IN AAAA 2a01:4f8:c17:20f1::42 -* 86400 IN CNAME blowfish.buetow.org. -www 86400 IN CNAME twofish.buetow.org. diff --git a/openbsd/frontends/var/nsd:blowfish/zones/master/sidewalk.ninja.zone b/openbsd/frontends/var/nsd:blowfish/zones/master/sidewalk.ninja.zone deleted file mode 100644 index 97174a8..0000000 --- a/openbsd/frontends/var/nsd:blowfish/zones/master/sidewalk.ninja.zone +++ /dev/null @@ -1,18 +0,0 @@ -$ORIGIN sidewalk.ninja. -$TTL 4h -@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( - 2022011707 ; serial - 1h ; refresh - 30m ; retry - 7d ; expire - 1h ) ; negative - IN NS blowfish.buetow.org. - IN NS twofish.buetow.org. - - IN MX 10 buetow.org. - IN MX 20 www.buetow.org. - - 86400 IN A 23.88.35.144 - 86400 IN AAAA 2a01:4f8:c17:20f1::42 -* 86400 IN CNAME blowfish.buetow.org. -www 86400 IN CNAME twofish.buetow.org. diff --git a/openbsd/frontends/var/nsd:blowfish/zones/master/snonux.de.zone b/openbsd/frontends/var/nsd:blowfish/zones/master/snonux.de.zone deleted file mode 100644 index c30b87c..0000000 --- a/openbsd/frontends/var/nsd:blowfish/zones/master/snonux.de.zone +++ /dev/null @@ -1,19 +0,0 @@ -$ORIGIN snonux.de. -$TTL 4h -@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( - 2022011708 ; serial - 1h ; refresh - 30m ; retry - 7d ; expire - 1h ) ; negative - IN NS blowfish.buetow.org. - IN NS twofish.buetow.org. - - IN MX 10 buetow.org. - IN MX 20 www.buetow.org. - - - 86400 IN A 23.88.35.144 - 86400 IN AAAA 2a01:4f8:c17:20f1::42 -* 86400 IN CNAME blowfish.buetow.org. -www 86400 IN CNAME twofish.buetow.org. diff --git a/openbsd/frontends/var/nsd:blowfish/zones/master/snonux.me.zone b/openbsd/frontends/var/nsd:blowfish/zones/master/snonux.me.zone deleted file mode 100644 index 82ce20c..0000000 --- a/openbsd/frontends/var/nsd:blowfish/zones/master/snonux.me.zone +++ /dev/null @@ -1,19 +0,0 @@ -$ORIGIN snonux.me. -$TTL 4h -@ IN SOA blowfish.buetow.org. hostmaster.buetow.org. ( - 2022011707 ; serial - 1h ; refresh - 30m ; retry - 7d ; expire - 1h ) ; negative - IN NS blowfish.buetow.org. - IN NS twofish.buetow.org. - - IN MX 10 buetow.org. - IN MX 20 www.buetow.org. - - - 86400 IN A 23.88.35.144 - 86400 IN AAAA 2a01:4f8:c17:20f1::42 -* 86400 IN CNAME blowfish.buetow.org. -www 86400 IN CNAME twofish.buetow.org. diff --git a/openbsd/frontends/var/nsd:twofish/etc/key.conf.templ b/openbsd/frontends/var/nsd:twofish/etc/key.conf.templ deleted file mode 100644 index 36e855f..0000000 --- a/openbsd/frontends/var/nsd:twofish/etc/key.conf.templ +++ /dev/null @@ -1,4 +0,0 @@ -key: - name: blowfish.buetow.org - algorithm: hmac-sha256 - secret: %%ADDSECRETHEREIN"MARKS%% -- cgit v1.2.3