cookbook 'nsd', '= 0.4.0'
nsd (7) Versions 0.4.0 Follow0
Install and configure NSD
cookbook 'nsd', '= 0.4.0', :supermarket
knife supermarket install nsd
knife supermarket download nsd
nsd cookbook
A Chef cookbook to install nsd master and slaves along with initial zone configuration.
Resources
The examples below configure one master (ns1.example.com
) and two slave servers (ns2.example.com
and ns3.example.com
), all of which host two zones - example.com
itself and test.com
. SOA records will contain hostmaster@example.com
as an email address.
nsd_master
nsd_master 'ns1.example.com' do port 53 ipv4_address '1.1.1.1' ipv6_address '2001:0db8:0a0b:12f0:0000:0000:0000:0001' contact 'hostmaster@example.com' bind_addresses %w(1.1.1.1 2001:0db8:0a0b:12f0:0000:0000:0000:0001) enable_ipv6 true keys({ 'ns2.example.com' => '7DzUnLpx9H...', 'ns3.example.com' => '1ADEn1fqOo...' }) slaves({ 'ns2.example.com' => { 'ipv4_address' => '2.2.2.2', 'ipv6_address' => '2001:0db8:0a0b:12f0:0000:0000:0000:0002' }, 'ns3.example.com' => { 'ipv4_address' => '3.3.3.3', 'ipv6_address' => '2001:0db8:0a0b:12f0:0000:0000:0000:0003' } }) zones %w(example.com test.com) action :install end
nsd_slave
nsd_slave 'ns2.example.com' do port 53 bind_addresses %w(2.2.2.2 2001:0db8:0a0b:12f0:0000:0000:0000:0002) enable_ipv6 true key '7DzUnLpx9H...' zones %w(example.com test.com) master_ipv4_address '1.1.1.1' action :install end
nsd_slave 'ns3.example.com' do port 53 bind_addresses %w(3.3.3.3 2001:0db8:0a0b:12f0:0000:0000:0000:0003) enable_ipv6 true key '1ADEn1fqOo...' zones %w(example.com test.com) master_ipv4_address '1.1.1.1' action :install end
AXFR keys
A zone is modified only on a master server. Then the changes are transferred to slave servers. It is presupposed that each slave server has its own secret key. Secret management is up to the user utilizing nsd_master
and nsd_slave
resources.
A key may be generated with this command:
$ dd if=/dev/random count=1 bs=32 2> /dev/null | base64
Limitations
This cookbook does not set up any firewall rules.
License
MIT @ Alexander Pyatkin
Dependent cookbooks
instance ~> 2.0.0 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
Collaborator Number Metric
0.4.0 failed this metric
Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.
Contributing File Metric
0.4.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
0.4.0 passed this metric
No Binaries Metric
0.4.0 passed this metric
Testing File Metric
0.4.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
0.4.0 passed this metric
0.4.0 failed this metric
0.4.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
0.4.0 passed this metric
No Binaries Metric
0.4.0 passed this metric
Testing File Metric
0.4.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
0.4.0 passed this metric
0.4.0 passed this metric
0.4.0 passed this metric
Testing File Metric
0.4.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
0.4.0 passed this metric
0.4.0 failed this metric
0.4.0 passed this metric