Bind: Difference between revisions
Nathanruiz (talk | contribs) Created page with "BIND (Berkeley Internet Name Domain) is one of the most widely used DNS servers. == Caching DNS resolver == If you are trying to setup bind as a simple DNS resolver, this can be configured using all the default options. You'll just need to enable the service:<syntaxhighlight lang="nix"> { ... }: { services.bind = { enable = true; }; } </syntaxhighlight> == Serving DNS for Your Domain == To run BIND as the primary DNS server for your domain, you can start with t..." |
Tags: Mobile edit Mobile web edit |
||
| Line 71: | Line 71: | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Networking]] | |||
[[Category:Server]] | |||