Skip to content
This repository has been archived by the owner on Jan 24, 2019. It is now read-only.

Commit

Permalink
direct: simpler example
Browse files Browse the repository at this point in the history
  • Loading branch information
jpopelka committed Sep 3, 2014
1 parent 4b17fab commit 098f931
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/direct.pp
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
ipv => 'ipv4',
table => 'mangle',
chain => 'PREROUTING',
args => "-p udp --sport 53 -m u32 --u32 '0&0x0F000000=0x05000000 && 22&0xFFFF@16=0x01020304' -j DROP",},],
args => "-p tcp -m tcp --dport 123 -j MARK --set-mark 1' -j DROP",},],
}
2 changes: 1 addition & 1 deletion manifests/direct.pp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
# ipv => 'ipv4',
# table => 'mangle',
# chain => 'PREROUTING',
# args => "-p udp --sport 53 -m u32 --u32 '0&0x0F000000=0x05000000 && 22&0xFFFF@16=0x01020304' -j DROP",},],}
# args => "-p tcp -m tcp --dport 123 -j MARK --set-mark 1",},],}
#
class firewalld::direct(
$chains = [],
Expand Down

0 comments on commit 098f931

Please sign in to comment.