Hi, Does anyone have sample * configuration on how I can get an incoming call to ring all SIP phones (small setup, say 4 phones) at the same time. 1) I would like to pickup up any phone and the ringing should stop (of course) 2) Put on hold and pick up on a different phone set. Do I need special phone features to achieve this? E.g. would the Grandstream 100 do it? Thanks -- Costas Menico Meezon Software Corp 201-224-8111 costas@meezon.com --
<quote who="costas">> Does anyone have sample * configuration on how I can get an incoming call > to ring all SIP phones (small setup, say 4 phones) at the same time. > > 1) I would like to pickup up any phone and the ringing should stop (of > course)exten => s,1,Dial(SIP/set1&SIP/set2&SIP/set3&SIP/set4,t)> 2) Put on hold and pick up on a different phone set.Since each set is a completely seperate extension (Not sharing the same line), you must park the call, then pick up the parked call from the other extension. Or you can blind transfer the call to the other extension, but that my confuse callers, as they will get ringing again as the transfer rings the other extension.> Do I need special phone features to achieve this? E.g. would the > Grandstream 100 do it?To use the grandstream, you need the "#" for transfer feature turned on in the dial statement. Then you can use the # key to transfer the call to "park" and be able to hear the number of the parking slot the call is assigned to. -- END OF LINE
costas wrote:>Hi, > >Does anyone have sample * configuration on how I can get an incoming call to ring all SIP phones (small setup, say 4 phones) at the same time. > >1) I would like to pickup up any phone and the ringing should stop (of course) >Example.. exten => s,1,Dial(sip/123&sip/234&zap/2) Will ring three phones, two IP and one ZAP..> >2) Put on hold and pick up on a different phone set. >The right thing for this is call parking but it doesn't work to well with IP Phones..> >Do I need special phone features to achieve this? E.g. would the Grandstream 100 do it? > >Thanks > > >-- >Costas Menico >Meezon Software Corp >201-224-8111 >costas@meezon.com > >-- >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users > > >
> Does anyone have sample * configuration on how I can get an incoming call > to ring all SIP phones (small setup, say 4 phones) at the same time.extensions.conf [globals] PHONE1=SIP/3000 PHONE2=SIP/3001 [inbound-bus] exten => s,1,Dial(${PHONE1}&${PHONE2},15,t) ;two phones, add as many as you want.> 1) I would like to pickup up any phone and the ringing should stop (of course) > > 2) Put on hold and pick up on a different phone set.Use #700 to park the call, go to second phone and dial the parked exten number.> Do I need special phone features to achieve this? E.g. would the > Grandstream 100 do it?Don't know since I don't own a Grandstream. But, works fine with 7960's and Snom 200.
>> >>2) Put on hold and pick up on a different phone set. >> >The right thing for this is call parking but it doesn't work to well >with IP Phones.. >Could you clarify what doesn't work well? Is there a SIP deficiency? -- Costas Menico Meezon Software Corp 201-224-8111 costas@meezon.com --