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