Resolver for Home Networks — Unbound 1.19.3 documentation (2024)

To start off, let’s ask the all-important question “Why would you want Unboundas a resolver for your home network?”

Firstly, Unbound supports DNSSEC which, through an authentication chain,verifies that the DNS query responses you receive are unaltered, as opposed toquery responses which are not DNSSEC-signed and could be changed by anyone whohas access to the query. Secondly, by using your own resolver you stop sharingyour DNS traffic with third parties and increase your DNS privacy. While youstill send out (parts of) your queries unencrypted, you could configure Unboundto take it a step further, which we’ll talk about in an upcoming guide. Lastly,when you run your own resolver your DNS cache will be local to your network.Even though the first time you resolve a domain name may be slightly slower thanusing your ISP’s resolver, all subsequent queries for the name will likely bemuch faster.

In this tutorial we’ll look at setting up Unbound as a DNS resolver; First foryour own machine, and then for your entire network.

Setting up Unbound

Unbound is a powerful validating, recursive, caching DNS resolver. It’s used bysome of the biggest tech companies in the world as well as small-office /home-office users, who use it together with ad blockers and firewalls, orself-hosted resolvers. Setting it up for your home network can be quite simpleas we’ll showcase below.

Setting up a caching DNS server for your entire home network requires arecursive DNS resolver, and a dedicated machine on which the resolver runs; this(small) system is always on and accessible to the entire network. It can be assmall as a Raspberry Pi or any other available Linux/Unix machine that is alwaysonline and has Internet connectivity via your router.

Because of the variety of machines that Unbound can run on we cannot create acomprehensive tutorial for all possible options. For this tutorial we will useUbuntu 22.04 LTS as a stepping stone you can adapt and apply toother systems.

While you could download the code from GitHub and build it yourself, getting acopy can be as simple as running:

sudo apt updatesudo apt install unbound -y

This gives you a complete and running version of Unbound which behaves as acaching recursive DNS resolver out of the box for the system on which youinstall it. You can check which version of Unbound you have installed withunbound -V. The version installed will vary depending on the operatingsystem. If the version is installed is quite old (at the time of writing itisn’t) or you’d simply like to run the latest and greatest version you candownload the latest release tarball from our website and build it yourself.

Do note that by default Unbound will be queriable only from the local host,i.e. the system on which you installed Unbound.We will change that later.

Testing the resolver locally

To verify that the server works correctly, it’s a good idea to test it beforecommitting the entire network to it. Luckily we can test this on the machinethat you installed Unbound on (locally) and from any other machine (remotely)that will be using the resolver after we expose Unbound to the network.

The command for testing locally on the Unbound machine is:

dig example.com @127.0.0.1

Here we tell the dig tool to look up the IP address for example.com,and to ask for this information from the resolver running at the IP address127.0.0.1, which is where our Unbound machine is running by default. We canverify that Unbound has indeed answered our query instead of the defaultresolver that is present on Ubuntu by default. In the output of everydig command there is an ANSWER SECTION which gives the responseto the query. In the footer section of the output, the server which has answeredthe query under the SERVER entry. The entry will look like:

;; SERVER: 127.0.0.1#53(127.0.0.1)

In the next section we will be disabling the default Ubuntu resolver. To verifythat we do it correctly it is useful to know the address of the default resolveras a baseline. For this baseline we also use a dig query, but thistime without specifying an IP address (which causes dig to use the machine’sdefault DNS resolver).

While the response should be the same, the SERVER entry in the responseshould look like:

;; SERVER: 127.0.0.53#53(127.0.0.53)

Note that the final IPv4 digit is 53 and not 1, as with our Unbound instance.

Setting up for a single machine

Now that we have tested our Unbound resolver, we can tell our machine to use itby default. The resolver your machine uses by default is defined in/etc/systemd/resolved.conf in the DNS entry (It uses 127.0.0.53). While just changing this file will work as long as the machine doesn’treboot, we need to make sure that this change is persistent. To do that, we needto change the DNS entry to be equal to 127.0.0.1 so the machine usesUnbound as default. To make the change persistent, we also need to set theDNSStubListener to no so that is not changed by our router (such as witha “recommended resolver” mentioned below). We also want to enable the DNSSECoption so that we can verify the integrity the responses we get to our DNSqueries. With your favourite text editor (e.g. nano) we can modifythe file:

nano /etc/systemd/resolved.conf

Here, under the [Resolve] section we add (or rather, enable by removing the“#”) the options:

[Resolve]DNS=127.0.0.1#FallbackDNS=#Domains=DNSSEC=yes#DNSOverTLS=no#MulticastDNS=no#LLMNR=no#Cache=no-negativeDNSStubListener=no#DNSStubListenerExtra=

To actually have the system start using Unbound, we then need to create a symlink to overwrite /etc/resolv.conf to the one we modified.

ln -fs /run/systemd/resolve/resolv.conf /etc/resolv.conf

With this file modified, we can restart using this configuration with:

systemctl restart systemd-resolved

If successful, the operating system should use our Unbound instance as default.A quick test a dig without specifying the address of the Unboundserver should give the same result as specifying it did above (with@127.0.0.1).

dig example.com

Note that the “SERVER” section in the output from dig should alsocontain the local IP address of our server.

;; SERVER: 127.0.0.1#53(127.0.0.1)

Setting up for the rest of the network

While we currently have a working instance of Unbound, we need it to bereachable from within our entire network. With that comes the headache ofdealing with (local) IP addresses. It’s likely that your home router distributedlocal IP addresses to your devices. If this is the case (i.e. you didn’t changeit by hand), they should be RFC 1918 ranges:

10.0.0.0 - 10.255.255.255 (10/8)172.16.0.0 - 172.31.255.255 (172.16/12)192.168.0.0 - 192.168.255.255 (192.168/16)

To find the IP address of the machine that is running Unbound, we use:

hostname --all-ip-addresses

If you just have one IP address as output from the hostname commandthat will be the correct one. If you have multiple IP addresses, the easiest wayto determine which IP address to use, is to find out which connection goes toyour home router. Keep in mind that using the wrong IP address here can be asource of connectivity errors further on. For the purpose of this tutorial weassume that our home router has the IP address 192.168.0.1, as this istypical for home routers, and our resolver machine (the machine that is runningour Unbound instance) has IP address 192.168.0.2, which we will get into inthe next section.

As a prerequisite for the next step, we need to configure our Unbound instanceto be reachable from devices other than only the machine on which the Unbound isrunning.Unbound is a highly capable resolver, and as such has many options which can beset; the full example configuration file is almost 1200 lines long, but we’llneed but a fraction of these settings.(If you are interested, all configuration options are documented in theextensive manual page of unbound.conf(5)).

The default configuration file is found at:

/etc/unbound/unbound.conf

If you open this for the first time it looks very empty. It is still usable as aresolver for one machine, as this is how the Unbound defaults are configured.It’s not, however, enough for our purposes, so we will add the minimalconfiguration options needed.

The options that we add to the current configuration file to make it a “minimalusable configuration” are as follows.Note that the IPv6 options are commented out, but we recommend to uncommentthem if your router and network supports it.

server: # location of the trust anchor file that enables DNSSEC auto-trust-anchor-file: "/var/lib/unbound/root.key" # send minimal amount of information to upstream servers to enhance privacy qname-minimisation: yes # the interface that is used to connect to the network (this will listen to all interfaces) interface: 0.0.0.0 # interface: ::0 # addresses from the IP range that are allowed to connect to the resolver access-control: 192.168.0.0/16 allow # access-control: 2001:DB8/64 allowremote-control: # allows controling unbound using "unbound-control" control-enable: yes

The interface is currently configured to listen to any address on the machine,and the access-control only allows queries from the 192.168.0.0/16 IPsubnetrange. Note that the IP address we chose above (192.168.0.1 and192.168.0.2) fall within the 192.168.0.0/16 range.

To prepare our configuration we are going to modify the existing configuration in/etc/unbound/unbound.conf. If you open the file for the first time, yousee that there is already an “include” in there. The “include” enables us to doDNSSEC, which allowsUnbound to verify the source of the answers that it receives, as well as QNAMEminimisation. For convenience these configuration options have already beenadded in the minimal configuration.The configuration also includes the remote-control:section in the configuration to enable controlling Unbound using theunbound-control(8) command, which is useful if you want tomodify the configuration on the fly later on.

Using the text editor again, we can then add the minimal configuration shownabove, making any changes to the access control where needed.When we’ve modified the configuration we check it for mistakes with theunbound-checkconf(8) command:

unbound-checkconf unbound.conf

If this command reports no errors, we need to stop the currently running Unboundinstance and restart it with our new configuration. You can stop Unbound with:

sudo pkill -f unbound

And you can restart Unbound with:

unbound-control start

From this point on, we can stop,start, andreload Unbound withunbound-control if you want to make changes to the configuration.

Testing the resolver from a remote machine

So now we have a DNS resolver which should be reachable from within the network.To be able to verify that our resolver is working correctly, we want to test itfrom another machine in the network. As mentioned above, this tutorial uses theaddress 192.168.0.2 (not 127.0.0.1 as we saw earlier) as an example forthe machine running Unbound. Armed with the IP address we can send a query toour DNS resolver from another machine which is within our home network. To dothis we use the same dig command, only we change the IP address where the queryis asked.

dig example.com @192.168.0.2

This should give the same result as above. The SERVER entry in the footerreflects from which server the response was received.

Where it all comes together

We should now have a functioning DNS resolver that is accessible to all machinesin our network (make sure you do before you continue).

The next step then is a little tricky as there are many options and variationspossible. We have a choice of which machines in our network will be using ourconfigured DNS resolver. This can range from a single machine to all themachines that are connected. Since this tutorial cannot (and does not try to) becomprehensive for the range of choices, we will look at some of the basicexamples which you can implement and expand on.

Most machines when they first connect to a network get a “recommended resolver”from your router using DHCP. Tochange this, we need to log into the router. Earlier in this tutorial we assumethe home router was using 192.168.0.1, though in reality this can differ.If this does differ, the unbound configuration needs to be changed as well.

To find the IP address of our home router, which is likely be under thedefault gateway entry from:

ip route

When you’ve found the IP address of your home router, you can copy the addressto a web browser, which should give you access to the router configurationportal. If you can’t find the portal using this method, consult the manual orthe manufacturer’s website. When you have access, you should change the DHCPconfiguration to advertise the IP address of the machine running Unbound as thedefault gateway. In the case of our example, that would be 192.168.0.2.

Another possibility is a machine that does not use a resolver that is“recommended” by your router. This machine can be running its own resolver or beconnected to a different one altogether. If you want these machines to use theUnbound resolver you set up, you need to change the configuration of themachine.

Resolver for Home Networks — Unbound 1.19.3 documentation (2024)
Top Articles
Latest Posts
Article information

Author: Lidia Grady

Last Updated:

Views: 5886

Rating: 4.4 / 5 (65 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Lidia Grady

Birthday: 1992-01-22

Address: Suite 493 356 Dale Fall, New Wanda, RI 52485

Phone: +29914464387516

Job: Customer Engineer

Hobby: Cryptography, Writing, Dowsing, Stand-up comedy, Calligraphy, Web surfing, Ghost hunting

Introduction: My name is Lidia Grady, I am a thankful, fine, glamorous, lucky, lively, pleasant, shiny person who loves writing and wants to share my knowledge and understanding with you.