├── .coveragerc ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .travis.yml ├── CHANGES ├── HOWTO.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── TODO ├── all-unittests.sh ├── bind9_parser ├── __init__.py ├── isc_acl.py ├── isc_aml.py ├── isc_clause_acl.py ├── isc_clause_controls.py ├── isc_clause_dlz.py ├── isc_clause_dnssec_policy.py ├── isc_clause_dyndb.py ├── isc_clause_http.py ├── isc_clause_key.py ├── isc_clause_logging.py ├── isc_clause_managed_keys.py ├── isc_clause_options.py ├── isc_clause_parental_agents.py ├── isc_clause_plugin.py ├── isc_clause_primaries.py ├── isc_clause_server.py ├── isc_clause_statistics_channels.py ├── isc_clause_tls.py ├── isc_clause_trust_anchors.py ├── isc_clause_trusted_keys.py ├── isc_clause_view.py ├── isc_clause_zone.py ├── isc_clauses.py ├── isc_domain.py ├── isc_inet.py ├── isc_managed_keys.py ├── isc_options.py ├── isc_optview.py ├── isc_optviewserver.py ├── isc_optviewzone.py ├── isc_optviewzoneserver.py ├── isc_optzone.py ├── isc_primaries.py ├── isc_rr.py ├── isc_server.py ├── isc_trusted_keys.py ├── isc_utils.py ├── isc_view.py ├── isc_viewzone.py ├── isc_zone.py └── pyproject.toml ├── docs ├── Bv8ARM-8.4.0.html │ ├── acl.html │ ├── address_list.html │ ├── comments.html │ ├── config.html │ ├── controls.html │ ├── docdef.html │ ├── example.html │ ├── include.html │ ├── index.html │ ├── key.html │ ├── logging.html │ ├── master.html │ ├── options.html │ ├── server.html │ ├── trusted-keys.html │ └── zone.html ├── Bv8ARM-8.4.6.html │ ├── acl.html │ ├── address_list.html │ ├── comments.html │ ├── config.html │ ├── controls.html │ ├── docdef.html │ ├── example.html │ ├── include.html │ ├── index.html │ ├── key.html │ ├── logging.html │ ├── master.html │ ├── options.html │ ├── server.html │ ├── trusted-keys.html │ └── zone.html ├── Bv9ARM-v9.0.0.txt ├── Bv9ARM-v9.10.pdf ├── Bv9ARM-v9.12.0.pdf ├── Bv9ARM-v9.12.0a1.pdf ├── Bv9ARM-v9.13.0.pdf ├── Bv9ARM-v9.14.0.pdf ├── Bv9ARM-v9.15.0.pdf ├── Bv9ARM-v9.16.pdf ├── Bv9ARM-v9.4.0.pdf ├── Bv9ARM-v9.5.0.pdf ├── Bv9ARM-v9.6.0.pdf ├── Bv9ARM-v9.7.0.pdf ├── Bv9ARM-v9.8.0.pdf ├── Bv9ARM-v9.9.0.pdf ├── Bv9ARM-v9.9.7.pdf ├── CIS_BIND_9.0-9.5_Benchmark_v2.0.01.pdf ├── DESIGN-work-in-progress.md ├── README ├── bind-9.2.0.tar.gz ├── bind-9.3.0.tar.gz ├── bind-doc-8.1.tar.gz ├── bind-doc.tar-8.4.7.gz ├── bind-doc.tar-v8.1.gz ├── bind-doc.tar-v8.3.0.gz ├── bind-doc.tar-v8.4.0.gz ├── bind10-1.0.0.tar.gz ├── bind10-1.1.0.tar.gz ├── bind10-1.2.0.tar.gz ├── options.9.0.0 ├── options.9.1.0 ├── options.9.10.0 ├── options.9.11.0 ├── options.9.12.0 ├── options.9.13.0 ├── options.9.14.0 ├── options.9.15.0 ├── options.9.16.0 ├── options.9.17.0 ├── options.9.18.0 ├── options.9.19.0 ├── options.9.2.0 ├── options.9.3.0 ├── options.9.4.0 ├── options.9.5.0 ├── options.9.5.0.orig ├── options.9.6.0 ├── options.9.7.0 ├── options.9.8.0 └── options.9.9.0 ├── dump-named-conf-json.py ├── dump-named-conf.py ├── examples ├── README ├── bugs │ ├── P000 │ │ ├── README.md │ │ └── p000.py │ ├── bug-bind9_parser-001.txt │ └── t1.py ├── exclamation.py ├── flatten_namedconf.py ├── isc_boolean.py ├── named-conf │ ├── basic │ │ └── named.conf │ ├── debian-HOWTO │ │ └── etc │ │ │ └── bind │ │ │ ├── named.conf │ │ │ ├── named.conf.default-zones │ │ │ ├── named.conf.local │ │ │ ├── named.conf.options │ │ │ ├── ns-example-com_rndc-key │ │ │ └── zones.rfc1918 │ ├── hidden-master │ │ └── public │ │ │ └── etc │ │ │ └── bind │ │ │ ├── .orig │ │ │ ├── bind.keys │ │ │ ├── db.0 │ │ │ ├── db.127 │ │ │ ├── db.255 │ │ │ ├── db.empty │ │ │ ├── db.local │ │ │ ├── db.root │ │ │ ├── named.conf │ │ │ ├── named.conf.default-zones │ │ │ ├── named.conf.local │ │ │ ├── named.conf.options │ │ │ ├── rndc.key │ │ │ └── zones.rfc1918 │ │ │ ├── KEY_LOCATIONS.txt │ │ │ ├── acl-named.conf │ │ │ ├── bind.keys │ │ │ ├── controls-named.conf │ │ │ ├── db.0 │ │ │ ├── db.127 │ │ │ ├── db.255 │ │ │ ├── db.empty │ │ │ ├── db.local │ │ │ ├── db.root │ │ │ ├── default-zones-named.conf │ │ │ ├── generate-keys.sh │ │ │ ├── keys │ │ │ ├── ddns.md5.master-to-slave.key │ │ │ ├── ddns.sha512.master-to-slave.key │ │ │ ├── ddns.sha512.public-master-to-public-secondary.key │ │ │ ├── named.conf.key │ │ │ └── rndc.sha512.key │ │ │ ├── local-named.conf │ │ │ ├── logging-named.conf │ │ │ ├── managed-keys-named.conf │ │ │ ├── masters-named.conf │ │ │ ├── named.conf │ │ │ ├── named.iscdlv.key │ │ │ ├── options-named.conf │ │ │ ├── rndc.conf │ │ │ ├── servers-named.conf │ │ │ ├── statistics-named.conf │ │ │ ├── trusted-keys-named.conf │ │ │ ├── view.chaos │ │ │ ├── view.local │ │ │ ├── view.red │ │ │ ├── views-named.conf │ │ │ ├── zones-named.conf │ │ │ ├── zones.rfc1918 │ │ │ └── zones │ │ │ ├── db.0 │ │ │ ├── db.127 │ │ │ ├── db.255 │ │ │ ├── db.bind │ │ │ ├── db.empty │ │ │ ├── db.empty.10 │ │ │ ├── db.empty.16.172 │ │ │ ├── db.empty.168.192 │ │ │ ├── db.empty.17.172 │ │ │ ├── db.empty.18.172 │ │ │ ├── db.empty.19.172 │ │ │ ├── db.empty.20.172 │ │ │ ├── db.empty.21.172 │ │ │ ├── db.empty.22.172 │ │ │ ├── db.empty.23.172 │ │ │ ├── db.empty.24.172 │ │ │ ├── db.empty.25.172 │ │ │ ├── db.empty.26.172 │ │ │ ├── db.empty.27.172 │ │ │ ├── db.empty.28.172 │ │ │ ├── db.empty.29.172 │ │ │ ├── db.empty.30.172 │ │ │ ├── db.empty.31.172 │ │ │ ├── db.local │ │ │ └── db.root │ ├── linuxjournal │ │ ├── named.conf │ │ └── x.key │ ├── linuxquestions │ │ └── named.conf │ ├── mmacleod.ca │ │ ├── dnsadmin.key │ │ └── named.conf │ ├── named-oracle.conf │ ├── named-tldp.conf │ ├── named-zytrax.conf │ ├── redhat-9.3 │ │ └── etc │ │ │ ├── named.conf │ │ │ ├── named.rfc1912.zones │ │ │ └── named.root.hints │ ├── sbarjatiya.com │ │ ├── etc │ │ │ ├── named.rfc1912.zones │ │ │ └── named.root.hints │ │ └── named.conf │ ├── split-horizon-2-bind9-servers │ │ └── etc │ │ │ ├── bind │ │ │ ├── README │ │ │ ├── README.otherfiles │ │ │ ├── README.setup │ │ │ ├── internal │ │ │ │ ├── README │ │ │ │ ├── acl-named.conf │ │ │ │ ├── channels-named.conf │ │ │ │ ├── controls-named.conf │ │ │ │ ├── hz.cache.home │ │ │ │ ├── hz.cache.lab │ │ │ │ ├── keys │ │ │ │ │ ├── README.bind.keys │ │ │ │ │ ├── ddns.md5.dhcp-updater.key │ │ │ │ │ ├── ddns.md5.master-to-slave.key │ │ │ │ │ ├── ddns.sha256.dns-arca-a.key │ │ │ │ │ ├── keys-named.conf │ │ │ │ │ ├── red-named.conf.keys │ │ │ │ │ ├── rndc.md5.key │ │ │ │ │ ├── tlsa-privkey.pem │ │ │ │ │ └── tlsa-pubkey.pem │ │ │ │ ├── local-named.conf │ │ │ │ ├── masters-named.conf │ │ │ │ ├── mz.home │ │ │ │ ├── mz.ip4.1.168.192 │ │ │ │ ├── mz.ip4.127 │ │ │ │ ├── mz.ip4.4.168.192 │ │ │ │ ├── mz.ip4.5.168.192 │ │ │ │ ├── mz.ip4.6.168.192 │ │ │ │ ├── mz.ip4.7.168.192 │ │ │ │ ├── mz.lab │ │ │ │ ├── mz.localhost │ │ │ │ ├── options-named.conf │ │ │ │ ├── servers-named.conf │ │ │ │ ├── statistics-named.conf │ │ │ │ ├── sz.example.com │ │ │ │ ├── trusted-keys-named.conf │ │ │ │ ├── view.cable │ │ │ │ ├── view.chaos │ │ │ │ ├── view.green │ │ │ │ └── x-named.conf │ │ │ ├── keys │ │ │ │ ├── README.bind.keys │ │ │ │ ├── ddns.md5.dhcp-updater.key │ │ │ │ ├── ddns.md5.master-to-slave.key │ │ │ │ ├── ddns.sha256.dns-arca-a.key │ │ │ │ ├── keys-named.conf │ │ │ │ ├── red-named.conf.keys │ │ │ │ ├── rndc.md5.key │ │ │ │ ├── tlsa-privkey.pem │ │ │ │ └── tlsa-pubkey.pem │ │ │ ├── named-internal.conf │ │ │ ├── named-public.conf │ │ │ ├── public │ │ │ │ ├── acl-named.conf │ │ │ │ ├── channels-named.conf │ │ │ │ ├── controls-named.conf │ │ │ │ ├── keys │ │ │ │ │ ├── README.bind.keys │ │ │ │ │ ├── ddns.md5.dhcp-updater.key │ │ │ │ │ ├── ddns.md5.master-to-slave.key │ │ │ │ │ ├── ddns.sha256.dns-arca-a.key │ │ │ │ │ ├── keys-named.conf │ │ │ │ │ ├── red-named.conf.keys │ │ │ │ │ ├── rndc.md5.key │ │ │ │ │ ├── tlsa-privkey.pem │ │ │ │ │ └── tlsa-pubkey.pem │ │ │ │ ├── local-named.conf │ │ │ │ ├── masters-named.conf │ │ │ │ ├── mz.example.net │ │ │ │ ├── options-named.conf │ │ │ │ ├── servers-named.conf │ │ │ │ ├── statistics-named.conf │ │ │ │ ├── trusted-keys-named.conf │ │ │ │ ├── view.chaos │ │ │ │ └── view.red │ │ │ └── rndc.conf │ │ │ └── systemd │ │ │ └── system │ │ │ ├── README │ │ │ ├── bind9-internal.service │ │ │ ├── bind9-public.service │ │ │ └── bind9.service.d │ │ │ └── unit-conflicts.conf │ └── wellho │ │ └── etc │ │ ├── named.conf │ │ └── named.conf.include ├── patterns │ ├── opt-forwarders-named.conf │ ├── opt-response-policies-named.conf │ ├── options-ipv4only-contact-named.conf │ ├── trusted-keys-named.conf │ ├── zone-multiple-slave-masters-named.conf │ └── zone-slave-masters-named.conf ├── rough-draft │ ├── namedconf.py │ ├── namedconfglobal.py │ └── requirements.txt └── try-me.sh ├── pyproject.toml ├── requirements-test.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── all-test.sh ├── all-unittests.sh ├── bug-reports │ ├── etc │ │ ├── named.rfc1912.zones │ │ └── named.root.hints │ ├── github-issue-10.named.conf │ ├── github-issue-12.named.conf │ ├── github-issue-13.named.conf │ ├── github-issue-34.named-variant1.conf │ ├── github-issue-34.named.conf │ ├── github-issue-35-variant1.named.conf │ ├── github-issue-35.named.conf │ ├── github-issue-4.named.conf │ ├── github-issue-5.named.conf │ ├── github-issue-8.named.conf │ ├── github-issue-9.view │ ├── ml-bind-users.named.conf │ ├── post-parser.named.conf │ └── x.named.conf ├── github-issues ├── runner_tests.py ├── split-horizon-2-bind9-servers │ └── etc │ │ ├── bind │ │ ├── README │ │ ├── README.otherfiles │ │ ├── README.setup │ │ ├── internal │ │ │ ├── README │ │ │ ├── acl-named.conf │ │ │ ├── channels-named.conf │ │ │ ├── controls-named.conf │ │ │ ├── hz.cache.home │ │ │ ├── hz.cache.lab │ │ │ ├── keys │ │ │ │ ├── README.bind.keys │ │ │ │ ├── ddns.md5.dhcp-updater.key │ │ │ │ ├── ddns.md5.master-to-slave.key │ │ │ │ ├── ddns.sha256.dns-arca-a.key │ │ │ │ ├── keys-named.conf │ │ │ │ ├── red-named.conf.keys │ │ │ │ ├── rndc.md5.key │ │ │ │ ├── tlsa-privkey.pem │ │ │ │ └── tlsa-pubkey.pem │ │ │ ├── local-named.conf │ │ │ ├── masters-named.conf │ │ │ ├── mz.home │ │ │ ├── mz.ip4.1.168.192 │ │ │ ├── mz.ip4.127 │ │ │ ├── mz.ip4.4.168.192 │ │ │ ├── mz.ip4.5.168.192 │ │ │ ├── mz.ip4.6.168.192 │ │ │ ├── mz.ip4.7.168.192 │ │ │ ├── mz.lab │ │ │ ├── mz.localhost │ │ │ ├── options-named.conf │ │ │ ├── servers-named.conf │ │ │ ├── statistics-named.conf │ │ │ ├── sz.example.com │ │ │ ├── trusted-keys-named.conf │ │ │ ├── view.cable │ │ │ ├── view.chaos │ │ │ └── view.green │ │ ├── keys │ │ │ ├── README.bind.keys │ │ │ ├── ddns.md5.dhcp-updater.key │ │ │ ├── ddns.md5.master-to-slave.key │ │ │ ├── ddns.sha256.dns-arca-a.key │ │ │ ├── keys-named.conf │ │ │ ├── red-named.conf.keys │ │ │ ├── rndc.md5.key │ │ │ ├── tlsa-privkey.pem │ │ │ └── tlsa-pubkey.pem │ │ ├── named-internal.conf │ │ ├── named-public.conf │ │ ├── public │ │ │ ├── acl-named.conf │ │ │ ├── channels-named.conf │ │ │ ├── controls-named.conf │ │ │ ├── keys │ │ │ │ ├── README.bind.keys │ │ │ │ ├── ddns.md5.dhcp-updater.key │ │ │ │ ├── ddns.md5.master-to-slave.key │ │ │ │ ├── ddns.sha256.dns-arca-a.key │ │ │ │ ├── keys-named.conf │ │ │ │ ├── red-named.conf.keys │ │ │ │ ├── rndc.md5.key │ │ │ │ ├── tlsa-privkey.pem │ │ │ │ └── tlsa-pubkey.pem │ │ │ ├── local-named.conf │ │ │ ├── masters-named.conf │ │ │ ├── mz.example.net │ │ │ ├── options-named.conf │ │ │ ├── servers-named.conf │ │ │ ├── statistics-named.conf │ │ │ ├── trusted-keys-named.conf │ │ │ ├── view.chaos │ │ │ └── view.red │ │ └── rndc.conf │ │ └── systemd │ │ └── system │ │ ├── README │ │ ├── bind9-internal.service │ │ ├── bind9-public.service │ │ └── bind9.service.d │ │ └── unit-conflicts.conf ├── test_acl.py ├── test_aml.py ├── test_clause_acl.py ├── test_clause_controls.py ├── test_clause_dlz.py ├── test_clause_dnssec_policy.py ├── test_clause_dyndb.py ├── test_clause_http.py ├── test_clause_key.py ├── test_clause_logging.py ├── test_clause_managed_keys.py ├── test_clause_options.py ├── test_clause_parental_agents.py ├── test_clause_plugin.py ├── test_clause_primaries.py ├── test_clause_server.py ├── test_clause_statistics_channels.py ├── test_clause_tls.py ├── test_clause_trust_anchors.py ├── test_clause_trusted_keys.py ├── test_clause_view.py ├── test_clause_zone.py ├── test_clauses.py ├── test_domain.py ├── test_inet.py ├── test_managed_keys.py ├── test_options.py ├── test_optview.py ├── test_optviewserver.py ├── test_optviewzone.py ├── test_optviewzoneserver.py ├── test_optzone.py ├── test_primaries.py ├── test_rr.py ├── test_server.py ├── test_trusted_keys.py ├── test_utils.py ├── test_view.py ├── test_viewzone.py └── test_zone.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/CHANGES -------------------------------------------------------------------------------- /HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/HOWTO.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/TODO -------------------------------------------------------------------------------- /all-unittests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/all-unittests.sh -------------------------------------------------------------------------------- /bind9_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/__init__.py -------------------------------------------------------------------------------- /bind9_parser/isc_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_acl.py -------------------------------------------------------------------------------- /bind9_parser/isc_aml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_aml.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_acl.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_controls.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_dlz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_dlz.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_dnssec_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_dnssec_policy.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_dyndb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_dyndb.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_http.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_key.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_logging.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_managed_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_managed_keys.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_options.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_parental_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_parental_agents.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_plugin.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_primaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_primaries.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_server.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_statistics_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_statistics_channels.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_tls.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_trust_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_trust_anchors.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_trusted_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_trusted_keys.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_view.py -------------------------------------------------------------------------------- /bind9_parser/isc_clause_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clause_zone.py -------------------------------------------------------------------------------- /bind9_parser/isc_clauses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_clauses.py -------------------------------------------------------------------------------- /bind9_parser/isc_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_domain.py -------------------------------------------------------------------------------- /bind9_parser/isc_inet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_inet.py -------------------------------------------------------------------------------- /bind9_parser/isc_managed_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_managed_keys.py -------------------------------------------------------------------------------- /bind9_parser/isc_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_options.py -------------------------------------------------------------------------------- /bind9_parser/isc_optview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_optview.py -------------------------------------------------------------------------------- /bind9_parser/isc_optviewserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_optviewserver.py -------------------------------------------------------------------------------- /bind9_parser/isc_optviewzone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_optviewzone.py -------------------------------------------------------------------------------- /bind9_parser/isc_optviewzoneserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_optviewzoneserver.py -------------------------------------------------------------------------------- /bind9_parser/isc_optzone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_optzone.py -------------------------------------------------------------------------------- /bind9_parser/isc_primaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_primaries.py -------------------------------------------------------------------------------- /bind9_parser/isc_rr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_rr.py -------------------------------------------------------------------------------- /bind9_parser/isc_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_server.py -------------------------------------------------------------------------------- /bind9_parser/isc_trusted_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_trusted_keys.py -------------------------------------------------------------------------------- /bind9_parser/isc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_utils.py -------------------------------------------------------------------------------- /bind9_parser/isc_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_view.py -------------------------------------------------------------------------------- /bind9_parser/isc_viewzone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_viewzone.py -------------------------------------------------------------------------------- /bind9_parser/isc_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/isc_zone.py -------------------------------------------------------------------------------- /bind9_parser/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/bind9_parser/pyproject.toml -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/acl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/acl.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/address_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/address_list.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/comments.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/config.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/controls.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/docdef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/docdef.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/example.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/include.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/index.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/key.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/logging.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/master.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/options.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/server.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/trusted-keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/trusted-keys.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.0.html/zone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.0.html/zone.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/acl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/acl.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/address_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/address_list.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/comments.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/config.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/controls.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/docdef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/docdef.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/example.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/include.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/index.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/key.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/logging.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/master.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/options.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/server.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/trusted-keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/trusted-keys.html -------------------------------------------------------------------------------- /docs/Bv8ARM-8.4.6.html/zone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv8ARM-8.4.6.html/zone.html -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.0.0.txt -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.10.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.12.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.12.0.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.12.0a1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.12.0a1.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.13.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.13.0.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.14.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.14.0.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.15.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.15.0.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.16.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.4.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.4.0.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.5.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.5.0.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.6.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.6.0.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.7.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.7.0.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.8.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.8.0.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.9.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.9.0.pdf -------------------------------------------------------------------------------- /docs/Bv9ARM-v9.9.7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/Bv9ARM-v9.9.7.pdf -------------------------------------------------------------------------------- /docs/CIS_BIND_9.0-9.5_Benchmark_v2.0.01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/CIS_BIND_9.0-9.5_Benchmark_v2.0.01.pdf -------------------------------------------------------------------------------- /docs/DESIGN-work-in-progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/DESIGN-work-in-progress.md -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/README -------------------------------------------------------------------------------- /docs/bind-9.2.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/bind-9.2.0.tar.gz -------------------------------------------------------------------------------- /docs/bind-9.3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/bind-9.3.0.tar.gz -------------------------------------------------------------------------------- /docs/bind-doc-8.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/bind-doc-8.1.tar.gz -------------------------------------------------------------------------------- /docs/bind-doc.tar-8.4.7.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/bind-doc.tar-8.4.7.gz -------------------------------------------------------------------------------- /docs/bind-doc.tar-v8.1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/bind-doc.tar-v8.1.gz -------------------------------------------------------------------------------- /docs/bind-doc.tar-v8.3.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/bind-doc.tar-v8.3.0.gz -------------------------------------------------------------------------------- /docs/bind-doc.tar-v8.4.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/bind-doc.tar-v8.4.0.gz -------------------------------------------------------------------------------- /docs/bind10-1.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/bind10-1.0.0.tar.gz -------------------------------------------------------------------------------- /docs/bind10-1.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/bind10-1.1.0.tar.gz -------------------------------------------------------------------------------- /docs/bind10-1.2.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/bind10-1.2.0.tar.gz -------------------------------------------------------------------------------- /docs/options.9.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.0.0 -------------------------------------------------------------------------------- /docs/options.9.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.1.0 -------------------------------------------------------------------------------- /docs/options.9.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.10.0 -------------------------------------------------------------------------------- /docs/options.9.11.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.11.0 -------------------------------------------------------------------------------- /docs/options.9.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.12.0 -------------------------------------------------------------------------------- /docs/options.9.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.13.0 -------------------------------------------------------------------------------- /docs/options.9.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.14.0 -------------------------------------------------------------------------------- /docs/options.9.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.15.0 -------------------------------------------------------------------------------- /docs/options.9.16.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.16.0 -------------------------------------------------------------------------------- /docs/options.9.17.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.17.0 -------------------------------------------------------------------------------- /docs/options.9.18.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.18.0 -------------------------------------------------------------------------------- /docs/options.9.19.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.19.0 -------------------------------------------------------------------------------- /docs/options.9.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.2.0 -------------------------------------------------------------------------------- /docs/options.9.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.3.0 -------------------------------------------------------------------------------- /docs/options.9.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.4.0 -------------------------------------------------------------------------------- /docs/options.9.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.5.0 -------------------------------------------------------------------------------- /docs/options.9.5.0.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.5.0.orig -------------------------------------------------------------------------------- /docs/options.9.6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.6.0 -------------------------------------------------------------------------------- /docs/options.9.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.7.0 -------------------------------------------------------------------------------- /docs/options.9.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.8.0 -------------------------------------------------------------------------------- /docs/options.9.9.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/docs/options.9.9.0 -------------------------------------------------------------------------------- /dump-named-conf-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/dump-named-conf-json.py -------------------------------------------------------------------------------- /dump-named-conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/dump-named-conf.py -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/README -------------------------------------------------------------------------------- /examples/bugs/P000/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/bugs/P000/README.md -------------------------------------------------------------------------------- /examples/bugs/P000/p000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/bugs/P000/p000.py -------------------------------------------------------------------------------- /examples/bugs/bug-bind9_parser-001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/bugs/bug-bind9_parser-001.txt -------------------------------------------------------------------------------- /examples/bugs/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/bugs/t1.py -------------------------------------------------------------------------------- /examples/exclamation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/exclamation.py -------------------------------------------------------------------------------- /examples/flatten_namedconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/flatten_namedconf.py -------------------------------------------------------------------------------- /examples/isc_boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/isc_boolean.py -------------------------------------------------------------------------------- /examples/named-conf/basic/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/basic/named.conf -------------------------------------------------------------------------------- /examples/named-conf/debian-HOWTO/etc/bind/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/debian-HOWTO/etc/bind/named.conf -------------------------------------------------------------------------------- /examples/named-conf/debian-HOWTO/etc/bind/named.conf.default-zones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/debian-HOWTO/etc/bind/named.conf.default-zones -------------------------------------------------------------------------------- /examples/named-conf/debian-HOWTO/etc/bind/named.conf.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/debian-HOWTO/etc/bind/named.conf.local -------------------------------------------------------------------------------- /examples/named-conf/debian-HOWTO/etc/bind/named.conf.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/debian-HOWTO/etc/bind/named.conf.options -------------------------------------------------------------------------------- /examples/named-conf/debian-HOWTO/etc/bind/ns-example-com_rndc-key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/named-conf/debian-HOWTO/etc/bind/zones.rfc1918: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/bind.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/bind.keys -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/db.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/db.0 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/db.127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/db.127 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/db.255: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/db.255 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/db.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/db.empty -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/db.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/db.local -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/db.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/db.root -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/named.conf.default-zones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/named.conf.default-zones -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/named.conf.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/named.conf.local -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/named.conf.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/named.conf.options -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/rndc.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/rndc.key -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/.orig/zones.rfc1918: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/.orig/zones.rfc1918 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/KEY_LOCATIONS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/KEY_LOCATIONS.txt -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/acl-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/acl-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/bind.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/bind.keys -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/controls-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/controls-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/db.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/db.0 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/db.127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/db.127 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/db.255: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/db.255 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/db.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/db.empty -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/db.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/db.local -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/db.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/db.root -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/default-zones-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/default-zones-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/generate-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/generate-keys.sh -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/keys/ddns.md5.master-to-slave.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/keys/ddns.md5.master-to-slave.key -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/keys/ddns.sha512.master-to-slave.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/keys/ddns.sha512.master-to-slave.key -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/keys/ddns.sha512.public-master-to-public-secondary.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/keys/ddns.sha512.public-master-to-public-secondary.key -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/keys/named.conf.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/keys/named.conf.key -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/keys/rndc.sha512.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/keys/rndc.sha512.key -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/local-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/local-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/logging-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/logging-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/managed-keys-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/managed-keys-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/masters-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/masters-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/named.iscdlv.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/named.iscdlv.key -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/options-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/options-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/rndc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/rndc.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/servers-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/servers-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/statistics-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/statistics-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/trusted-keys-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/trusted-keys-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/view.chaos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/view.chaos -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/view.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/view.local -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/view.red: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/view.red -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/views-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/views-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones-named.conf -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones.rfc1918: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones.rfc1918 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.0 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.127 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.255: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.255 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.bind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.bind -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.10 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.16.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.16.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.168.192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.168.192 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.17.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.17.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.18.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.18.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.19.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.19.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.20.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.20.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.21.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.21.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.22.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.22.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.23.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.23.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.24.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.24.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.25.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.25.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.26.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.26.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.27.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.27.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.28.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.28.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.29.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.29.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.30.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.30.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.31.172: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.empty.31.172 -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.local -------------------------------------------------------------------------------- /examples/named-conf/hidden-master/public/etc/bind/zones/db.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/hidden-master/public/etc/bind/zones/db.root -------------------------------------------------------------------------------- /examples/named-conf/linuxjournal/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/linuxjournal/named.conf -------------------------------------------------------------------------------- /examples/named-conf/linuxjournal/x.key: -------------------------------------------------------------------------------- 1 | key "key" { 2 | algorithm hmac-md5; 3 | secret "iIJ32X/HQvbw93VDGElN3g=="; 4 | }; 5 | -------------------------------------------------------------------------------- /examples/named-conf/linuxquestions/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/linuxquestions/named.conf -------------------------------------------------------------------------------- /examples/named-conf/mmacleod.ca/dnsadmin.key: -------------------------------------------------------------------------------- 1 | key "dnsadmin" { 2 | algorithm hmac-sha256; 3 | secret "ojlCVDN3lVMxGIGiB31x9DbhqHxxgx84NSZw0c4CRgw="; 4 | }; 5 | -------------------------------------------------------------------------------- /examples/named-conf/mmacleod.ca/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/mmacleod.ca/named.conf -------------------------------------------------------------------------------- /examples/named-conf/named-oracle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/named-oracle.conf -------------------------------------------------------------------------------- /examples/named-conf/named-tldp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/named-tldp.conf -------------------------------------------------------------------------------- /examples/named-conf/named-zytrax.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/named-zytrax.conf -------------------------------------------------------------------------------- /examples/named-conf/redhat-9.3/etc/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/redhat-9.3/etc/named.conf -------------------------------------------------------------------------------- /examples/named-conf/redhat-9.3/etc/named.rfc1912.zones: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/named-conf/redhat-9.3/etc/named.root.hints: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/named-conf/sbarjatiya.com/etc/named.rfc1912.zones: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/named-conf/sbarjatiya.com/etc/named.root.hints: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/named-conf/sbarjatiya.com/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/sbarjatiya.com/named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/README -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/README.otherfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/README.otherfiles -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/README.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/README.setup -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/README -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/acl-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/acl-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/channels-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/channels-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/controls-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/controls-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/hz.cache.home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/hz.cache.home -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/hz.cache.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/hz.cache.lab -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/README.bind.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/README.bind.keys -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/ddns.md5.dhcp-updater.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/ddns.md5.dhcp-updater.key -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/ddns.md5.master-to-slave.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/ddns.md5.master-to-slave.key -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/ddns.sha256.dns-arca-a.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/ddns.sha256.dns-arca-a.key -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/keys-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/keys-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/red-named.conf.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/red-named.conf.keys -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/rndc.md5.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/rndc.md5.key -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/tlsa-privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/tlsa-privkey.pem -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/tlsa-pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/keys/tlsa-pubkey.pem -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/local-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/local-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/masters-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/masters-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.home -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.1.168.192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.1.168.192 -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.127 -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.4.168.192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.4.168.192 -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.5.168.192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.5.168.192 -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.6.168.192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.6.168.192 -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.7.168.192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.7.168.192 -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.lab -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/mz.localhost -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/options-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/options-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/servers-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/servers-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/statistics-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/statistics-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/sz.example.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/sz.example.com -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/trusted-keys-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/trusted-keys-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/view.cable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/view.cable -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/view.chaos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/view.chaos -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/view.green: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/view.green -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/x-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/internal/x-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/README.bind.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/README.bind.keys -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/ddns.md5.dhcp-updater.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/ddns.md5.dhcp-updater.key -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/ddns.md5.master-to-slave.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/ddns.md5.master-to-slave.key -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/ddns.sha256.dns-arca-a.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/ddns.sha256.dns-arca-a.key -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/keys-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/keys-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/red-named.conf.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/red-named.conf.keys -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/rndc.md5.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/rndc.md5.key -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/tlsa-privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/tlsa-privkey.pem -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/tlsa-pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/keys/tlsa-pubkey.pem -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/named-internal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/named-internal.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/named-public.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/named-public.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/acl-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/acl-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/channels-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/channels-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/controls-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/controls-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/README.bind.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/README.bind.keys -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/ddns.md5.dhcp-updater.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/ddns.md5.dhcp-updater.key -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/ddns.md5.master-to-slave.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/ddns.md5.master-to-slave.key -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/ddns.sha256.dns-arca-a.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/ddns.sha256.dns-arca-a.key -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/keys-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/keys-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/red-named.conf.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/red-named.conf.keys -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/rndc.md5.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/rndc.md5.key -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/tlsa-privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/tlsa-privkey.pem -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/tlsa-pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/keys/tlsa-pubkey.pem -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/local-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/local-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/masters-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/masters-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/mz.example.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/mz.example.net -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/options-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/options-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/servers-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/servers-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/statistics-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/statistics-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/trusted-keys-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/trusted-keys-named.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/view.chaos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/view.chaos -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/view.red: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/public/view.red -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/bind/rndc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/bind/rndc.conf -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/systemd/system/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/systemd/system/README -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/systemd/system/bind9-internal.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/systemd/system/bind9-internal.service -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/systemd/system/bind9-public.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/systemd/system/bind9-public.service -------------------------------------------------------------------------------- /examples/named-conf/split-horizon-2-bind9-servers/etc/systemd/system/bind9.service.d/unit-conflicts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/split-horizon-2-bind9-servers/etc/systemd/system/bind9.service.d/unit-conflicts.conf -------------------------------------------------------------------------------- /examples/named-conf/wellho/etc/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/named-conf/wellho/etc/named.conf -------------------------------------------------------------------------------- /examples/named-conf/wellho/etc/named.conf.include: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/patterns/opt-forwarders-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/patterns/opt-forwarders-named.conf -------------------------------------------------------------------------------- /examples/patterns/opt-response-policies-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/patterns/opt-response-policies-named.conf -------------------------------------------------------------------------------- /examples/patterns/options-ipv4only-contact-named.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | options { 4 | ipv4only-contact "a.b.com"; 5 | }; 6 | -------------------------------------------------------------------------------- /examples/patterns/trusted-keys-named.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | trusted-keys { 4 | }; 5 | -------------------------------------------------------------------------------- /examples/patterns/zone-multiple-slave-masters-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/patterns/zone-multiple-slave-masters-named.conf -------------------------------------------------------------------------------- /examples/patterns/zone-slave-masters-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/patterns/zone-slave-masters-named.conf -------------------------------------------------------------------------------- /examples/rough-draft/namedconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/rough-draft/namedconf.py -------------------------------------------------------------------------------- /examples/rough-draft/namedconfglobal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/rough-draft/namedconfglobal.py -------------------------------------------------------------------------------- /examples/rough-draft/requirements.txt: -------------------------------------------------------------------------------- 1 | pyparsing>=2.4.5 2 | line_profiler 3 | re 4 | typing 5 | pprint 6 | -------------------------------------------------------------------------------- /examples/try-me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/examples/try-me.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest-runner 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyparsing>=2.4.5 2 | line_profiler 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/all-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/all-test.sh -------------------------------------------------------------------------------- /tests/all-unittests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/all-unittests.sh -------------------------------------------------------------------------------- /tests/bug-reports/etc/named.rfc1912.zones: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bug-reports/etc/named.root.hints: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bug-reports/github-issue-10.named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/github-issue-10.named.conf -------------------------------------------------------------------------------- /tests/bug-reports/github-issue-12.named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/github-issue-12.named.conf -------------------------------------------------------------------------------- /tests/bug-reports/github-issue-13.named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/github-issue-13.named.conf -------------------------------------------------------------------------------- /tests/bug-reports/github-issue-34.named-variant1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/github-issue-34.named-variant1.conf -------------------------------------------------------------------------------- /tests/bug-reports/github-issue-34.named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/github-issue-34.named.conf -------------------------------------------------------------------------------- /tests/bug-reports/github-issue-35-variant1.named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/github-issue-35-variant1.named.conf -------------------------------------------------------------------------------- /tests/bug-reports/github-issue-35.named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/github-issue-35.named.conf -------------------------------------------------------------------------------- /tests/bug-reports/github-issue-4.named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/github-issue-4.named.conf -------------------------------------------------------------------------------- /tests/bug-reports/github-issue-5.named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/github-issue-5.named.conf -------------------------------------------------------------------------------- /tests/bug-reports/github-issue-8.named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/github-issue-8.named.conf -------------------------------------------------------------------------------- /tests/bug-reports/github-issue-9.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/github-issue-9.view -------------------------------------------------------------------------------- /tests/bug-reports/ml-bind-users.named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/ml-bind-users.named.conf -------------------------------------------------------------------------------- /tests/bug-reports/post-parser.named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/post-parser.named.conf -------------------------------------------------------------------------------- /tests/bug-reports/x.named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/bug-reports/x.named.conf -------------------------------------------------------------------------------- /tests/github-issues: -------------------------------------------------------------------------------- 1 | bug-reports/ -------------------------------------------------------------------------------- /tests/runner_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/runner_tests.py -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/README -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/README.otherfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/README.otherfiles -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/README.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/README.setup -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/README -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/acl-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/acl-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/channels-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/channels-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/controls-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/controls-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/hz.cache.home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/hz.cache.home -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/hz.cache.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/hz.cache.lab -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/README.bind.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/README.bind.keys -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/ddns.md5.dhcp-updater.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/ddns.md5.dhcp-updater.key -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/ddns.md5.master-to-slave.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/ddns.md5.master-to-slave.key -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/ddns.sha256.dns-arca-a.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/ddns.sha256.dns-arca-a.key -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/keys-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/keys-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/red-named.conf.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/red-named.conf.keys -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/rndc.md5.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/rndc.md5.key -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/tlsa-privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/tlsa-privkey.pem -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/tlsa-pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/keys/tlsa-pubkey.pem -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/local-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/local-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/masters-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/masters-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.home -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.1.168.192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.1.168.192 -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.127 -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.4.168.192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.4.168.192 -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.5.168.192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.5.168.192 -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.6.168.192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.6.168.192 -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.7.168.192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.ip4.7.168.192 -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.lab -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/mz.localhost -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/options-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/options-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/servers-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/servers-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/statistics-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/statistics-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/sz.example.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/sz.example.com -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/trusted-keys-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/trusted-keys-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/view.cable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/view.cable -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/view.chaos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/view.chaos -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/internal/view.green: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/internal/view.green -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/keys/README.bind.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/keys/README.bind.keys -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/keys/ddns.md5.dhcp-updater.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/keys/ddns.md5.dhcp-updater.key -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/keys/ddns.md5.master-to-slave.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/keys/ddns.md5.master-to-slave.key -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/keys/ddns.sha256.dns-arca-a.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/keys/ddns.sha256.dns-arca-a.key -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/keys/keys-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/keys/keys-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/keys/red-named.conf.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/keys/red-named.conf.keys -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/keys/rndc.md5.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/keys/rndc.md5.key -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/keys/tlsa-privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/keys/tlsa-privkey.pem -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/keys/tlsa-pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/keys/tlsa-pubkey.pem -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/named-internal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/named-internal.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/named-public.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/named-public.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/acl-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/acl-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/channels-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/channels-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/controls-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/controls-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/keys/README.bind.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/keys/README.bind.keys -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/keys/ddns.md5.dhcp-updater.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/keys/ddns.md5.dhcp-updater.key -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/keys/ddns.md5.master-to-slave.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/keys/ddns.md5.master-to-slave.key -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/keys/ddns.sha256.dns-arca-a.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/keys/ddns.sha256.dns-arca-a.key -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/keys/keys-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/keys/keys-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/keys/red-named.conf.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/keys/red-named.conf.keys -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/keys/rndc.md5.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/keys/rndc.md5.key -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/keys/tlsa-privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/keys/tlsa-privkey.pem -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/keys/tlsa-pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/keys/tlsa-pubkey.pem -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/local-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/local-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/masters-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/masters-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/mz.example.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/mz.example.net -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/options-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/options-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/servers-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/servers-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/statistics-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/statistics-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/trusted-keys-named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/trusted-keys-named.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/view.chaos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/view.chaos -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/public/view.red: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/public/view.red -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/bind/rndc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/bind/rndc.conf -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/systemd/system/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/systemd/system/README -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/systemd/system/bind9-internal.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/systemd/system/bind9-internal.service -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/systemd/system/bind9-public.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/systemd/system/bind9-public.service -------------------------------------------------------------------------------- /tests/split-horizon-2-bind9-servers/etc/systemd/system/bind9.service.d/unit-conflicts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/split-horizon-2-bind9-servers/etc/systemd/system/bind9.service.d/unit-conflicts.conf -------------------------------------------------------------------------------- /tests/test_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_acl.py -------------------------------------------------------------------------------- /tests/test_aml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_aml.py -------------------------------------------------------------------------------- /tests/test_clause_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_acl.py -------------------------------------------------------------------------------- /tests/test_clause_controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_controls.py -------------------------------------------------------------------------------- /tests/test_clause_dlz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_dlz.py -------------------------------------------------------------------------------- /tests/test_clause_dnssec_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_dnssec_policy.py -------------------------------------------------------------------------------- /tests/test_clause_dyndb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_dyndb.py -------------------------------------------------------------------------------- /tests/test_clause_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_http.py -------------------------------------------------------------------------------- /tests/test_clause_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_key.py -------------------------------------------------------------------------------- /tests/test_clause_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_logging.py -------------------------------------------------------------------------------- /tests/test_clause_managed_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_managed_keys.py -------------------------------------------------------------------------------- /tests/test_clause_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_options.py -------------------------------------------------------------------------------- /tests/test_clause_parental_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_parental_agents.py -------------------------------------------------------------------------------- /tests/test_clause_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_plugin.py -------------------------------------------------------------------------------- /tests/test_clause_primaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_primaries.py -------------------------------------------------------------------------------- /tests/test_clause_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_server.py -------------------------------------------------------------------------------- /tests/test_clause_statistics_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_statistics_channels.py -------------------------------------------------------------------------------- /tests/test_clause_tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_tls.py -------------------------------------------------------------------------------- /tests/test_clause_trust_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_trust_anchors.py -------------------------------------------------------------------------------- /tests/test_clause_trusted_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_trusted_keys.py -------------------------------------------------------------------------------- /tests/test_clause_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_view.py -------------------------------------------------------------------------------- /tests/test_clause_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clause_zone.py -------------------------------------------------------------------------------- /tests/test_clauses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_clauses.py -------------------------------------------------------------------------------- /tests/test_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_domain.py -------------------------------------------------------------------------------- /tests/test_inet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_inet.py -------------------------------------------------------------------------------- /tests/test_managed_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_managed_keys.py -------------------------------------------------------------------------------- /tests/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_options.py -------------------------------------------------------------------------------- /tests/test_optview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_optview.py -------------------------------------------------------------------------------- /tests/test_optviewserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_optviewserver.py -------------------------------------------------------------------------------- /tests/test_optviewzone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_optviewzone.py -------------------------------------------------------------------------------- /tests/test_optviewzoneserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_optviewzoneserver.py -------------------------------------------------------------------------------- /tests/test_optzone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_optzone.py -------------------------------------------------------------------------------- /tests/test_primaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_primaries.py -------------------------------------------------------------------------------- /tests/test_rr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_rr.py -------------------------------------------------------------------------------- /tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_server.py -------------------------------------------------------------------------------- /tests/test_trusted_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_trusted_keys.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_view.py -------------------------------------------------------------------------------- /tests/test_viewzone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_viewzone.py -------------------------------------------------------------------------------- /tests/test_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tests/test_zone.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/bind9_parser/HEAD/tox.ini --------------------------------------------------------------------------------