X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fapache2%2Fmanifests%2Fdynamic.pp;h=b39e5597a13bb5b0a817828710177594f331b079;hb=6421c571fd4794f93352a80c0110ff33b1f6c60d;hp=f5a357f3d0b0e9de9bc90d15b322ca8ab2a5bc91;hpb=5e14785986b7f395ea433dc77ac44cbade05d699;p=mirror%2Fdsa-puppet.git diff --git a/modules/apache2/manifests/dynamic.pp b/modules/apache2/manifests/dynamic.pp index f5a357f3d..b39e5597a 100644 --- a/modules/apache2/manifests/dynamic.pp +++ b/modules/apache2/manifests/dynamic.pp @@ -54,27 +54,39 @@ class apache2::dynamic { jump http_limit' } - @ferm::rule { 'dsa-http-rules': - prio => '22', - description => 'http subchain', - chain => 'http', - rule => ' - saddr (82.195.75.113) jump ACCEPT; - saddr (74.6.22.182 74.6.18.240 67.195.0.0/16) jump limit_yahoo; - saddr (124.115.0.0/21 119.63.192.0/21) jump limit_sosospider; - saddr (65.52.0.0/14 207.46.0.0/16) jump limit_bing; - saddr (66.249.64.0/19) jump limit_google; - saddr (123.125.71.0/24 119.63.192.0/21 180.76.0.0/16 220.181.0.0/16) jump limit_baidu; - saddr (119.235.237.024) jump limit_nhn; + if has_role('snapshot_web') { + @ferm::rule { 'dsa-http-rules': + prio => '22', + description => 'http subchain', + chain => 'http', + rule => ' + mod hashlimit hashlimit-name HTTPDOSPRE hashlimit-mode srcip hashlimit-burst 10 hashlimit 6/minute jump ACCEPT; + mod recent name HTTPDOS update seconds 900 jump log_or_drop; + mod hashlimit hashlimit-name HTTPDOS hashlimit-mode srcip hashlimit-burst 200 hashlimit 30/minute jump ACCEPT; + mod recent name HTTPDOS set jump log_or_drop' + } + } else { + @ferm::rule { 'dsa-http-rules': + prio => '22', + description => 'http subchain', + chain => 'http', + rule => ' + saddr (74.6.22.182 74.6.18.240 67.195.0.0/16) jump limit_yahoo; + saddr (124.115.0.0/21 119.63.192.0/21) jump limit_sosospider; + saddr (65.52.0.0/14 207.46.0.0/16) jump limit_bing; + saddr (66.249.64.0/19) jump limit_google; + saddr (123.125.71.0/24 119.63.192.0/21 180.76.0.0/16 220.181.0.0/16) jump limit_baidu; + saddr (119.235.237.024) jump limit_nhn; - mod recent name HTTPDOS update seconds 1800 jump log_or_drop; - mod hashlimit hashlimit-name HTTPDOS hashlimit-mode srcip hashlimit-burst 600 hashlimit 30/minute jump ACCEPT; - mod recent name HTTPDOS set jump log_or_drop' + mod recent name HTTPDOS update seconds 1800 jump log_or_drop; + mod hashlimit hashlimit-name HTTPDOS hashlimit-mode srcip hashlimit-burst 600 hashlimit 30/minute jump ACCEPT; + mod recent name HTTPDOS set jump log_or_drop' + } } @ferm::rule { 'dsa-http': prio => '23', description => 'Allow web access', - rule => 'proto tcp dport (http https) jump http' + rule => 'proto tcp dport (http https 6081) jump http' } }