aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoro <o@immerda.ch>2013-12-19 19:51:45 +0100
committermh <mh@immerda.ch>2015-12-05 11:34:54 +0100
commitbf36b2b0553bfd0dafccffaa5a30c9fdaf08c1ae (patch)
tree262c2f83c1e6650a3ead63b55f46f0e49c7e99c9
parent589f32d74a791138277583ed57c05e581a073c58 (diff)
downloadpuppet-shorewall-bf36b2b0553bfd0dafccffaa5a30c9fdaf08c1ae.tar.gz
puppet-shorewall-bf36b2b0553bfd0dafccffaa5a30c9fdaf08c1ae.tar.bz2
add rule for openvpn
-rw-r--r--manifests/rules/openvpn.pp18
1 files changed, 18 insertions, 0 deletions
diff --git a/manifests/rules/openvpn.pp b/manifests/rules/openvpn.pp
new file mode 100644
index 0000000..55a20d2
--- /dev/null
+++ b/manifests/rules/openvpn.pp
@@ -0,0 +1,18 @@
+class shorewall::rules::openvpn {
+ shorewall::rule { 'net-me-openvpn-udp':
+ source => 'net',
+ destination => '$FW',
+ proto => 'udp',
+ destinationport => '1194',
+ order => 240,
+ action => 'ACCEPT';
+ }
+ shorewall::rule { 'me-net-openvpn-udp':
+ source => '$FW',
+ destination => 'net',
+ proto => 'udp',
+ destinationport => '1194',
+ order => 240,
+ action => 'ACCEPT';
+ }
+}