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