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