<div dir="ltr">I'm trying to support a downstream client (actually a phone on a VoIP gateway) that must work without sending a registration to Freeswitch.  <br>I have a definition in the client directory that looks like this:<br><br><include><br>  <user id="0101" cidr="<a href="http://192.168.1.0/24">192.168.1.0/24</a>"><br>    <variables><br>    :<br>      <variable name="user_context" value="default"/><br><br>So, I'm assuming that if the source address matches 192.168.1.x, an invite from 0101 will automatically be authenticated, and the user context will <br>be set to 'default' to go through the dialplan.<br><br>However, what seems to happen is that the dialplan gets executed in the public context, 0101 doesn't match anything, and so the call fails.<br><br>I also tried adding entries to the acl.conf file, e.g.<br><br>e.g.<br>    <list name="lan" default="allow">                      <br>      <node type="allow" cidr="<a href="http://192.168.1.0/24">192.168.1.0/24</a>"/>          <br>    </list>      <br>                                                                                                                                     <br> or                                                                                <br>    <list name="localnet.auto" default="allow">        <br>       <node type="allow" cidr="<a href="http://192.168.1.0/24">192.168.1.0/24</a>"/>  <br>    </list>  <br>   <br>or adding an 'allow' line to the existing 'domains' list.<br><br>When I run 'reloadacl', it looks like the rules are being picked up, e.g.<br><br>2021-01-05 11:06:07.631090 [NOTICE] switch_utils.c:642 Adding <a href="http://192.168.1.0/24">192.168.1.0/24</a> (allow) [] to list localnet.auto<br>2021-01-05 11:06:07.631090 [NOTICE] switch_utils.c:642 Adding <a href="http://192.168.1.97/32">192.168.1.97/32</a> (allow) [<a href="mailto:0101@192.168.1.241">0101@192.168.1.241</a>] to list domains<br><br><br>However, none of this works, and I still end up in the public context when a call is placed.<br><br>I would appreciate any examples or advice that people could offer to get my client authenticated, or could anyone give me pointers on <br>how to debug the authentication process when the invite arrives?<br><br><br>Regards,<br>Martyn<br></div>