summaryrefslogtreecommitdiff
path: root/manifests/ups.pp
blob: 042fcdc42d41ee3e718109b6c8a3a317e0722861 (plain)
1
2
3
4
5
6
7
8
9
10
11
class firewall::ups {
  shorewall::rule { "ups":
    action          => 'ACCEPT',
    source          => 'net',
    destination     => '$FW',
    proto           => 'tcp',
    destinationport => "3551",
    ratelimit       => '-',
    order           => 200,
  }
}