Forge Home

bind

Puppet module for bind

5,033 downloads

5,033 latest version

3.7 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 1.0.0 (latest)
released Nov 4th 2018
This version is compatible with:
  • , , ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'onkeldom-bind', '1.0.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add onkeldom-bind
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install onkeldom-bind --version 1.0.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: bind, dns, bind9, named

Documentation

onkeldom/bind — version 1.0.0 Nov 4th 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              => [ '127.0.0.1', '10.0.0.3' ],
    listen_on_v6           => [ '::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', '10.0.0.0/8' ],
    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',
    zone_statistics        => 'yes',
    request_ixfr           => 'no',
    logging                => true,
    statistics_channels    => {
      'interface-ip' => [
        'allowed-ip/net1',
        'allowed-ip/net2',
      ],
    },
    key                    => {
      'keyname' => [
        'algorithm hmac-md5',
        'secret "<mysuperspecialsecretkey>"',
      ],
    },
    zone                   => {
      'example.com' => [
        'type master',
        'file "example.com.db"',
        'allow-transfer { none; }',
        'allow-query    { any; }',
        'allow-update   { key "keyname";/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', # if no serial is set, the current time.to.i will set
    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'
    ],
}