X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fnamed%2Fmanifests%2Finit.pp;h=d425931752d6e8c3392ceea4f0d89b1b0ebcd428;hb=93b0951a13225a40ab43169af5ec218452bc0273;hp=1ce12c90778934317edbd658c143f627864a8575;hpb=c4e1f7da82af189fe739c4c28ba78cc2d200a425;p=mirror%2Fdsa-puppet.git diff --git a/modules/named/manifests/init.pp b/modules/named/manifests/init.pp index 1ce12c907..d42593175 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,10 +9,10 @@ class named { ensure => running, } - @ferm::rule { 'dsa-bind': + @ferm::rule { '00-dsa-bind-no-ddos-any': domain => '(ip ip6)', description => 'Allow nameserver access', - rule => '&TCP_UDP_SERVICE(53)' + rule => 'proto udp dport 53 mod string from 32 to 64 algo bm hex-string \'|0000ff0001|\' jump DROP' } @ferm::rule { 'dsa-bind-notrack': @@ -44,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 + } }