From 0e17c12b16a471c79333d9e684a9bd56a082615a Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Fri, 6 Jun 2025 22:27:49 +0000 Subject: Initial public version --- rzc.toml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 rzc.toml (limited to 'rzc.toml') diff --git a/rzc.toml b/rzc.toml new file mode 100644 index 0000000..e88b275 --- /dev/null +++ b/rzc.toml @@ -0,0 +1,37 @@ +[output] + +directory = "output" +ttl = 3600 +soa.mname = "localhost" +soa.rname = "ns0.example.org" +soa.refresh = 10803 +soa.retry = 900 +soa.expire = 604800 +soa.minimum = 600 + +ns = [ + "ns1.example.org", + "ns2.example.org", +] + +zones = [ + "1.0.10.in-addr.arpa", + "2.0.10.in-addr.arpa", + "3.0.10.in-addr.arpa", + "1.0.a.2.0.0.2.ip6.arpa", + "2.0.a.2.0.0.2.ip6.arpa", + "3.0.a.2.0.0.2.ip6.arpa", +] + +[input] +xfr_timeout = 300 +cache = "cache" + +[[input.zone]] +name = "fred.example" +server = "10.100.0.1" +tsig = { "tsig.example.org" = ["hmac-sha256", "36A2xRALPymYl3Q7axrtAk1AICJyPhu2KkK7PxJhTQ8=" ] } + +[[input.zone]] +name = "barney.example" +server = "10.200.0.1" -- cgit v1.2.3