Hey guys,<br><br>I'm currently testing FS inside a LAN. FreeSWITCH is running on 192.168.0.101 and my softphone is on 192.168.0.100.<br><br>I can register and make calls just fine, but I want to deny everything in order to learn how the ACL works.<br>
<br>I have this on the internal profile:<br><br> <param name="apply-nat-acl" value="rfc1918"/><br> <param name="apply-inbound-acl" value="domains"/><br> <param name="apply-register-acl" value="domains"/><br>
<br>And this is how my acl.conf.xml looks, it's all set to deny:<br><br><configuration name="acl.conf" description="Network Lists"><br> <network-lists><br><br> <list name="dl-candidates" default="deny"><br>
<node type="deny" cidr="<a href="http://10.0.0.0/8">10.0.0.0/8</a>"/><br> <node type="deny" cidr="<a href="http://172.16.0.0/12">172.16.0.0/12</a>"/><br> <node type="deny" cidr="<a href="http://192.168.0.0/16">192.168.0.0/16</a>"/><br>
</list><br><br> <list name="rfc1918" default="deny"><br> <node type="deny" cidr="<a href="http://10.0.0.0/8">10.0.0.0/8</a>"/><br> <node type="deny" cidr="<a href="http://172.16.0.0/12">172.16.0.0/12</a>"/><br>
<node type="deny" cidr="<a href="http://192.168.0.0/16">192.168.0.0/16</a>"/><br> </list><br><br> <list name="lan" default="deny"><br> <node type="deny" cidr="<a href="http://192.168.42.0/24">192.168.42.0/24</a>"/><br>
<node type="deny" cidr="<a href="http://192.168.42.42/32">192.168.42.42/32</a>"/><br> </list><br><br> <list name="strict" default="deny"><br> <node type="deny" cidr="<a href="http://208.102.123.124/32">208.102.123.124/32</a>"/><br>
</list><br> <!--<br> This will traverse the directory adding all users<br> with the cidr= tag to this ACL, when this ACL matches<br> the users variables and params apply as if they<br>
digest authenticated.<br> --><br> <list name="domains" default="deny"><br> <node type="deny" domain="$${domain}"/><br> <node type="deny" cidr="<a href="http://192.168.0.0/24">192.168.0.0/24</a>"/><br>
</list><br><br> </network-lists><br></configuration><br><br>But I'm still allowed to register with the 1000 user and make calls, to the conference extension, etc... I can't understand this, if it's all to deny and the cidr is set to <a href="http://192.168.0.0/24">192.168.0.0/24</a> on the "domains" context, which is what hte profile uses, shouldn't the registration/call be denied. I have tried many conbinations but whenever I change something it wont make any difference.<br>
<br>Please help me.<br><br>Thanks,<br><br>Diego<br>