]> gitweb.fluxo.info Git - puppet-firewall.git/commitdiff
Updates tor ports
authorSilvio Rhatto <rhatto@riseup.net>
Sat, 16 Jun 2018 15:08:34 +0000 (12:08 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sat, 16 Jun 2018 15:08:34 +0000 (12:08 -0300)
manifests/router/tor.pp
manifests/virtual/tor.pp

index 6a2986fa1d82bb1f1666751f5a4ae7d2d7d7e77e..710b4a0e8d219f46b0ae161676bf9db7c7ca8516 100644 (file)
@@ -2,42 +2,42 @@ define firewall::router::tor($destination, $zone = 'loc', $originaldest = $ipadd
   shorewall::rule { "tor-$name-1":
     action          => 'DNAT',
     source          => 'net',
-    destination     => "$zone:$destination:9001",
+    destination     => "$zone:$destination:9000",
     proto           => 'tcp',
-    destinationport => "9001",
+    destinationport => "9000",
     ratelimit       => '-',
-    order           => "29001",
+    order           => "29000",
   }
 
   shorewall::rule { "tor-$name-2":
     action          => 'DNAT',
     source          => '$FW',
-    destination     => "$zone:$destination:9001",
+    destination     => "$zone:$destination:9000",
     proto           => 'tcp',
-    destinationport => "9001",
+    destinationport => "9000",
     originaldest    => "$originaldest",
     ratelimit       => '-',
-    order           => "29001",
+    order           => "29000",
   }
 
   shorewall::rule { "tor-$name-3":
     action          => 'DNAT',
     source          => 'net',
-    destination     => "$zone:$destination:9030",
+    destination     => "$zone:$destination:9001",
     proto           => 'tcp',
-    destinationport => "9030",
+    destinationport => "9001",
     ratelimit       => '-',
-    order           => "29030",
+    order           => "29001",
   }
 
   shorewall::rule { "tor-$name-4":
     action          => 'DNAT',
     source          => '$FW',
-    destination     => "$zone:$destination:9030",
+    destination     => "$zone:$destination:9001",
     proto           => 'tcp',
-    destinationport => "9030",
+    destinationport => "9001",
     originaldest    => "$originaldest",
     ratelimit       => '-',
-    order           => "29030",
+    order           => "29001",
   }
 }
index 4d336c6ab47526ea2e48e80e9891f1e771c282b6..8424f3b7457f1c58c2c0992f8c2a4723ef1629f2 100644 (file)
@@ -2,9 +2,9 @@ class firewall::virtual::tor($destination, $zone = 'fw') {
   shorewall::rule { 'tor-0':
     action          => 'DNAT',
     source          => 'net',
-    destination     => "$zone:$destination:9001",
+    destination     => "$zone:$destination:9000",
     proto           => 'tcp',
-    destinationport => '9001',
+    destinationport => '9000',
     ratelimit       => '-',
     order           => 2100,
   }
@@ -12,9 +12,9 @@ class firewall::virtual::tor($destination, $zone = 'fw') {
   shorewall::rule { 'tor-1':
     action          => 'DNAT',
     source          => '$FW',
-    destination     => "$zone:$destination:9001",
+    destination     => "$zone:$destination:9000",
     proto           => 'tcp',
-    destinationport => '9001',
+    destinationport => '9000',
     originaldest    => hiera('firewall::external_ip', $::ipaddress),
     ratelimit       => '-',
     order           => 2101,
@@ -23,9 +23,9 @@ class firewall::virtual::tor($destination, $zone = 'fw') {
   shorewall::rule { 'tor-2':
     action          => 'DNAT',
     source          => 'net',
-    destination     => "$zone:$destination:9030",
+    destination     => "$zone:$destination:9001",
     proto           => 'tcp',
-    destinationport => '9030',
+    destinationport => '9001',
     ratelimit       => '-',
     order           => 2102,
   }
@@ -33,9 +33,9 @@ class firewall::virtual::tor($destination, $zone = 'fw') {
   shorewall::rule { 'tor-3':
     action          => 'DNAT',
     source          => '$FW',
-    destination     => "$zone:$destination:9030",
+    destination     => "$zone:$destination:9001",
     proto           => 'tcp',
-    destinationport => '9030',
+    destinationport => '9001',
     originaldest    => hiera('firewall::external_ip', $::ipaddress),
     ratelimit       => '-',
     order           => 2103,