dns v1.0.1
DNS
Non-blocking extendable DNS client for crystal lang.
With built in support for UDP, TLS, HTTPS and mDNS resolvers.
Installation
-
Add the dependency to your
shard.yml
:dependencies: dns: github: spider-gazelle/dns
-
Run
shards install
Usage
A simple query
require "dns"
responses = DNS.query(
"www.google.com",
{
DNS::RecordCode::A,
DNS::RecordCode::AAAA,
}
)
ips = responses.map(&.ip_address)
How to configure custom resolvers (secure from prying eyes)
require "dns"
require "dns/resolver/https"
DNS.default_resolver = DNS::Resolver::HTTPS.new(["https://1.1.1.1/dns-query"])
# or just for some routes
DNS.resolvers[/.+\.com\.au$/i] = DNS::Resolver::HTTPS.new(["https://1.1.1.1/dns-query"])
# there is a built in resolver to use mDNS for *.local routes
# if you'd prefer to use the system resolver for A and AAAA records
DNS.default_resolver = DNS::Resolver::System.new(
# uses the fallback resolver for other DNS records
fallback: Resolver::UDP.new
)
# for the TLS resolver you need to specify a domain name for the returned TLS certificate
DNS.default_resolver = DNS::Resolver::TLS.new({
"8.8.8.8" => "dns.google",
})
# or maybe you don't want to use the system defined DNS servers
DNS.default_resolver = DNS::Resolver::UDP.new(["1.1.1.1", "8.8.8.8"])
# it's also possible to create your own resolvers implementing the abstract method in `DNS::Resolver`
By default, the library will attempt to obtain the DNS servers configured on your host. That is using:
/etc/resolv.conf
on linux / nix* systems- Win32 API calls on Windows
- SystemConfiguration framework on MacOS
NOTE:: currently it does not check if DNS over HTTPS is configured on either Mac or Windows (future work)
If DNS discovery is unsuccessful it falls back to using ["1.1.1.1", "8.8.8.8"]
.
# to customise the fallback servers
DNS::Servers.fallback = ["192.168.0.1"]
Other things to note:
- IPv6 is supported and handled transparently
- a DNS cache is maintained and used based on TTL of responses
- DNS servers may return results of expected future queries, these results are cached
- force all DNS lookups to occur via this library:
require "dns/ext/addrinfo"
Contributing
- Fork it (https://github.com/spider-gazelle/dns/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Stephen von Takach - creator and maintainer
Repository
dns
Owner
Statistic
- 9
- 1
- 0
- 2
- 0
- 2 days ago
- October 22, 2024
License
MIT License
Links
Synced at
Thu, 03 Apr 2025 11:13:51 GMT
Languages