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