]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tilecache/recipes/default.rb
Tilecache: Firewall allow ICP traffic between caches
[chef.git] / cookbooks / tilecache / recipes / default.rb
index 5b44be21f313db1cb067862da07f61062bd50b13..18aa14e145fc771fa638575ba199f8b01a233a5a 100644 (file)
@@ -21,6 +21,27 @@ include_recipe "squid"
 
 tilecaches = search(:node, "roles:tilecache").sort_by { |n| n[:hostname] }
 
+tilecaches.each do |cache|
+  cache.ipaddresses(:family => :inet, :role => :external).sort.each do |address|
+    firewall_rule "accept-squid" do
+      action :accept
+      source "net:#{address}"
+      dest "fw"
+      proto "tcp:syn"
+      dest_ports "3128"
+      source_ports "1024:"
+    end
+    firewall_rule "accept-squid-icp" do
+      action :accept
+      source "net:#{address}"
+      dest "fw"
+      proto "udp"
+      dest_ports "3130"
+      source_ports "1024:"
+    end
+  end
+end
+
 squid_fragment "tilecache" do
   template "squid.conf.erb"
   variables :caches => tilecaches