Version information
released Aug 28th 2018
This version is compatible with:
- , , ,
Start using this module
Add this module to your Puppetfile:
mod 'aneesh-bind', '6.0.0'
Learn more about managing modules with a PuppetfileDocumentation
aneesh/bind — version 6.0.0 Aug 28th 2018
BIND Module
Overview
This module install and configure bind dns server.
Usage
Default configuration:
include bind
Change configuration file settings:
class { 'bind':
listen_on => 'port 53 { 127.0.0.1; }',
listen_on_v6 => 'port 53 { ::1; }',
directory => '"/var/named"',
dump_file => '"/var/named/data/cache_dump.db"',
statistics_file => '"/var/named/data/named_stats.txt"',
memstatistics_file => '"/var/named/data/named_mem_stats.txt"',
allow_query => '{ localhost; }',
allow_update => '{ none; }',
allow_transfer => '{ none; }',
recursion => 'no',
dnssec_enable => 'yes',
dnssec_validation => 'yes',
bindkeys_file => '"/etc/named.iscdlv.key"',
managed_keys_directory => '"/var/named/dynamic"',
pid_file => '"/run/named/named.pid"',
session_keyfile => '"/run/named/session.key"',
version => '"[SECURED]"',
server_id => 'none',
cleaning_interval => '120',
interface_interval => '0',
max_ncache_ttl => '3600',
nnotify => 'no',
logging => true,
zone => {
'example.com' => [
'type master',
'file "example.com.db"',
'allow-transfer { none; }',
'allow-query { any; }',
'allow-update { none; }',
],
},
include => [ '"/etc/named.rfc1912.zones"', '"/etc/named.root.key"' ],
}
Create zone file:
bind::zone_file { 'example.com.db':
file_name => 'example.com.db',
nameserver => 'ns1.example.com.',
admin => 'admin@example.com.',
ttl => '3600',
serial => '1',
refresh => '3600',
retry => '1800',
expire => '3600',
minimum => '3600',
records => [
'@ IN NS ns1.example.com.',
'@ IN A 192.168.1.105',
'ns1 IN A 192.168.1.105',
'www IN A 192.168.1.105'
],
}
Copyright 2017 Aneesh C Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.