aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2015-04-07 14:32:07 +0200
committermh <mh@immerda.ch>2015-12-05 11:36:31 +0100
commit353492eaa1c9047547b17161df4aa58ea3bf0a87 (patch)
tree6addebb2c54333234230344b43f4ab2e587fa4f0
parent598ef5555c1c204f9eeeb3cba8c85a02dc5e63b9 (diff)
downloadpuppet-shorewall-353492eaa1c9047547b17161df4aa58ea3bf0a87.tar.gz
puppet-shorewall-353492eaa1c9047547b17161df4aa58ea3bf0a87.tar.bz2
add razor rules
-rw-r--r--manifests/rules/out/razor.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/rules/out/razor.pp b/manifests/rules/out/razor.pp
new file mode 100644
index 0000000..1f8397c
--- /dev/null
+++ b/manifests/rules/out/razor.pp
@@ -0,0 +1,12 @@
+# razor calls out on 2703
+# https://wiki.apache.org/spamassassin/NetTestFirewallIssues
+class shorewall::rules::out::razor {
+ shorewall::rule { 'me-net-tcp_razor':
+ source => '$FW',
+ destination => 'net',
+ proto => 'tcp',
+ destinationport => '2703',
+ order => 240,
+ action => 'ACCEPT';
+ }
+}