Add DNSKEY and CDNSKEY with unknown algorithm number (PRIVATEDNS) and \0 as content

This commit is contained in:
Ondřej Surý
2018-12-05 11:28:11 +01:00
parent b13c7ca402
commit 00cc0b236a
2 changed files with 3 additions and 1 deletions

View File

@@ -34,6 +34,7 @@ dnskey 300 DNSKEY 256 3 13 (
wO6zW3RzrvmNIMgFag6G uXofiSwJ6YDeQ0O
3uhPJsJ7ivpbh+w==
)
private-dnskey 300 DNSKEY 256 3 253 ( AAo= )
ds 300 DS 30795 1 1 (
310D27F4D82C1FC2400704EA9939FE6E1CEA
A3B9 )
@@ -42,6 +43,7 @@ cdnskey 300 CDNSKEY 256 3 13 (
wO6zW3RzrvmNIMgFag6G uXofiSwJ6YDeQ0O
3uhPJsJ7ivpbh+w==
)
private-cdnskey 300 CDNSKEY 256 3 253 ( AAo= )
cds 300 CDS 30795 1 1 (
310D27F4D82C1FC2400704EA9939FE6E1CEA
A3B9 )

View File

@@ -99,7 +99,7 @@ set -- 1 2 3
for zone in example example-explicit example-compat; do
for server in "$@"; do
for name in ns mx a aaaa cname dname txt rrsig nsec \
dnskey ds cdnskey cds; do
dnskey ds cdnskey cds private-dnskey private-cdnskey; do
dig_with_opts "$name.$zone." "$name" "@10.53.0.$server"
echo
done > "dig.out.$zone.$server.test$n"