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