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