diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-06-08 09:57:12 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-06-08 09:57:12 -0300 |
commit | d86ab1f83be4574658cb4543e34093ace85e36a3 (patch) | |
tree | 7d5406032b523ab4ff6b0024ed3053cb05279a55 /manifests/subsystems/firewall | |
parent | e223a17e68b7d7daa854c6078c4ef906a80f3542 (diff) | |
download | puppet-nodo-d86ab1f83be4574658cb4543e34093ace85e36a3.tar.gz puppet-nodo-d86ab1f83be4574658cb4543e34093ace85e36a3.tar.bz2 |
Adding gobby server routing for vservers
Diffstat (limited to 'manifests/subsystems/firewall')
-rw-r--r-- | manifests/subsystems/firewall/vserver.pp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/subsystems/firewall/vserver.pp b/manifests/subsystems/firewall/vserver.pp index 30f3c39..fe96c40 100644 --- a/manifests/subsystems/firewall/vserver.pp +++ b/manifests/subsystems/firewall/vserver.pp @@ -453,3 +453,15 @@ class firewall::vserver::mumble($destination, $zone = 'fw') { order => '2301', } } + +class firewall::vserver::gobby($destination, $zone = 'fw') { + shorewall::rule { 'gobby-0': + action => 'DNAT', + source => 'net', + destination => "$zone:$destination:6523", + proto => 'tcp', + destinationport => '6523', + ratelimit => '-', + order => '2400', + } +} |