<div dir="ltr">I am using proxy authentication in my setup and it is working. To do this I have created an acl<div><b>autoload_configs/acl.conf.xml</b></div><div><div>   &lt;list name=&quot;opensips&quot; default=&quot;deny&quot;&gt;</div><div>                &lt;node type=&quot;allow&quot; cidr=&quot;<a href="http://1.2.3.4/32">1.2.3.4/32</a>&quot;/&gt;</div><div>                &lt;node type=&quot;allow&quot; cidr=&quot;<a href="http://1.2.3.5/32">1.2.3.5/32</a>&quot;/&gt;</div><div>                &lt;node type=&quot;allow&quot; cidr=&quot;<a href="http://1.2.3.6/32">1.2.3.6/32</a>&quot;/&gt;</div><div>   &lt;/list&gt;</div></div><div><br></div><div><b>sip_profiles/external.xml</b></div><div>&lt;param name=&quot;auth-calls&quot; value=&quot;true&quot;/&gt;<br></div><div>&lt;param name=&quot;apply-proxy-acl&quot; value=&quot;<a href="http://1.2.3.2/32">1.2.3.2/32</a>&quot;/&gt;<br></div><div><div>&lt;param name=&quot;apply-inbound-acl&quot; value=&quot;opensips&quot;/&gt;</div></div><div><br></div><div><br></div><div>This is all working as desired. The problem is prior to adding the opensips I was using the network_addr variable in my dialplan.</div><div><br></div><div><div>        &lt;extension name=&quot;tollfree_to_providerA&quot;&gt;</div><div>                &lt;condition field=&quot;${acl(${network_addr} opensips)}&quot; expression=&quot;true&quot; break=&quot;on-false&quot;/&gt;</div><div>                        &lt;condition field=&quot;destination_number&quot; expression=&quot;^(\+?1)?(8(00|44|55|66|77|88)[2-9]\d{6})$&quot;&gt;</div><div>                                &lt;action application = &quot;set&quot; data=&quot;dtmf_type=rfc2833&quot;/&gt;<br></div><div>                                &lt;action application=&quot;set&quot; data=&quot;accountcode=customer1123&quot;/&gt;</div><div>                                &lt;action application=&quot;set&quot; data=&quot;continue_on_fail=false&quot;/&gt;</div><div>                                &lt;action application=&quot;set&quot; data=&quot;hangup_after_bridge=true&quot;/&gt;</div><div>                                &lt;action application=&quot;set&quot; data=&quot;proxy_media=true&quot;/&gt;</div><div>                                &lt;action application=&quot;bridge&quot; data=&quot;sofia/external/$<a href="http://2@8.7.6.5:5060">2@8.7.6.5:5060</a>&quot;/&gt;<br></div><div>                &lt;/condition&gt;</div><div>        &lt;/extension&gt;</div></div><div><br></div><div>This of course no longer works because network_addr is always the address of my proxy server. How can I get the address from the X-authip into the dialplan?</div></div>