define firewall::router::tor($destination, $zone = 'loc', $originaldest = $ipaddress) { shorewall::rule { "tor-$name-1": action => 'DNAT', source => 'net', destination => "$zone:$destination:9000", proto => 'tcp', destinationport => "9000", ratelimit => '-', order => "29000", } shorewall::rule { "tor-$name-2": action => 'DNAT', source => '$FW', destination => "$zone:$destination:9000", proto => 'tcp', destinationport => "9000", originaldest => "$originaldest", ratelimit => '-', order => "29000", } shorewall::rule { "tor-$name-3": action => 'DNAT', source => 'net', destination => "$zone:$destination:9001", proto => 'tcp', destinationport => "9001", ratelimit => '-', order => "29001", } shorewall::rule { "tor-$name-4": action => 'DNAT', source => '$FW', destination => "$zone:$destination:9001", proto => 'tcp', destinationport => "9001", originaldest => "$originaldest", ratelimit => '-', order => "29001", } }