projects
/
mirror
/
dsa-puppet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e0525b0
)
ferm/aql: fix multicast rule
author
Aurelien Jarno
<aurelien@aurel32.net>
Tue, 20 Jun 2017 20:32:25 +0000
(22:32 +0200)
committer
Aurelien 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
patch
|
blob
|
history
diff --git
a/modules/ferm/manifests/aql.pp
b/modules/ferm/manifests/aql.pp
index
b5578e2
..
ece1ee1
100644
(file)
--- 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/
2
4 jump log_or_drop'
+ rule => 'destination 224.0.0.0/4 jump log_or_drop'
}
}