diff options
Diffstat (limited to 'manifests/rules/out/xmpp.pp')
-rw-r--r-- | manifests/rules/out/xmpp.pp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/rules/out/xmpp.pp b/manifests/rules/out/xmpp.pp new file mode 100644 index 0000000..a1b4577 --- /dev/null +++ b/manifests/rules/out/xmpp.pp @@ -0,0 +1,10 @@ +class shorewall::rules::out::xmpp { + shorewall::rule{'me-net-xmpp-tcp': + source => '$FW', + destination => 'net', + proto => 'tcp', + destinationport => '5222', + order => 240, + action => 'ACCEPT'; + } +} |