From 0d8f4b462076d85dd6fe9b2bca5c0b871eb6ffa5 Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Mon, 25 Nov 2024 05:13:31 +0100 Subject: [PATCH] Write templates with right NS entries. --- tools/write-template-zone-file.cr | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/write-template-zone-file.cr b/tools/write-template-zone-file.cr index 753734f..ac1e20f 100644 --- a/tools/write-template-zone-file.cr +++ b/tools/write-template-zone-file.cr @@ -23,15 +23,15 @@ zone << DSZ::SOA.new "#{domain}.", # name 3600.to_u32, # TTL "ns0.#{domain}.", # Master Name Server for the zone "dnsmaster.#{domain}.", # admin email address - 2023070100.to_u64, # serial + 2024112500.to_u64, # serial 3600.to_u64, # refresh 600.to_u64, # retry 2419200.to_u64, # expire 600.to_u64 # minimum TTL # NS: name ttl target -zone << DSZ::NS.new "#{domain}.", 3600.to_u32, "ns0.arn-fai.net." -zone << DSZ::NS.new "#{domain}.", 3600.to_u32, "alsace.tetaneutral.net." +zone << DSZ::NS.new "#{domain}.", 3600.to_u32, "ns0.karchnu.fr." +zone << DSZ::NS.new "#{domain}.", 3600.to_u32, "ns1.karchnu.fr." # All default values are read-only (by default). # Still, some dedicated messages can change some of these values, but the default behavior is to protect my SANITY.