blob: e6a9bdef917ca34911252484330af5579f62e5d7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
class shorewall::rules::http {
shorewall::rule { 'net-me-http-tcp':
source => 'net',
destination => '$FW',
proto => 'tcp',
destinationport => '80',
order => 240,
action => 'ACCEPT';
}
}
|