Here is my setup, this is just a test lab til I figure out how to do this<br>
<br>
Both&nbsp; machines are on a lan, no routers, firewalls etc between <br>
<br>
BoxA<br>
<a href="http://192.168.1.192">192.168.1.192</a><br>
2XXX extensions<br>
<br>
BoxA iax.conf<br>
[boxb-peer]<br>
username=boxa-user<br>
type=peer<br>
trunk=yes<br>
secret=mypassword<br>
host=<a href="http://192.168.1.139">192.168.1.139</a><br>
<br>
[boxb-user]<br>
type=user<br>
secret=mypassword2<br>
host=<a href="http://192.168.1.139">192.168.1.139</a><br>
context=from-internal<br>
<br>
BoxA extensions_custom.conf (included in extensions.conf)<br>
[ext-local-custom]<br>
exten =&gt; _1XXX,1,Dial(IAX2/boxb-user:mypassword2@192.168.1.139/${EXTEN:1},30,r)<br>
exten =&gt; _1XXX,2,Congestion<br>
<br>
BoxB<br>
<a href="http://192.168.1.139">192.168.1.139</a><br>
1XXX extensions<br>
<br>
BoxB iax.conf<br>
[boxa-peer]<br>
username=boxb-user<br>
type=peer<br>
trunk=yes<br>
secret=mypassword2<br>
host=<a href="http://192.168.1.192">192.168.1.192</a><br>
<br>
[boxa-user]<br>
type=user<br>
secret=mypassword<br>
host=<a href="http://192.168.1.192">192.168.1.192</a><br>
context=from-internal<br>
<br>
BoxB extensions_custom.conf (included in extensions.conf)<br>
[ext-local-custom]<br>
exten =&gt; _2XXX,1,Dial(IAX2/boxa-user:mypassword@192.168.1.192/${EXTEN:1},30,r)<br>
exten =&gt; _2XXX,2,Congestion<br>
<br>
<br>
calling the 2xxx extensions gets me the following message no matter what extension I call in that group<br>
In this case the number I was dialing is 2001<br>
<br>
&nbsp;&nbsp; -- Executing Dial(&quot;SIP/2001-ea9d&quot;, &quot;IAX2/boxb-user:mypassword2@192.168.1.139/001|30|r&quot;) in new stack<br>
&nbsp;&nbsp;&nbsp; -- Called boxb-user:mypassword2@192.168.1.139/001<br>
&nbsp;&nbsp;&nbsp; -- Hungup 'IAX2/boxb-peer-1'<br>
&nbsp; == Everyone is busy/congested at this time (1:0/0/1)<br>
&nbsp;&nbsp;&nbsp; -- Executing Congestion(&quot;SIP/2001-ea9d&quot;, &quot;&quot;) in new stack<br>
&nbsp;&nbsp;&nbsp; -- Executing Macro(&quot;SIP/2001-ea9d&quot;, &quot;hangupcall&quot;) in new stack<br>
&nbsp;&nbsp;&nbsp; -- Executing ResetCDR(&quot;SIP/2001-ea9d&quot;, &quot;w&quot;) in new stack<br>
&nbsp;&nbsp;&nbsp; -- Executing NoCDR(&quot;SIP/2001-ea9d&quot;, &quot;&quot;) in new stack<br>
&nbsp;&nbsp;&nbsp; -- Executing Wait(&quot;SIP/2001-ea9d&quot;, &quot;5&quot;) in new stack<br>
&nbsp;&nbsp;&nbsp; -- Executing Dial(&quot;SIP/2001-3bd5&quot;, &quot;IAX2/boxb-user:mypassword2@192.168.1.139/002|30|r&quot;) in new stack<br>
&nbsp;&nbsp;&nbsp; -- Called boxb-user:mypassword2@192.168.1.139/002<br>
&nbsp;&nbsp;&nbsp; -- Hungup 'IAX2/boxb-peer-2'<br>
&nbsp; == Everyone is busy/congested at this time (1:0/0/1)<br>
&nbsp;&nbsp;&nbsp; -- Executing Congestion(&quot;SIP/2001-3bd5&quot;, &quot;&quot;) in new stack<br>
&nbsp;&nbsp;&nbsp; -- Executing Macro(&quot;SIP/2001-3bd5&quot;, &quot;hangupcall&quot;) in new stack<br>
<br>
<br>
Does it look correct?&nbsp; Am I missing something in this config? <br>