class firewall::implementations::shorewall::virtual::http($destination) { shorewall::rule { 'http-route-1': action => 'DNAT', source => 'vm', destination => "fw:$destination:80", proto => 'tcp', destinationport => '80', originaldest => lookup('firewall::external_ip', undef, undef, $::ipaddress), ratelimit => '-', order => 600, } shorewall::rule { 'http-route-2': action => 'DNAT', source => 'net', destination => "vm:$destination:80", proto => 'tcp', destinationport => '80', originaldest => lookup('firewall::external_ip', undef, undef, $::ipaddress), ratelimit => '-', order => 601, } }