summaryrefslogtreecommitdiff
path: root/manifests/implementations/shorewall/router/gobby.pp
blob: 8c41e29b66e481662ff3719923a5ed3f77955465 (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::gobby($destination, $zone = 'loc', $originaldest = $ipaddress) {
  shorewall::rule { 'gobby-route-1':
    action          => 'DNAT',
    source          => 'net',
    destination     => "$zone:$destination:6523",
    proto           => 'tcp',
    destinationport => '6523',
    ratelimit       => '-',
    order           => 600,
  }

  shorewall::rule { 'gobby-route-2':
    action          => 'DNAT',
    source          => '$FW',
    destination     => "fw:$destination:6523",
    proto           => 'tcp',
    destinationport => '6523',
    originaldest    => "$originaldest",
    ratelimit       => '-',
    order           => 601,
  }
}