blob: 6c0d50725796d04e195adfa57db684971f403561 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
class shorewall::rules::ipsec_nat {
shorewall::rule {
'net-me-ipsec-nat-udp':
source => 'net',
destination => '$FW',
proto => 'udp',
destinationport => '4500',
order => 240,
action => 'ACCEPT';
'me-net-ipsec-nat-udp':
source => '$FW',
destination => 'net',
proto => 'udp',
destinationport => '4500',
order => 240,
action => 'ACCEPT';
}
}
|