2010-07-15 12:17:00 +08:00
|
|
|
<configuration name="acl.conf" description="Network Lists">
|
|
|
|
<network-lists>
|
|
|
|
<!--
|
|
|
|
These ACL's are automatically created on startup.
|
|
|
|
|
|
|
|
rfc1918.auto - RFC1918 Space
|
|
|
|
nat.auto - RFC1918 Excluding your local lan.
|
|
|
|
localnet.auto - ACL for your local lan.
|
|
|
|
loopback.auto - ACL for your local lan.
|
|
|
|
-->
|
|
|
|
|
2010-07-24 04:20:33 +08:00
|
|
|
<list name="localhost" default="allow">
|
|
|
|
<node type="allow" cidr="127.0.0.1/255"/>
|
|
|
|
</list>
|
|
|
|
|
2010-07-15 12:17:00 +08:00
|
|
|
<list name="lan" default="allow">
|
|
|
|
<node type="deny" cidr="192.168.42.0/24"/>
|
|
|
|
<node type="allow" cidr="192.168.42.42/32"/>
|
|
|
|
</list>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
This will traverse the directory adding all users
|
|
|
|
with the cidr= tag to this ACL, when this ACL matches
|
|
|
|
the users variables and params apply as if they
|
|
|
|
digest authenticated.
|
|
|
|
-->
|
|
|
|
<list name="domains" default="deny">
|
|
|
|
<node type="allow" domain="$${domain}"/>
|
|
|
|
</list>
|
|
|
|
|
|
|
|
</network-lists>
|
|
|
|
</configuration>
|
|
|
|
|