diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-08-09 14:37:24 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-08-09 14:37:24 -0300 |
commit | 665da2db0bf3e347f406548695b7617b349ac314 (patch) | |
tree | e81056deb4c18c483d6759d825974bbe0e6bc5f0 /manifests/subsystems/firewall.pp | |
parent | 3cf7681276f024dbacbb9555b9b2ef9124975ceb (diff) | |
download | puppet-nodo-665da2db0bf3e347f406548695b7617b349ac314.tar.gz puppet-nodo-665da2db0bf3e347f406548695b7617b349ac314.tar.bz2 |
Minor fixes
Diffstat (limited to 'manifests/subsystems/firewall.pp')
-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", |