diff options
author | mh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2008-10-12 19:13:30 +0000 |
---|---|---|
committer | mh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2008-10-12 19:13:30 +0000 |
commit | 67587636a7fef31d08dfbd80b02db32c1d98096b (patch) | |
tree | 1aeaceb943b7e072fa73b1ee23e05814a723089d | |
parent | 5233620d89adfcfb2604d2cf9e6feab85a5e3d5a (diff) | |
download | puppet-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.pp | 11 |
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'; + } +} |