diff options
Diffstat (limited to 'manifests/rules/out/ircs.pp')
-rw-r--r-- | manifests/rules/out/ircs.pp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/rules/out/ircs.pp b/manifests/rules/out/ircs.pp new file mode 100644 index 0000000..a71585d --- /dev/null +++ b/manifests/rules/out/ircs.pp @@ -0,0 +1,10 @@ +class shorewall::rules::out::ircs { + shorewall::rule{'me-net-ircs-tcp': + source => '$FW', + destination => 'net', + proto => 'tcp', + destinationport => '6669', + order => 240, + action => 'ACCEPT'; + } +} |