acl.conf.xml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <configuration name="acl.conf" description="Network Lists">
  2. <network-lists>
  3. <list name="dl-candidates" default="allow">
  4. <node type="deny" cidr="10.0.0.0/8"/>
  5. <node type="deny" cidr="172.16.0.0/12"/>
  6. <node type="deny" cidr="192.168.0.0/16"/>
  7. </list>
  8. <list name="rfc1918" default="deny">
  9. <node type="allow" cidr="10.0.0.0/8"/>
  10. <node type="allow" cidr="172.16.0.0/12"/>
  11. <node type="allow" cidr="192.168.0.0/16"/>
  12. </list>
  13. <list name="lan" default="allow">
  14. <node type="deny" cidr="192.168.42.0/24"/>
  15. <node type="allow" cidr="192.168.42.42/32"/>
  16. </list>
  17. <list name="strict" default="deny">
  18. <node type="allow" cidr="208.102.123.124/32"/>
  19. </list>
  20. <!--
  21. This will traverse the directory adding all users
  22. with the cidr= tag to this ACL, when this ACL matches
  23. the users variables and params apply as if they
  24. digest authenticated.
  25. -->
  26. <list name="domains" default="deny">
  27. <node type="allow" domain="$${domain}"/>
  28. </list>
  29. </network-lists>
  30. </configuration>