blob: e04e492545fc9b9e3401b6f33296a4799e9b85c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
class shorewall::rules::cobbler {
shorewall::rule{'net-me-syslog-xmlrpc-tcp':
source => 'net',
destination => '$FW',
proto => 'tcp',
destinationport => '25150:25151',
order => 240,
action => 'ACCEPT';
}
shorewall::rule{'net-me-syslog-xmlrpc-udp':
source => 'net',
destination => '$FW',
proto => 'udp',
destinationport => '25150:25151',
order => 240,
action => 'ACCEPT';
}
include shorewall::rules::rsync
}
|