]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Update libunbound/python/examples/dnssec_test.py example code to
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 2 Jul 2018 14:46:31 +0000 (14:46 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 2 Jul 2018 14:46:31 +0000 (14:46 +0000)
  also set the 20326 trust anchor for the root in the example code.

git-svn-id: file:///svn/unbound/trunk@4767 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
libunbound/python/examples/dnssec_test.py

index 9306acc14090cfe3cbe06bd7ddcbd954742ea77c..46f08d2943a93e94f38bff08eec553f787020b13 100644 (file)
@@ -1,6 +1,8 @@
 2 July 2018: Wouter
        - Fix checking for libhiredis printout in configure output.
        - Fix typo on man page in ip-address description.
+       - Update libunbound/python/examples/dnssec_test.py example code to
+         also set the 20326 trust anchor for the root in the example code.
 
 29 June 2018: Wouter
        - dns64-ignore-aaaa: config option to list domain names for which the
index 430e51a8068a7be23684c7554f8cde4e720d7f64..b76c0437e3f6215d7f1e2f3959db8f2562ecb6b5 100644 (file)
@@ -29,6 +29,7 @@ def dnssecParse(domain, rrType=RR_TYPE_A):
 
 resolver = ub_ctx()
 resolver.add_ta(".   IN DS   19036 8 2 49AAC11D7B6F6446702E54A1607371607A1A41855200FD2CE1CDDE32F24E8FB5")
+resolver.add_ta(".   IN DS   20326 8 2 E06D44B80B8F1D39A95C0B0D7C65D08458E880409BBC683457104237C7F8EC8D")
 
 dnssecParse("nic.cz")
 dnssecParse("nonexistent-domain-blablabla.cz")