blob: c5597390d872bcb2031ae32cd25938abaf339c47 (
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",
}
}
|