From 48822a9e46392d94157617d1aba34a64e0d37856 Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Tue, 20 Jun 2017 22:32:25 +0200 Subject: [PATCH] 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 --- modules/ferm/manifests/aql.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' } } -- 2.20.1