From: Silvio Rhatto Date: Tue, 16 Aug 2011 01:03:41 +0000 (-0300) Subject: Changing rules for firewall::router::http and firewall::router::https X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=48a3a401dbd69028db1934e3a5bbec8296ce47bd;p=puppet-nodo.git Changing rules for firewall::router::http and firewall::router::https --- 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',