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