diff options
author | mh <mh@immerda.ch> | 2009-09-29 19:54:44 +0200 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2009-12-07 11:34:09 -0500 |
commit | 05dca56e4a139f273094a49dd2078b65ae474457 (patch) | |
tree | 329db16644beaaa54c12beedfd317074c5443840 | |
parent | afd1f4f5793292529520ad50c2b46251c72ef900 (diff) | |
download | puppet-shorewall-05dca56e4a139f273094a49dd2078b65ae474457.tar.gz puppet-shorewall-05dca56e4a139f273094a49dd2078b65ae474457.tar.bz2 |
addd ssh out rule
-rw-r--r-- | manifests/rules/out/ssh.pp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/rules/out/ssh.pp b/manifests/rules/out/ssh.pp new file mode 100644 index 0000000..c18e299 --- /dev/null +++ b/manifests/rules/out/ssh.pp @@ -0,0 +1,10 @@ +class shorewall::rules::out::ssh { + shorewall::rule { 'me-net-tcp_ssh': + source => '$FW', + destination => 'net', + proto => 'tcp', + destinationport => 'ssh', + order => 240, + action => 'ACCEPT'; + } +} |