123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Setup Pi-Hole as a Recursive DNS Server with Unbound</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Browser Based,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Ad Blocker,Ad Blocking,DNS,Linux,Pi-Hole,Pi Hole,Network Wide Ad Blocking,Web Based,Web Based Tools,Unbound,Recursive DNS,Recursive DNS Server,Unbound DNS Server,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Setup Pi-Hole as a Recursive DNS Server with Unbound">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="11/13/2022 07:53:18 PM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Setup Pi-Hole as a Recursive DNS Server with Unbound</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Installing and Configuring Unbound</h2>
- <ol>
- <li>Run the following commands in a terminal window:
- <div class="codeBlock"># install unbound<br />
- sudo apt install unbound<br />
- # update root hints file<br />
- wget https://www.internic.net/domain/named.root -qO- | sudo tee /var/lib/unbound/root.hints<br />
- # edit unbound configuration<br />
- sudo nano /etc/unbound/unbound.conf.d/pi-hole.conf</div>
- </li>
- <li>Paste the following configuration into pi-hole.conf
- <p>server:<br />
- # If no logfile is specified, syslog is used<br />
- # logfile: "/var/log/unbound/unbound.log"<br />
- verbosity: 0</p>
- <p> interface: 127.0.0.1<br />
- port: 5335<br />
- do-ip4: yes<br />
- do-udp: yes<br />
- do-tcp: yes</p>
- <p> # May be set to yes if you have IPv6 connectivity<br />
- do-ip6: no</p>
- <p> # You want to leave this to no unless you have *native* IPv6. With 6to4 and<br />
- # Terredo tunnels your web browser should favor IPv4 for the same reasons<br />
- prefer-ip6: no</p>
- <p> # Use this only when you downloaded the list of primary root servers!<br />
- # If you use the default dns-root-data package, unbound will find it automatically<br />
- #root-hints: "/var/lib/unbound/root.hints"</p>
- <p> # Trust glue only if it is within the server's authority<br />
- harden-glue: yes</p>
- <p> # Require DNSSEC data for trust-anchored zones, if such data is absent, the zone becomes BOGUS<br />
- harden-dnssec-stripped: yes</p>
- <p> # Don't use Capitalization randomization as it known to cause DNSSEC issues sometimes<br />
- # see https://discourse.pi-hole.net/t/unbound-stubby-or-dnscrypt-proxy/9378 for further details<br />
- use-caps-for-id: no</p>
- <p> # Reduce EDNS reassembly buffer size.<br />
- # Suggested by the unbound man page to reduce fragmentation reassembly problems<br />
- edns-buffer-size: 1472</p>
- <p> # Perform prefetching of close to expired message cache entries<br />
- # This only applies to domains that have been frequently queried<br />
- prefetch: yes</p>
- <p> # One thread should be sufficient, can be increased on beefy machines. In reality for most users running on small networks or on a single machine, it should be unnecessary to seek performance enhancement by increasing num-threads above 1.<br />
- num-threads: 1</p>
- <p> # Ensure kernel buffer is large enough to not lose messages in traffic spikes<br />
- so-rcvbuf: 1m</p>
- <p> # Ensure privacy of local IP ranges<br />
- private-address: 192.168.0.0/16<br />
- private-address: 169.254.0.0/16<br />
- private-address: 172.16.0.0/12<br />
- private-address: 10.0.0.0/8<br />
- private-address: fd00::/8<br />
- private-address: fe80::/10</p>
- </li>
- <li>Press CTRL+O, Enter, CTRL+X to write the changes to pi-hole.conf</li>
- <li>Continue with the following commands in terminal
- <div class="codeBlock"># restart the unbound service<br />
- sudo service unbound restart<br />
- # test a DNS lookup via unbound<br />
- dig github.io @127.0.0.1 -p 5335</div>
- </li>
- <li>Back in the web browser, navigate back to the Pi-Hole web interface</li>
- <li>Log in if you are not already</li>
- <li>Select Settings > DNS</li>
- <li>Uncheck any of the previously selected upstream DNS servers</li>
- <li>Check the box next to Custom 1 (IPv4)</li>
- <li>Enter 127.0.0.1#5335 as the address</li>
- <li>Scroll down and click the Save button</li>
- </ol>
- <h2>Testing the Changes</h2>
- <ol>
- <li>Open a new tab in the web browser and navigate to https://yahoo.com</li>
- <li>Go back into Pi-Hole and select Query Log from the left navigation</li>
- <li>Filter the results on www.yahoo.com</li>
- <li>You should see entries showing the DNS requests forwarding to localhost#5335</li>
- </ol> </div>
- </div>
- </body>
- </html>
-
|