ferm/aql: fix multicast rule
authorAurelien Jarno <aurelien@aurel32.net>
Tue, 20 Jun 2017 20:32:25 +0000 (22:32 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Tue, 20 Jun 2017 20:32:25 +0000 (22:32 +0200)
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 <aurelien@aurel32.net>
modules/ferm/manifests/aql.pp

index b5578e2..ece1ee1 100644 (file)
@@ -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'
        }
 }