blob: 4080e7e6c2a0dc0310a9115c4c0a80c8366a2f46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class shorewall::rules::jetty {
# open jetty port
shorewall::rule {
'net-me-jetty-tcp':
source => 'net',
destination => '$FW',
proto => 'tcp',
destinationport => '8080',
order => 240,
action => 'ACCEPT';
}
}
|