summaryrefslogtreecommitdiff
path: root/manifests/router/https.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/router/https.pp')
-rw-r--r--manifests/router/https.pp22
1 files changed, 22 insertions, 0 deletions
diff --git a/manifests/router/https.pp b/manifests/router/https.pp
new file mode 100644
index 0000000..064c694
--- /dev/null
+++ b/manifests/router/https.pp
@@ -0,0 +1,22 @@
+class firewall::router::https($destination, $zone = 'loc', $originaldest = $ipaddress) {
+ shorewall::rule { 'https-route-1':
+ action => 'DNAT',
+ source => 'net',
+ destination => "$zone:$destination:443",
+ proto => 'tcp',
+ destinationport => '443',
+ ratelimit => '-',
+ order => 602,
+ }
+
+ shorewall::rule { 'https-route-2':
+ action => 'DNAT',
+ source => '$FW',
+ destination => "fw:$destination:443",
+ proto => 'tcp',
+ destinationport => '443',
+ originaldest => "$originaldest",
+ ratelimit => '-',
+ order => 602,
+ }
+}