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