X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fnamed%2Fmanifests%2Finit.pp;h=361ffaa40d9f5194c78d1c9c8ee334cbb689f774;hb=2835c1daf1a5f55ec56366fa5d534b6bfc7728cb;hp=a2dde9d3c863e7c651e2a567d7140da9efea142f;hpb=3e4e0946835e0ca9b9167b38ac17949754a0f120;p=mirror%2Fdsa-puppet.git diff --git a/modules/named/manifests/init.pp b/modules/named/manifests/init.pp index a2dde9d3c..361ffaa40 100644 --- a/modules/named/manifests/init.pp +++ b/modules/named/manifests/init.pp @@ -1,13 +1,6 @@ class named { - munin::check { 'bind': } - site::aptrepo { 'bind-ratelimit': - url => 'http://db.debian.org/debian-admin', - suite => 'bind-ratelimit', - components => 'main', - } - package { 'bind9': ensure => installed } @@ -16,19 +9,13 @@ class named { ensure => running, } - @ferm::rule { 'dsa-bind-no-ddos-any': + ferm::rule { '00-dsa-bind-no-ddos-any': domain => '(ip ip6)', description => 'Allow nameserver access', rule => 'proto udp dport 53 mod string from 32 to 64 algo bm hex-string \'|0000ff0001|\' jump DROP' } - @ferm::rule { 'dsa-bind': - domain => '(ip ip6)', - description => 'Allow nameserver access', - rule => '&TCP_UDP_SERVICE(53)' - } - - @ferm::rule { 'dsa-bind-notrack': + ferm::rule { 'dsa-bind-notrack': domain => '(ip ip6)', description => 'NOTRACK for nameserver traffic', table => 'raw', @@ -36,7 +23,7 @@ class named { rule => 'proto (tcp udp) dport 53 jump NOTRACK' } - @ferm::rule { 'dsa-bind-notrack-out': + ferm::rule { 'dsa-bind-notrack-out': domain => '(ip ip6)', description => 'NOTRACK for nameserver traffic', table => 'raw', @@ -50,4 +37,28 @@ class named { group => bind, mode => '0775', } + + file { '/etc/bind/named.conf.options': + content => template('named/named.conf.options.erb'), + notify => Service['bind9'], + } + + file { '/etc/bind/named.conf.puppet-shared-keys': + mode => '0640', + content => template('named/named.conf.puppet-shared-keys.erb'), + owner => root, + group => bind, + notify => Service['bind9'], + } + + concat { '/etc/bind/named.conf.puppet-misc': + notify => Service['bind9'], + } + concat::fragment { 'dsa-named-conf-puppet-misc---header': + target => '/etc/bind/named.conf.puppet-misc', + order => '000', + content => @(EOF) + // THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE. + | EOF + } }