From: Michael Orlitzky Date: Thu, 15 Sep 2022 02:53:37 +0000 (-0400) Subject: bin/djbdns-logparse.py: add some newer type mappings. X-Git-Tag: 0.0.1~53 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=b022571253ee828aab1e997a03e0205d439aff7f;p=djbdns-logparse.git bin/djbdns-logparse.py: add some newer type mappings. I've added srv, naptr, dnskey, tlsa, https, and caa type mappings based on what my own logs contain. Only SRV is actually supported by tinydns. There are probably others in use today that will show up eventually. --- diff --git a/bin/djbdns-logparse.py b/bin/djbdns-logparse.py index 50161fa..bfb2913 100755 --- a/bin/djbdns-logparse.py +++ b/bin/djbdns-logparse.py @@ -33,9 +33,15 @@ query_type = { 24: "sig", 25: "key", 28: "aaaa", + 33: "srv", + 35: "naptr", 38: "a6", + 48: "dnskey", + 52: "tlsa", + 65: "https", 252: "axfr", 255: "any", + 257: "caa" } # for tinydns only