summaryrefslogtreecommitdiff
path: root/manifests/rules/silcd.pp
blob: 91ee4a59b27e8d6c98f110156f711b3bb7d29e04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class shorewall::rules::silcd {
  shorewall::rule{
    'net-me-silcd-tcp':
      source          => 'net',
      destination     => '$FW',
      proto           => 'tcp',
      destinationport => '706',
      order           => 240,
      action          => 'ACCEPT';
    'net-me-silcd-udp':
      source          => 'net',
      destination     => '$FW',
      proto           => 'udp',
      destinationport => '706',
      order           => 240,
      action          => 'ACCEPT';

  }
}