aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/firewall/ups.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/subsystems/firewall/ups.pp')
-rw-r--r--manifests/subsystems/firewall/ups.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/subsystems/firewall/ups.pp b/manifests/subsystems/firewall/ups.pp
new file mode 100644
index 0000000..c559739
--- /dev/null
+++ b/manifests/subsystems/firewall/ups.pp
@@ -0,0 +1,11 @@
+class firewall::ups {
+ shorewall::rule { "ups":
+ action => 'ACCEPT',
+ source => 'net',
+ destination => '$FW',
+ proto => 'tcp',
+ destinationport => "3551",
+ ratelimit => '-',
+ order => "200",
+ }
+}