summaryrefslogtreecommitdiff
path: root/puppet/modules/shorewall/manifests/rules/identd.pp
blob: 719e581c7afb83ee5407d975722e7fffa3786d47 (plain)
1
2
3
4
5
6
7
8
9
10
class shorewall::rules::identd {
  shorewall::rule { 'net-me-identd-tcp':
    source          => 'net',
    destination     => '$FW',
    proto           => 'tcp',
    destinationport => '113',
    order           => 240,
    action          => 'ACCEPT';
  }
}