We have two * boxen linked with an IAX trunk they are on different networks. Calling from any ext to any other remote ext on either box works fine.Outgoing calls from either box also works fine. Problem when dialing in from DID (SIP or IAX provider) number, the caller cant transfer to any ext that is not on the local box. How can I make * aware of the other ext on the remote box so the DID caller can access them like he can with the local box? local ext are 8xx remote ext are 9xx thanks -Matt
Matt wrote:> We have two * boxen linked with an IAX trunk they are on different > networks. > > Calling from any ext to any other remote ext on either box works > fine.Outgoing calls from either box also works fine. > > Problem when dialing in from DID (SIP or IAX provider) number, the > caller cant transfer to any ext that is not on the local box. > > How can I make * aware of the other ext on the remote box so the DID > caller can access them like he can with the local box? > > local ext are 8xx remote ext are 9xx > > thanks > > -MattWhat about DUNDi? I'm about to roll this out in the next few days, I'll let you know.
How are you doing the transfers? Phone or asterisk feature? PaulH On Wed, 2006-10-04 at 01:55 +1000, Matt wrote:> We have two * boxen linked with an IAX trunk they are on different networks. > > Calling from any ext to any other remote ext on either box works > fine.Outgoing calls from either box also works fine. > > Problem when dialing in from DID (SIP or IAX provider) number, the > caller cant transfer to any ext that is not on the local box. > > How can I make * aware of the other ext on the remote box so the DID > caller can access them like he can with the local box? > > local ext are 8xx remote ext are 9xx > > thanks > > -Matt > > > _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
On 04/10/2006, at 1:55 AM, Matt wrote:> How can I make * aware of the other ext on the remote box so the > DID caller can access them like he can with the local box?On each box, define the other range: Box A: exten => _9XX,1,Dial(IAX2/BoxB/${EXTEN}) Box B: exten => _8XX,1,Dial(IAX2/BoxA/${EXTEN}) Note that I wrote this from memory so its probably not syntactically correct. I hope you get the gist though. :) cYa, Avi -- National Manager - Special Projects < Sydney / Melbourne / Canberra / Hobart / London /> 2/340 Gore Street T: +61 (0) 3 9235 5400 Fitzroy, VIC F: +61 (0) 3 9235 5444 3065 W: http://www.squiz.net ..... > > Open Source - Own It - Squiz.net ...... />
Avi Miller wrote:> > On 04/10/2006, at 1:55 AM, Matt wrote: > >> How can I make * aware of the other ext on the remote box so the DID >> caller can access them like he can with the local box? > > On each box, define the other range: > > Box A: > > exten => _9XX,1,Dial(IAX2/BoxB/${EXTEN}) > > Box B: > > exten => _8XX,1,Dial(IAX2/BoxA/${EXTEN}) >Thanks Avi but it didnt work. It still says "not a valid extention" from the indial :( -Matt
Eric "ManxPower" Wieling
2006-Oct-12 09:24 UTC
[asterisk-users] asterisk to asterisk DID extentions
Matt wrote:> Avi Miller wrote: >> >> On 04/10/2006, at 1:55 AM, Matt wrote: >> >>> How can I make * aware of the other ext on the remote box so the DID >>> caller can access them like he can with the local box? >> >> On each box, define the other range: >> >> Box A: >> >> exten => _9XX,1,Dial(IAX2/BoxB/${EXTEN}) >> >> Box B: >> >> exten => _8XX,1,Dial(IAX2/BoxA/${EXTEN}) >> > Thanks Avi but it didnt work. It still says "not a valid extention" > from the indial :(Then you have an iax.conf problem in your [BoxA] section and [BoxB] section of iax.conf.
On Fri, 2006-10-13 at 01:55 +1000, Matt wrote:> Avi Miller wrote: > > > > On 04/10/2006, at 1:55 AM, Matt wrote: > > > >> How can I make * aware of the other ext on the remote box so the DID > >> caller can access them like he can with the local box? > > > > On each box, define the other range: > > > > Box A: > > > > exten => _9XX,1,Dial(IAX2/BoxB/${EXTEN}) > > > > Box B: > > > > exten => _8XX,1,Dial(IAX2/BoxA/${EXTEN}) > > > Thanks Avi but it didnt work. It still says "not a valid extention" > from the indial :( > > -MattIs IAX working fine between the boxes? Or is this a dial-in issue (8XXXXXXX,1,Dial(IAX2/BoxA/${EXTEN:5}) ??? later, PaulH