summaryrefslogtreecommitdiff
path: root/manifests/implementations/shorewall/router/https.pp
blob: b937fa1168ea48daa1947d828c25a4853a681de5 (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::implementations::shorewall::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,
  }
}