Unbound: Difference between revisions

Initial Commit: added example configuration
 
Klinger (talk | contribs)
m Moved link from references to top
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[https://www.nlnetlabs.nl/projects/unbound/about/ Unbound] is a DNS server. Quoting the official project page:
Unbound is a validating, recursive, caching DNS resolver. It is designed to be fast and lean and incorporates modern features based on open standards.
== Example configuration ==
== Example configuration ==
<syntaxhighlight lang="nixos">
<syntaxhighlight lang="nixos">
Line 5: Line 9:
     settings = {
     settings = {
       server = {
       server = {
         # When only using Unbound as DNS, ensure that the enabled interface is a locally reachable
         # When only using Unbound as DNS, make sure to replace 127.0.0.1 with your ip address
         # When using Unbound in combination with pi-hole or Adguard, point them to 127.0.0.1:PORT
         # When using Unbound in combination with pi-hole or Adguard, leave 127.0.0.1, and point Adguard to 127.0.0.1:PORT
         interface = [ "127.0.0.1" ];
         interface = [ "127.0.0.1" ];
         port = 5335;
         port = 5335;
Line 35: Line 39:
   };
   };
</syntaxhighlight>
</syntaxhighlight>
== Further reading ==
* [https://www.nlnetlabs.nl/projects/unbound/about/ Official project page]
* https://unbound.docs.nlnetlabs.nl/en/latest/
* [https://wiki.archlinux.org/title/Unbound ArchWiki page]
[[Category:Networking]]
[[Category:Server]]
[[Category:DNS]]