<div class="gmail_quote">2009/3/19 Oguzhan Kayhan <span dir="ltr">&lt;<a href="mailto:oguzhank@bilkent.edu.tr">oguzhank@bilkent.edu.tr</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi, i managed to connect to Ericsson MD110 with PRI at last.<br>
And made a successful call thru asterisk to ericsson.<br>
<br>
But when i try to call from ericsson to asterisk i got an error on<br>
asterisk side.<br>
And i couldnt figure out why.<br>
<br>
Here&#39;s my extensions.conf about incoming calls.<br>
<br>
[DID_span_1]<br>
include = DID_span_1_timeinterval_all,${timeinterval_all}<br>
DID_span_1_timeinterval_all]<br>
exten = s,1,Goto(default,8000,1)<br>
<br>
<br>
I am forwarding all calls coming from PRI trunk to extension 8000 in<br>
asterisk.<br>
and what i got on debug of asterisk when i create a call from pbx to<br>
asterisk..<br>
<br>
 Extension &#39;8000&#39; in context &#39;DID_span_1&#39; from &#39;&#39; does not exist.<br>
Rejecting call on channel 0/4, span 1<br>
<br>
<br>
What can it be the error.??<br></blockquote></div><br><div>It would appear you are sending calls to extension 8000, but, as the error message indicates, there is no extension 8000 in the context you are sending the call to, there&#39;s only an &#39;s&#39; extension...</div>
<div><br></div><div>The s extension isn&#39;t a wildcard extension so won&#39;t match the inbound call to 8000... if you had exten =&gt; 8000,1,Goto(default,8000,1) in the inbound context then that would match and the call would be sent to extension 8000 in the default context, which is probably the functionality you are expecting...</div>
<div><br></div><div>d</div>