A puppet module for the Unbound caching resolver.
- Debian
- FreeBSD
- OpenBSD
- OS X (macports)
- RHEL clones (with EPEL)
- openSUSE (local repo or obs://server:dns)
The concat
module must be installed. It can be obtained from Puppet Forge:
puppet module install puppetlabs/concat
Or add this line to your Puppetfile
and deploy with R10k:
mod 'concat', :git => 'git://github.com/puppetlabs/puppetlabs-concat.git'
At minimum you should setup the interfaces to listen on and allow access to a few subnets.
class { "unbound":
interface => ["::0","0.0.0.0"],
access => ["10.0.0.0/20","::1"],
}
These are zones for which you have an authoritative name server and want to direct queries.
unbound::stub { "lan.example.com":
address => '10.0.0.10',
insecure => true,
}
unbound::stub { "0.0.10.in-addr.arpa.":
address => '10.0.0.10',
insecure => true,
}
Unless you have DNSSEC for your private zones, they are considered insecure,
noted by insecure => true
.
For overriding DNS record in zone.
unbound::record { 'test.example.tld':
type => 'A',
content => '10.0.0.1',
ttl => '14400',
}
Setup a forward zone with a list of address from which you should resolve queries. You can configure a forward zone with something like the following:
unbound::forward { '.':
address => [
'8.8.8.8',
'8.8.4.4'
]
}
This means that your server will use the Google DNS servers for any zones that it doesn't know how to reach and cache the result.
class { "unbound":
interface => ["::0","0.0.0.0"],
access => ["10.0.0.0/20","::1"],
custom_server_conf => [ 'include: "/etc/unbound/conf.d/*.conf"' ],
}
The custom_server_conf option allows the addition of arbitrary configuration parameters to your server configuration. It expects an array, and each element gets added to the configuration file on a separate line. In the example above, we instruct Unbound to load other configuration files from a subdirectory.
The Unbound remote controls the use of the unbound-control utility to issue commands to the Unbound daemon process.
include unbound::remote
On some platforms this is needed to function correctly for things like service reloads.
You can find more information about Unbound and its configuration items at unbound.net.
Please help me make this module awesome! Send pull requests and file issues.