X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fnamed%2Fmanifests%2Finit.pp;h=361ffaa40d9f5194c78d1c9c8ee334cbb689f774;hb=f54c4f0e27d1ff4c0805a8b6902f0b7e1b772b19;hp=f731dffcf703cef6b268751b7a7cbe6167221b29;hpb=366f6f92cd5c4e597604d1ca140473eec3b554ef;p=mirror%2Fdsa-puppet.git diff --git a/modules/named/manifests/init.pp b/modules/named/manifests/init.pp index f731dffcf..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': - ensure => absent, - #url => 'http://db.debian.org/debian-admin', - #suite => 'bind-ratelimit', - #components => 'main', - } - package { 'bind9': ensure => installed } @@ -16,32 +9,13 @@ class named { ensure => running, } - @ferm::rule { '00-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' } - if has_role('dns_primary') { - @ferm::rule { '01-dsa-bind-4': - domain => '(ip)', - description => 'Allow nameserver access', - rule => '&TCP_UDP_SERVICE_RANGE(53, ( $HOST_DNS_GEO_V4 $HOST_NAGIOS_V4 $HOST_RCODE0_V4 $HOST_EASYDNS_V4 $HOST_NETNOD_V4 5.153.231.21 ) )', - } - @ferm::rule { '01-dsa-bind-6': - domain => '(ip6)', - description => 'Allow nameserver access', - rule => '&TCP_UDP_SERVICE_RANGE(53, ( $HOST_DNS_GEO_V6 $HOST_NAGIOS_V6 $HOST_RCODE0_V6 $HOST_NETNOD_V6 2001:41c8:1000:21::21:21 ) )', - } - } else { - @ferm::rule { '01-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', @@ -49,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', @@ -64,6 +38,11 @@ class named { 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'), @@ -71,4 +50,15 @@ class named { 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 + } }