https://github.com/kirei/dnssec_ta_tool
DNSSEC Trust Anchor Tool
https://github.com/kirei/dnssec_ta_tool
dnssec
Last synced: about 1 year ago
JSON representation
DNSSEC Trust Anchor Tool
- Host: GitHub
- URL: https://github.com/kirei/dnssec_ta_tool
- Owner: kirei
- License: other
- Created: 2016-12-14T08:35:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-07T07:16:41.000Z (over 9 years ago)
- Last Synced: 2025-02-15T06:21:33.222Z (over 1 year ago)
- Topics: dnssec
- Language: Python
- Size: 27.3 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DNSSEC TA Tool
[](https://travis-ci.org/kirei/dnssec_ta_tool)
This tool will extract DNSSEC Trust Anchors from a Trust Anchor XML file formatted as described in [RFC 7958](https://www.rfc-editor.org/rfc/rfc7958.txt). Validation of the detached signature over the Trust Anchor XML file IS NOT performed by this tool.
## Usage
python3 dnssec_ta_tool.py --format dnskey --verbose
python3 dnssec_ta_tool.py --format ds --output trust-anchor-file.conf
python3 dnssec_ta_tool.py --format bind-managed --output managed-keys.bind
python3 dnssec_ta_tool.py --format bind-trusted --output trusted-keys.bind
## Format Specification
- [RFC 7958](https://www.rfc-editor.org/rfc/rfc7958.txt)
## Root zone Trust Anchors
- https://www.iana.org/dnssec
- https://data.iana.org/root-anchors/root-anchors.xml
## Trust Anchor Validation
Before use, all trust anchors should be validated. Example code for how to do this using OpenSSL is available in ``dnssec_ta_tool_wrapper.sh``.