Martin Joseph
2006-Jan-28 01:27 UTC
[Asterisk-Users] Simple question about ringing multiple phones (extensions)?
Hey Gurus, I have a very simple asterisk setup that basically lets me share a PSTN line from one location to another. I would like to have the phones at both locations ring when the PSTN # is dialed(inbound calls from PSTN to asterisk). I tried something like: exten => 2020,2,Dial(SIP/2005,25,tr&IAX/2010,25,tr) I thought this might cause both 2005 and 2010 to ring when 2020 was dialed, but only 2005 rings? Thanks for ideas or suggestions on this. Marty
Ronald Wiplinger
2006-Jan-28 01:54 UTC
[Asterisk-Users] Simple question about ringing multiple phones (extensions)?
Martin Joseph wrote:> Hey Gurus, > > I have a very simple asterisk setup that basically lets me share a > PSTN line from one location to another. I would like to have the > phones at both locations ring when the PSTN # is dialed(inbound calls > from PSTN to asterisk). > > I tried something like: > > exten => 2020,2,Dial(SIP/2005,25,tr&IAX/2010,25,tr) > > I thought this might cause both 2005 and 2010 to ring when 2020 was > dialed, but only 2005 rings? >Below works for me: PHONE_LOCAL=${PHONE_601}&${PHONE_602}&${PHONE_603} PHONE_601=SIP/601 ; office 601 Ronald PHONE_602=SIP/602 ; office 602 Ronald PHONE_603=ZAP/1r1 ; living room 603 cordless For you this should work too: exten => 2020,2,Dial(SIP/2005&IAX/2010,25,tr) bye Ronald Wiplinger
Henk Dick
2006-Jan-28 02:09 UTC
[Asterisk-Users] Simple question about ringing multiple phones(extensions)?
Marty, Just remove the options for each technology. Dial(SIP/2005&IAX/2010,25,tr) This should do the job Henk -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Martin Joseph Sent: zaterdag 28 januari 2006 9:27 To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [Asterisk-Users] Simple question about ringing multiple phones(extensions)? Hey Gurus, I have a very simple asterisk setup that basically lets me share a PSTN line from one location to another. I would like to have the phones at both locations ring when the PSTN # is dialed(inbound calls from PSTN to asterisk). I tried something like: exten => 2020,2,Dial(SIP/2005,25,tr&IAX/2010,25,tr) I thought this might cause both 2005 and 2010 to ring when 2020 was dialed, but only 2005 rings? Thanks for ideas or suggestions on this. Marty _______________________________________________ --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
Martin Joseph
2006-Jan-28 12:40 UTC
[Asterisk-Users] Simple question about ringing multiple phones (extensions)?
On Jan 28, 2006, at 12:54 AM, Ronald Wiplinger wrote:> Martin Joseph wrote: >> <snip>I tried something like: >> >> exten => 2020,2,Dial(SIP/2005,25,tr&IAX/2010,25,tr) >> >> I thought this might cause both 2005 and 2010 to ring when 2020 was >> dialed, but only 2005 rings? >> > Below works for me: > > PHONE_LOCAL=${PHONE_601}&${PHONE_602}&${PHONE_603} > PHONE_601=SIP/601 ; office 601 Ronald > PHONE_602=SIP/602 ; office 602 Ronald > PHONE_603=ZAP/1r1 ; living room 603 cordless > > For you this should work too: > > exten => 2020,2,Dial(SIP/2005&IAX/2010,25,tr)Thanks very much for the help guys! Marty