summaryrefslogtreecommitdiff
path: root/manifests/rules/out
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-09-29 19:54:44 +0200
committerMicah Anderson <micah@riseup.net>2009-12-07 11:34:09 -0500
commit05dca56e4a139f273094a49dd2078b65ae474457 (patch)
tree329db16644beaaa54c12beedfd317074c5443840 /manifests/rules/out
parentafd1f4f5793292529520ad50c2b46251c72ef900 (diff)
addd ssh out rule
Diffstat (limited to 'manifests/rules/out')
-rw-r--r--manifests/rules/out/ssh.pp10
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';
+ }
+}