Javier Rodriguez
2006-Jun-01 07:04 UTC
[Asterisk-Users] How to redirect an incoming call to an external phone numer
Hi, I would like to know if it is possible to redirect an incoming call to an external phone number. Can this be done easily? Thanks in advance, Javier
William Piper
2006-Jun-01 07:30 UTC
[Asterisk-Users] How to redirect an incoming call to an external phone numer
sure, exten => 1234567890,1,dial,SIP/9876543210@carrier Obviously change SIP for Zap, or IAX if you are using those. When someone calls 1234567890, the pstn phone 9876543210 will ring. bp On 6/1/06, Javier Rodriguez <javier.rodriguez@genaker.net> wrote:> > Hi, > > I would like to know if it is possible to redirect an incoming call to > an external phone number. Can this be done easily? > > Thanks in advance, > Javier > _______________________________________________ > --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 >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060601/b2a4da1a/attachment.htm
Infobox Peru
2006-Jun-01 07:32 UTC
[Asterisk-Users] How to redirect an incoming call to an external phone numer
Of course... you only need to Dial to other port FXO connected to PSTN and passing the number as extension: [redirection] ; your inconming-calls context exten=>s,1,Dial(Zap/${OTHER_FXO}/${EXTERNAL_NUMBER}) exten=>s,2,Hangup 2006/6/1, Javier Rodriguez <javier.rodriguez@genaker.net>:> > Hi, > > I would like to know if it is possible to redirect an incoming call to > an external phone number. Can this be done easily? > > Thanks in advance, > Javier > _______________________________________________ > --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 >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060601/14f8712e/attachment.htm
Andrei (MPI)
2006-Jun-01 09:28 UTC
[Asterisk-Users] How to redirect an incoming call to an external phone numer
Hi If you have conference or 2-way calling (or whatever is that called by telco), look for Flash application. Basically, you would need to flash the line on incoming call, dial new external number with DTMF and hangup. It will redirect the call: exten => 52,1,Wait(1) exten => 52,2,Flash exten => 52,3,Wait(1) exten => 52,4,SendDTMF(15551112222) exten => 52,5,Wait(5) exten => 52,6,Flash exten => 52,7,Wait(5) exten => 52,8,Hangup Andrei Javier Rodriguez wrote:> Hi, > > I would like to know if it is possible to redirect an incoming call to > an external phone number. Can this be done easily? > > Thanks in advance, > Javier > _______________________________________________ > --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 > > >