blob: 7151976bcc7161c1d55c8a6bbd5f36a7470d50ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
define shorewall::rules::sobby::instance( $port ){
shorewall::rule {
"net-me-tcp_sobby_${name}":
source => 'net',
destination => '$FW',
proto => 'tcp',
destinationport => $port,
order => 240,
action => 'ACCEPT';
}
}
|