From: Aurelien Jarno Date: Tue, 20 Jun 2017 20:32:25 +0000 (+0200) Subject: ferm/aql: fix multicast rule X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=48822a9e46392d94157617d1aba34a64e0d37856;p=mirror%2Fdsa-puppet.git ferm/aql: fix multicast rule This should be 224.0.0.0/4 instead of 224.0.0.0/24. Thanks to James Cowgill who noticed the typo. Signed-off-by: Aurelien Jarno --- diff --git a/modules/ferm/manifests/aql.pp b/modules/ferm/manifests/aql.pp index b5578e2de..ece1ee10b 100644 --- a/modules/ferm/manifests/aql.pp +++ b/modules/ferm/manifests/aql.pp @@ -4,7 +4,7 @@ class ferm::aql { description => 'drop multicast traffic to avoid triggering protection', table => 'filter', chain => 'OUTPUT', - rule => 'destination 224.0.0.0/24 jump log_or_drop' + rule => 'destination 224.0.0.0/4 jump log_or_drop' } }