summaryrefslogtreecommitdiff
path: root/manifests/virtual/mumble.pp
blob: 45ab393def20c5a1c497dd0f2e13631560476d9e (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::virtual::mumble($destination, $zone = 'fw') {
  shorewall::rule { 'mumble-0':
    action          => 'DNAT',
    source          => 'net',
    destination     => "$zone:$destination:64738",
    proto           => 'tcp',
    destinationport => '64738',
    ratelimit       => '-',
    order           => 2300,
  }

  shorewall::rule { 'mumble-1':
    action          => 'DNAT',
    source          => '$FW',
    destination     => "$zone:$destination:64738",
    proto           => 'udp',
    destinationport => '64738',
    originaldest    => hiera('firewall::external_ip', $::ipaddress),
    ratelimit       => '-',
    order           => 2301,
  }
}