summaryrefslogtreecommitdiff
path: root/manifests/rules/jabberserver.pp
blob: 3b38b294d176667cff21c11569da6879314f69f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class shorewall::rules::jabberserver {
  shorewall::rule {
    'net-me-tcp_jabber':
            source          => 'net',
            destination     => '$FW',
            proto           => 'tcp',
            destinationport => '5222,5223,5269',
            order           => 240,
            action          => 'ACCEPT';
    'me-net-tcp_jabber_s2s':
            source          => '$FW',
            destination     => 'net',
            proto           => 'tcp',
            destinationport => '5260,5269,5270,5271,5272',
            order           => 240,
            action          => 'ACCEPT';
  }

}