summaryrefslogtreecommitdiff
path: root/manifests/virtual/icecast.pp
blob: 3c392b6b659034b1305f5fff2ed98087e8d2c698 (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::icecast($destination, $zone = 'fw') {
  shorewall::rule { 'icecast-1':
    action          => 'DNAT',
    source          => 'net',
    destination     => "$zone:$destination:8000",
    proto           => 'tcp',
    destinationport => '8000',
    ratelimit       => '-',
    order           => 900,
  }

  shorewall::rule { 'icecast-2':
    action          => 'DNAT',
    source          => '$FW',
    destination     => "$zone:$destination:8000",
    proto           => 'tcp',
    destinationport => '8000',
    originaldest    => lookup('firewall::external_ip', undef, undef, $::ipaddress),
    ratelimit       => '-',
    order           => 901,
  }
}