2
0

acl.conf.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <configuration name="acl.conf" description="Network Lists">
  2. <network-lists>
  3. <!--
  4. These ACL's are automatically created on startup.
  5. rfc1918.auto - RFC1918 Space
  6. nat.auto - RFC1918 Excluding your local lan.
  7. localnet.auto - ACL for your local lan.
  8. loopback.auto - ACL for your local lan.
  9. -->
  10. <list name="lan" default="allow">
  11. <node type="deny" cidr="192.168.42.0/24"/>
  12. <node type="allow" cidr="192.168.42.42/32"/>
  13. </list>
  14. <!--
  15. This will traverse the directory adding all users
  16. with the cidr= tag to this ACL, when this ACL matches
  17. the users variables and params apply as if they
  18. digest authenticated.
  19. -->
  20. <list name="domains" default="deny">
  21. <!-- domain= is special it scans the domain from the directory to build the ACL -->
  22. <node type="allow" domain="$${domain}"/>
  23. <!-- use cidr= if you wish to allow ip ranges to this domains acl. -->
  24. <!-- <node type="allow" cidr="192.168.0.0/24"/> -->
  25. </list>
  26. </network-lists>
  27. </configuration>