summaryrefslogtreecommitdiff
path: root/puppet/modules/shorewall/manifests/rules/out/whois.pp
blob: d003d5c1e264043189b87cf6da2f685fe5624f42 (plain)
1
2
3
4
5
6
7
8
9
10
11
class shorewall::rules::out::whois {
    # open whois tcp port 
    shorewall::rule {'me-net-tcp_whois':
        source          => '$FW',
        destination     => 'net',
        proto           => 'tcp',
        destinationport => '43',
        order           => 251,
        action          => 'ACCEPT';
    }
}