aboutsummaryrefslogtreecommitdiff
path: root/manifests/rules/out/ekeyd.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/rules/out/ekeyd.pp')
-rw-r--r--manifests/rules/out/ekeyd.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/rules/out/ekeyd.pp b/manifests/rules/out/ekeyd.pp
new file mode 100644
index 0000000..ef6f20a
--- /dev/null
+++ b/manifests/rules/out/ekeyd.pp
@@ -0,0 +1,11 @@
+class shorewall::rules::out::ekeyd($ekeyd_host) {
+ shorewall::rule { 'me-net-tcp_ekeyd':
+ source => '$FW',
+ destination => "net:${ekeyd_host}",
+ proto => 'tcp',
+ destinationport => '8888',
+ order => 240,
+ action => 'ACCEPT';
+ }
+}
+