diff options
Diffstat (limited to 'manifests')
-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'; + } +} |