Setting up a local DNS server with Unbound
Cache Configuration
For most home users, the best reason for using a local DNS server is caching DNS entries and speeding up web browsing. Listing 8 shows an example configuration for a simple, yet powerful, DNS cache.
Listing 8
cache_options.conf
# /etc/unbound/unbound.conf.d/cache_options.conf prefetch: yes # Fetch things before they expire from cache. prefetch-key: yes # Fetch DNSSEC keys early in the validation process. cache-min-ttl: 1200 # Seconds it takes for items in cache to die at minimum.
Domain names have an official time to live assigned by the manager of that domain. This time to live is the time that recursive DNS servers are supposed to keep the DNS entries in their caches before deleting them. Imagine that your Unbound server resolved richard-falken.com
, which at the time of this writing has a TTL of 86400 seconds. It would remember the DNS entry for richard-falken.com
for 24 hours.
Some domains have very short TTLs. The cache-min-ttl
directive in the example defines the minimum time a cached DNS entry will be allowed to live in the cache. If Unbound comes across a domain with a TTL shorter than 1200 seconds, the official TTL will be ignored, and 1200 seconds will be used instead. Beware that DNS entries that are conserved in the cache for too long may become stalled and outdated, which could be counterproductive and lead to problems. Use this directive wisely.
prefetch-key
instructs Unbound to fetch DNSSEC keys earlier than usual in the DNSSEC validation process. It saves time at the expense of CPU load.
prefetch
instructs the server to try to resolve cached entries that are about to expire from the cache in order to keep the cache fresh. This option might increase bandwidth consumption by about 10 percent, but response times will be better.
Privacy
Listing 9 has some privacy options. The most important is qname-minimisation
. Enabling this option makes the queries sent by Unbound to other DNS servers more compact and less prone to leak private information.
Listing 9
privacy_options.conf
# /etc/unbound/unbound.conf.d/privacy_options.conf hide-identity: yes # If enabled id.server and hostname.bind queries are refused. hide-version: yes # If enabled version.server and version.bind queries are refused. qname-minimisation: yes # Send minimum amount of information to upstream servers to enhance privacy.
hide-identity
and hide-version
are less relevant in LAN scenarios, since they prevent the DNS server from replying to internal special queries that attempt to obtain information, such as the hostname of the server or the software version.
Query Times
You may want to check the query times for a server provided by your ISP, another open DNS server on the Internet, or any server you configure on your own LAN.
Proper DNS benchmarking is difficult. A quick and dirty way to check the connection latency for a DNS server is using icmp echo
requests with the ping utility:
$ ping -c 4 $address_of_server
The time stat for each reply indicates the time it took to get a "pong" response from the server. The bigger the time, the longer it takes for the server to reply to you when you ask it to.
The dig utility (Figure 3) performs name resolution, and it is very useful for retrieving DNS records and checking query times.
$ dig @$address_of_dns_server example.org
If you are serious about benchmarking a DNS server, you will need heavier tools for the job. Google's namebench [11] is a popular option.
« Previous 1 2 3 4 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.