firewall_rule "accept-munin-#{server}" do
action :accept
family interface[:family]
- source "#{interface[:zone]}:#{interface[:address]}"
+ source "net:#{interface[:address]}"
dest "fw"
- proto "tcp:syn"
+ proto "tcp"
dest_ports "munin"
- source_ports "1024:"
+ source_ports "1024-65535"
end
end
end