summaryrefslogtreecommitdiff
path: root/manifests/virtual/gobby.pp
blob: 162fe1de536ec87dc1abe39c33a6c0245d31850f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class firewall::virtual::gobby($destination) {
  shorewall::rule { 'gobby-0':
    action          => 'DNAT',
    source          => 'vm',
    destination     => "fw:$destination:6523",
    proto           => 'tcp',
    destinationport => '6523',
    originaldest    => hiera('firewall::external_ip', $::ipaddress),
    ratelimit       => '-',
    order           => 2400,
  }

  shorewall::rule { 'gobby-1':
    action          => 'DNAT',
    source          => 'net',
    destination     => "vm:$destination:6523",
    proto           => 'tcp',
    destinationport => '6523',
    originaldest    => hiera('firewall::external_ip', $::ipaddress),
    ratelimit       => '-',
    order           => 2400,
  }
}