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