<div class="gmail_quote">2009/3/19 Oguzhan Kayhan <span dir="ltr"><<a href="mailto:oguzhank@bilkent.edu.tr">oguzhank@bilkent.edu.tr</a>></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'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 '8000' in context 'DID_span_1' from '' 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's only an 's' extension...</div>
<div><br></div><div>The s extension isn't a wildcard extension so won't match the inbound call to 8000... if you had exten => 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>