diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystems/firewall.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/subsystems/firewall.pp b/manifests/subsystems/firewall.pp index 1fb216c..1fe28c3 100644 --- a/manifests/subsystems/firewall.pp +++ b/manifests/subsystems/firewall.pp @@ -574,7 +574,7 @@ define firewall::router::ssh($destination, $port_orig = '22', $port_dest = '') { destination => $port_dest ? { '' => "vm:$destination", default => "vm:$destination:$port_dest", - } + }, proto => 'tcp', destinationport => "$port_orig", ratelimit => '-', @@ -587,7 +587,7 @@ define firewall::router::ssh($destination, $port_orig = '22', $port_dest = '') { destination => $port_dest ? { '' => "fw:$destination", default => "fw:$destination:$port_dest", - } + }, proto => 'tcp', destinationport => "$port_orig", originaldest => "$ipaddress", @@ -603,7 +603,7 @@ define firewall::router::munin($destination, $port_orig, $port_dest = '') { destination => $port_dest ? { '' => "fw:$destination", default => "fw:$destination:$port_dest", - } + }, proto => 'tcp', destinationport => "$port_orig", ratelimit => '-', @@ -616,7 +616,7 @@ define firewall::router::munin($destination, $port_orig, $port_dest = '') { destination => $port_dest ? { '' => "fw:$destination", default => "fw:$destination:$port_dest", - } + }, proto => 'tcp', destinationport => "$port_orig", originaldest => "$ipaddress", |