Use Unbound for Local DNS Resolution on Debian 6 (Squeeze)
Updated by Linode Written by Linode
DeprecatedThis guide has been deprecated and is no longer being maintained.
In the default configuration, Linode systems are configured to query DNS resolvers provided by Linode. If you don’t want to use a third party DNS service on your system, you may consider running an independent DNS resolving and caching service such as Unbound DNS resolver. Unbound is easy to install and configure, which makes it an ideal resolver for simple deployments.
If you are unfamiliar with DNS, you may want to consider our introduction to the DNS system. If you simply need to configure DNS services for your domain, you may want to consider using Linode’s DNS manager. If you only need to modify the behavior of DNS for a small group of systems, consider using /etc/hosts to provide this functionality.
Set the Hostname
Before you begin installing and configuring the components described in this guide, please make sure you’ve followed our instructions for setting your hostname. Issue the following commands to make sure it is set properly:
hostname
hostname -f
Install Unbound
Make sure your package repositories and installed programs are up to date by issuing the following commands:
apt-get update
apt-get upgrade --show-upgraded
To install the packages for Unbound, issue the following command:
apt-get install unbound
This will install and start the Unbound server on your system. Note that the Unbound configuration file will be located at /etc/unbound/unbound.conf
.
Configure Unbound
Configure Unbound Interfaces
In the default configuration, Unbound will only listen for requests on the local interface. If you want Unbound to attach to additional interfaces, these interfaces must be configured manually. Possible interfaces include the public interface or the private networking interface. Specify those IP addresses after the server:
directive in the following format:
- /etc/unbound/unbound.conf
-
1 2
server: : interface: 19.28.37.56 interface: 192.168.3.105
Modify these interface:
directives to conform with the actual addresses assigned to your Linode. In this example, these directives would configure Unbound to listen for requests on the publicly accessible address 19.28.37.56
, and on the internal or private network address of 192.168.3.105
.
Control Access to your Unbound Instance
By default, Unbound will only listen for and respond to requests for DNS queries on the localhost interface (i.e. from 127.0.0.1). Unbound must be configured to listen for requests on a given interface, as above, and be configured to allow requests from a given IP address before it can successfully provide DNS services. Insert lines modeled on the following example into the unbound.conf
file, following the server:
directive.
- /etc/unbound/unbound.conf
-
1 2 3 4
server: : access-control: 192.168.0.0/16 allow access-control: 11.22.33.44/32 allow access-control: 12.34.56.0/24 deny access-control: 34.0.0.0/8 refuse
Unbound uses CIDR notation to control access to the DNS resolver. This allows you to permit or refuse DNS traffic to large or small groups of IP addresses in a simple and clear syntax. In the above example, you can see a number of different access control approaches.
In the first example, we allow all requests from the 192.168.0.0/16
net block, or all IP addresses beginning with 192.168.
, which corresponds to the local “private” network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same data center to resolve domain addresses using your server.
In the second example, we allow all requests from the IP address 11.22.33.44
. To specify specific IP addresses in CIDR notation, simply append /32
to the desired IP address. The remaining examples force Unbound to block access from two netblocks, or all IP addresses that begin with 12.34.56.
and the entire 34.
prefix. Specifying deny
causes Unbound to drop all traffic from this address or addresses. By contrast, the refuse
option returns an error message in response to requests from blocked sources.
To summarize, there are three possible access control behaviors:
- Unbound can
allow
traffic. This means that requests will be filled when they originate from IP addresses belonging to specified netblocks. - Unbound can
deny
traffic. In this case, Unbound will simply drop traffic and offer no error message. - Unbound can
refuse
traffic. This causes Unbound to send an error message in response to requests from disallowed sources.
When you have configured your Unbound server to acceptable parameters, issue the following command to restart Unbound:
/etc/init.d/unbound restart
Unbound is now active and functional.
Configure your System to Resolve DNS Using your Unbound Instance
Before you can begin using your Unbound instance to resolve DNS queries, you need to configure your /etc/resolv.conf
file to point to the new resolver. You can remove all existing lines from this file or comment them by prepending hash marks (e.g. #
) to every line.
Important: By default, Linodes use DHCP to assign networking settings, including the public IP address and DNS resolvers. For any systems that you intend to use a custom resolver with, you must follow our instructions for static networking. This will prevent your /etc/resolv.conf
file getting overwritten with the default resolvers after a system reboot.
If you’re accessing your Unbound instance over the local interface, make sure your /etc/resolv.conf
resembles the following:
- /etc/resolv.conf
-
1
nameserver 127.0.0.1
If you’re accessing your Unbound instance from another machine, modify the address to reflect the address on which Unbound is listening for requests. Ensure that Unbound’s access control rules permit access from all clients that will be making requests to the server. If your Unbound instance is accessible on the public network, you can configure any machine on the Internet to resolve DNS using your Linode. While most Linux-based systems use the /etc/resolv.conf
method for configuring DNS resolution, consult your operating system’s networking configuration interface to reconfigure your DNS settings.
More Information
You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials.
- Unbound Home Page
- Wikipedia article on Classless Interdomain Routing
- DNS Fundamentals
- Linode Manager for DNS
Join our Community
Find answers, ask questions, and help others.
This guide is published under a CC BY-ND 4.0 license.