From f5dcda4a8473ca6d9cd39b9bc36adf6fe7053a52 Mon Sep 17 00:00:00 2001 From: Saibot21 <92251573+Saibot21@users.noreply.github.com> Date: Thu, 4 Apr 2024 21:37:16 +0200 Subject: [PATCH] fix named.conf.local quotes and algorthm --- dns-server/auth/named.conf.local | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dns-server/auth/named.conf.local b/dns-server/auth/named.conf.local index 67d18ec..7892e52 100644 --- a/dns-server/auth/named.conf.local +++ b/dns-server/auth/named.conf.local @@ -18,18 +18,18 @@ key "{{ zone_key }}" { }; {%- endfor %} -key "freifunk-net-axfr" { - algorithm hmac-sha512; +key "freifunk-net-ffmuc" { + algorithm hmac-sha256; secret "{{ freifunk_net_axfr['key'] }}"; }; -zone „freifunk.net“ { +zone "freifunk.net" { type slave; - file „/etc/bind/zones/db.freifunk.net“; + file "/etc/bind/zones/db.freifunk.net"; allow-notify { 127.0.0.1; ::1; }; notify explicit; also-notify port 553 { 10.8.0.39; 10.8.0.40; 10.8.0.38; 10.8.0.13; }; - masters { 213.160.72.212 key freifunk-net-axfr; }; + masters { 213.160.72.212 key freifunk-net-ffmuc; }; }; {%- for zone in zones %}