summaryrefslogtreecommitdiff
path: root/manifests/shorewall.pp
blob: 114bda7f0012971c32ae7d452a1141f62eb99afc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# manifests/shorewall.pp

class resolvconf::shorewall {
    include shorewall

    shorewall::rule {
        'me-net-tcp_dns':
                        source          =>      '$FW',
                        destination     =>      'net',
                        proto           =>      'tcp',
                        destinationport =>      '53',
                        order           =>      250,
                        action          =>      'ACCEPT';
        'me-net-udp_dns':
                        source          =>      '$FW',
                        destination     =>      'net',
                        proto           =>      'udp',
                        destinationport =>      '53',
                        order           =>      251,
                        action          =>      'ACCEPT'; 
    }
}