diff options
author | mh <mh@immerda.ch> | 2010-11-04 19:31:55 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2010-11-04 19:31:55 +0100 |
commit | d0d76dc943e3521e706918e23f20bb85f5c4c1b8 (patch) | |
tree | 8bf06f90845edb450aa7731a3501b4d2f1e66207 /manifests/rules/out | |
parent | 2e9d8ed388bc20693888f74ae704022ebf4a9900 (diff) | |
download | puppet-shorewall-d0d76dc943e3521e706918e23f20bb85f5c4c1b8.tar.gz puppet-shorewall-d0d76dc943e3521e706918e23f20bb85f5c4c1b8.tar.bz2 |
add silc rules
Diffstat (limited to 'manifests/rules/out')
-rw-r--r-- | manifests/rules/out/silc.pp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/manifests/rules/out/silc.pp b/manifests/rules/out/silc.pp new file mode 100644 index 0000000..830df9c --- /dev/null +++ b/manifests/rules/out/silc.pp @@ -0,0 +1,19 @@ +class shorewall::rules::out::silc { + shorewall::rule{ + 'me-net-silc-tcp': + source => '$FW', + destination => 'net', + proto => 'tcp', + destinationport => '706', + order => 240, + action => 'ACCEPT'; + 'me-net-silc-udp': + source => '$FW', + destination => 'net', + proto => 'udp', + destinationport => '706', + order => 240, + action => 'ACCEPT'; + + } +} |