mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-24 18:55:55 +03:00
[GH-ISSUE #1098] Add support for DNS DNAME records. #603
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#603
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 @DevQps on GitHub (May 8, 2020).
Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/1098
Description
Currently the DNS DNAME record type is not implemented. RFC6672 describes this DNS record. It has the DNS record type of 39.
@bluejekyll commented on GitHub (May 8, 2020):
Is this for client or server code?
The last time I looked at supporting DNAME in the server I was concerned about the complexity, but since then a few things have changed. One is that we no do interior lookups for names in the server to pickup optional records, and to support ANAME we needed more dynamic lookup support there. So this might be easier now.
If it’s just to support the record type for the client, that should be fairly simple. For the resolver, I’m not sure if there’s any processing that might be required there (like CNAME).
@DevQps commented on GitHub (May 15, 2020):
For some reason the last comment that I wrote here did not end up here. Sorry for the late response. I initially meant the client code! So basically that we enable users to do a query for DNAME, or at least recognize DNAME attributes. Since it is basically the resolver that needs to act on the DNAME attributes I don't think it would add too much complexity to the server as well? Since it just needs to return the DNAME? Or am I wrong about this?
@bluejekyll commented on GitHub (Jun 27, 2020):
I didn't properly follow up on this.
indeed, DNAME in just the client should mostly be a matter of just adding the record types. That's usually pretty straight forward.