NLnetLabs / ldns

LDNS is a DNS library that facilitates DNS tool programming
https://nlnetlabs.nl/ldns
BSD 3-Clause "New" or "Revised" License
280 stars 95 forks source link

ALIAS/ANAME support #239

Open drmuey opened 1 month ago

drmuey commented 1 month ago

We understand ALIAS/ANAME are not standard RFC record types, however they are widely used and supported (e.g. powerdns).

Is there a way to allow ldns to understand them? e.g. building with --enable-rrtype-alias-aname would be great, that way its opt in and folks not using it won’t have it.

They are fairly simple:

example.com. 14400 IN ALIAS fqdn.example.org example.com. 14400 IN ANAME fqdn.example.org

drmuey commented 1 month ago

i.e. --enable-rrtype-alias-aname akin to #177’s --enable-rrtype-svcb-https for SVCB and HTTPS record support.