From 48a3a401dbd69028db1934e3a5bbec8296ce47bd Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Mon, 15 Aug 2011 22:03:41 -0300 Subject: Changing rules for firewall::router::http and firewall::router::https --- manifests/subsystems/firewall/router.pp | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) (limited to 'manifests/subsystems') 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', -- cgit v1.2.3