X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fnamed%2Fmanifests%2Finit.pp;h=da2313c138f12bf12f90ab0732a1df949420c7ad;hb=683ffc212c9c3a4d7e4a4ff98c94fb52a75a02ca;hp=9f1c7f908faee7a6a6a200863eaae1d693f390ea;hpb=f04944021270df8bd0d14b6f42923724a3317c9e;p=mirror%2Fdsa-puppet.git diff --git a/modules/named/manifests/init.pp b/modules/named/manifests/init.pp index 9f1c7f908..da2313c13 100644 --- a/modules/named/manifests/init.pp +++ b/modules/named/manifests/init.pp @@ -1,5 +1,4 @@ class named { - munin::check { 'bind': } site::aptrepo { 'bind-ratelimit': @@ -22,10 +21,23 @@ class named { rule => 'proto udp dport 53 mod string from 32 to 64 algo bm hex-string \'|0000ff0001|\' jump DROP' } - @ferm::rule { '01-dsa-bind': - domain => '(ip ip6)', - description => 'Allow nameserver access', - rule => '&TCP_UDP_SERVICE(53)' + if getfromhash($site::nodeinfo, 'dns_primary') { + @ferm::rule { '01-dsa-bind-4': + domain => '(ip)', + description => 'Allow nameserver access', + rule => '&SERVICE_RANGE(tcp, 5671, $HOST_DEBIAN_V4)', + } + @ferm::rule { '01-dsa-bind-6': + domain => '(ip6)', + description => 'Allow nameserver access', + rule => '&SERVICE_RANGE(tcp, 5671, $HOST_DEBIAN_V6)', + } + } else { + @ferm::rule { '01-dsa-bind': + domain => '(ip ip6)', + description => 'Allow nameserver access', + rule => '&TCP_UDP_SERVICE(53)' + } } @ferm::rule { 'dsa-bind-notrack':