summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-10-12 19:13:30 +0000
committermh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-10-12 19:13:30 +0000
commit67587636a7fef31d08dfbd80b02db32c1d98096b (patch)
tree1aeaceb943b7e072fa73b1ee23e05814a723089d
parent5233620d89adfcfb2604d2cf9e6feab85a5e3d5a (diff)
downloadpuppet-shorewall-67587636a7fef31d08dfbd80b02db32c1d98096b.tar.gz
puppet-shorewall-67587636a7fef31d08dfbd80b02db32c1d98096b.tar.bz2
rule to open whois to outside
git-svn-id: https://svn/ipuppet/trunk/modules/shorewall@2492 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
-rw-r--r--manifests/rules/out/whois.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/rules/out/whois.pp b/manifests/rules/out/whois.pp
new file mode 100644
index 0000000..d003d5c
--- /dev/null
+++ b/manifests/rules/out/whois.pp
@@ -0,0 +1,11 @@
+class shorewall::rules::out::whois {
+ # open whois tcp port
+ shorewall::rule {'me-net-tcp_whois':
+ source => '$FW',
+ destination => 'net',
+ proto => 'tcp',
+ destinationport => '43',
+ order => 251,
+ action => 'ACCEPT';
+ }
+}