mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 03:05:51 +03:00
[GH-ISSUE #2358] Accept RRSIG records in zone file #973
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#973
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @git001 on GitHub (Aug 14, 2024).
Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/2358
Describe the bug
I try to run my own resolver with the available https://www.internic.net/domain/root.zone file.
When I now run the following command.
with this config file
Responses the server with this message and do not start.
The message is created in this file.
github.com/hickory-dns/hickory-dns@1f477b70b1/crates/proto/src/serialize/txt/parse_rdata.rs (L114-L115)From my understanding is it perfectly valid to have a
RRSIGentry in the zone file why I assume that's a bug or just not yet handled.To Reproduce
Steps to reproduce the behavior:
Create config
/datadisk/hickory-dns-root/etc/example.tomlRun the server
Expected behavior
I would expect that the downloaded https://www.internic.net/domain/root.zone is loaded into hickory-dns and the servers are used to resolve the names
System:
Version:
Crate: Hickory DNS named server 0.25.0-alpha.2
Version: 0.25.0-alpha.2
Additional context
Add any other context about the problem here.
@bluejekyll commented on GitHub (Mar 2, 2025):
When I designed my goal was to make signing simpler, which is why Hickory signs all records and doesn't host RRSIG. We should definitely revisit this and get it supported.