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