summaryrefslogtreecommitdiff
path: root/manifests/rules/out/ssh.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/rules/out/ssh.pp')
-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 00000000..c18e299b
--- /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';
+ }
+}