<HTML>
<HEAD>
<TITLE>Re: [asterisk-users] Asterisk and Siemens Legacy PBX</TITLE>
</HEAD>
<BODY>
<FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>Hi Jon, thanks for the reply, good to know I am on the right track!<BR>
<BR>
I have actually already tried your suggestion, but using :<BR>
<BR>
_. To try and match what the siemens was sending, but this did not work, I know this is not advisable in &#8216;production&#8217;, but I was just trying to get something working before I came up with the proper solution.<BR>
<BR>
I also tried just using s , this again did not work. I assumed the &#8216;Extension &#8216;&#8217; in context&#8217; part of my debug meant that the siemens is not sending, or asterisk can&#8217;t work out, what extension is being sent.... If that makes sense....<BR>
<BR>
Also to help me get my head around this, the &#8216;extension&#8217; referred to that should be being sent from the siemens, is this going to be the number the siemens is dialing, if not, how do I get &#8216;access&#8217; to that number?<BR>
<BR>
My goal is to just allow the siemens to make any call it wants via the span 1 on the asterisk box, which is connected to a &#8216;real&#8217; ISDN PRI.<BR>
<BR>
James<BR>
<BR>
On 5/8/06 20:30, &quot;Jon Farmer&quot; &lt;jon@bctech.co.uk&gt; wrote:<BR>
<BR>
</SPAN></FONT><BLOCKQUOTE><FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'><BR>
<BR>
<BR>
James Arscott wrote:<BR>
&gt; Hi, thanks to the original poster, I redid all the cabling and immediately<BR>
&gt; got the span to go OK between asterisk and the siemens legacy PBX. Only<BR>
&gt; problem now is working out how to handle the calls from the siemens....<BR>
&gt; Worth pointing out at this stage I have no access to the siemens<BR>
&gt; configuration, so I could be shooting blind.<BR>
&gt;<BR>
&gt; I put span2 (which is connected to the siemens) into its own context<BR>
&gt; (inbound-from-siemens) and then tried to few simple attempts at &#338;receiving&sup1;<BR>
&gt; the calls that the siemens is trying to make. However whatever I put all I<BR>
&gt; get via the asterisk console is :<BR>
&gt;<BR>
&gt; -- Extension '' in context 'inbound-from-siemens' from 'xxxxxx' does not<BR>
&gt; exist. &nbsp;Rejecting call on channel 0/31, span 2<BR>
&gt;<BR>
&gt; That comes up each time a call is attempted from the siemens, the xxxxxx<BR>
&gt; shows as whichever direct dial number tried to dial out on the siemens,<BR>
&gt; which I initially was pleased to see, however I am now stumped at how I<BR>
&gt; should try to get asterisk to deal with these calls, am I barking up the<BR>
&gt; wrong tree ?<BR>
<BR>
No you are slowing barking up the right tree :-)<BR>
<BR>
The call is getting accepted by Asterisk in the context<BR>
inbound-from-siemens. However it can't work out what to do with the<BR>
call. You need to match the xxxxxx number with a extension number which<BR>
is in the inbound-from-siemens context or another context included in<BR>
it. For instance if the xxxxxxx number is 123456 you could use.<BR>
<BR>
[inbound-from-siemens]<BR>
<BR>
exten =&gt; 123456,1,Dial(SIP/101)<BR>
<BR>
to dial SIP phone 101<BR>
<BR>
or if the numbers from the siemens follow a pattern ie they all start<BR>
with 12 then you could use<BR>
<BR>
exten =&gt; _12XXXX,1,Dial(SIP/101)<BR>
<BR>
<BR>
If you check the extensions.conf page at<BR>
<BR>
www.voip-info.org/wiki<BR>
<BR>
you will see loads of examples on how to construct a dialplan<BR>
<BR>
HTH<BR>
<BR>
<BR>
Jon<BR>
<BR>
<BR>
--<BR>
Jon Farmer<BR>
Telford, Shropshire, UK<BR>
_______________________________________________<BR>
--Bandwidth and Colocation provided by Easynews.com --<BR>
<BR>
asterisk-users mailing list<BR>
To UNSUBSCRIBE or update options visit:<BR>
&nbsp;&nbsp;&nbsp;<a href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</a><BR>
<BR>
</SPAN></FONT></BLOCKQUOTE><FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'><BR>
</SPAN></FONT>
</BODY>
</HTML>