freeswitch/conf/autoload_configs/acl.conf.xml
Anthony Minessale 5777371e66 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8032 d0543943-73ff-0310-b7d9-9358b9ac24b2
2008-04-04 22:01:53 +00:00

25 lines
766 B
XML

<configuration name="acl.conf" description="Network Lists">
<network-lists>
<list name="dl-candidates" default="allow">
<node type="deny" cidr="10.0.0.0/8"/>
<node type="deny" cidr="172.16.0.0/12"/>
<node type="deny" cidr="192.168.0.0/16"/>
</list>
<list name="rfc1918" default="deny">
<node type="allow" cidr="10.0.0.0/8"/>
<node type="allow" cidr="172.16.0.0/12"/>
<node type="allow" cidr="192.168.0.0/16"/>
</list>
<list name="lan" default="allow">
<node type="deny" cidr="192.168.42.0/24"/>
<node type="allow" cidr="192.168.42.42/32"/>
</list>
<list name="strict" default="deny">
<node type="allow" cidr="208.102.123.124/32"/>
</list>
</network-lists>
</configuration>