aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2010-10-22 22:05:23 +0200
committermh <mh@immerda.ch>2010-10-22 22:05:23 +0200
commit60dcbae4afae245ceaf28dd91309f0a54d74f997 (patch)
treecc3f58bf1420f48ef71e24e376186f05e80690a3
parenta1739cacce6c17e9244c3c6d5b5838e331265490 (diff)
downloadpuppet-shorewall-60dcbae4afae245ceaf28dd91309f0a54d74f997.tar.gz
puppet-shorewall-60dcbae4afae245ceaf28dd91309f0a54d74f997.tar.bz2
add identd rules
-rw-r--r--manifests/rules/identd.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/rules/identd.pp b/manifests/rules/identd.pp
new file mode 100644
index 0000000..719e581
--- /dev/null
+++ b/manifests/rules/identd.pp
@@ -0,0 +1,10 @@
+class shorewall::rules::identd {
+ shorewall::rule { 'net-me-identd-tcp':
+ source => 'net',
+ destination => '$FW',
+ proto => 'tcp',
+ destinationport => '113',
+ order => 240,
+ action => 'ACCEPT';
+ }
+}