diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystems/firewall/router.pp | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/manifests/subsystems/firewall/router.pp b/manifests/subsystems/firewall/router.pp index 7dbd2f5..814aa66 100644 --- a/manifests/subsystems/firewall/router.pp +++ b/manifests/subsystems/firewall/router.pp @@ -1,25 +1,47 @@ class firewall::router::http($destination, $zone = 'loc') { - shorewall::rule { 'http-route': + shorewall::rule { 'http-route-1': action => 'DNAT', - source => 'all', + source => 'net', destination => "$zone:$destination:80", proto => 'tcp', destinationport => '80', ratelimit => '-', order => '600', } + + shorewall::rule { 'http-route-2': + action => 'DNAT', + source => '$FW', + destination => "fw:$destination:80", + proto => 'tcp', + destinationport => '80', + originaldest => "$ipaddress", + ratelimit => '-', + order => '601', + } } class firewall::router::https($destination, $zone = 'loc') { - shorewall::rule { 'https-route': + shorewall::rule { 'https-route-1': action => 'DNAT', - source => 'all', + source => 'net', destination => "$zone:$destination:443", proto => 'tcp', destinationport => '443', ratelimit => '-', order => '602', } + + shorewall::rule { 'https-route-2': + action => 'DNAT', + source => '$FW', + destination => "fw:$destination:443", + proto => 'tcp', + destinationport => '443', + originaldest => "$ipaddress", + ratelimit => '-', + order => '602', + } } class firewall::router::puppetmaster($destination, $puppetmaster_port = '8140', |