summaryrefslogtreecommitdiff
path: root/manifests/router/http.pp
blob: 8833116516b88a4124064e969d8624fe56236680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class firewall::router::http($destination, $zone = 'loc', $originaldest = $ipaddress) {
  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    => "$originaldest",
    ratelimit       => '-',
    order           => 601,
  }
}