]> gitweb.fluxo.info Git - puppet-shorewall.git/commitdiff
rule to open whois to outside
authormh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>
Sun, 12 Oct 2008 19:13:30 +0000 (19:13 +0000)
committermh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>
Sun, 12 Oct 2008 19:13:30 +0000 (19:13 +0000)
git-svn-id: https://svn/ipuppet/trunk/modules/shorewall@2492 d66ca3ae-40d7-4aa7-90d4-87d79ca94279

manifests/rules/out/whois.pp [new file with mode: 0644]

diff --git a/manifests/rules/out/whois.pp b/manifests/rules/out/whois.pp
new file mode 100644 (file)
index 0000000..d003d5c
--- /dev/null
@@ -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';
+    }
+}