Frederico Madeira
2007-Apr-26 09:18 UTC
[asterisk-users] Two devices registrating same extension
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Esta =?ISO-8859-1?Q?=E9?= uma parte de mensagem assinada digitalmente Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20070426/aab9f324/attachment.pgp
Dave Miller
2007-Apr-26 09:48 UTC
[asterisk-users] Two devices registrating same extension
Frederico Madeira wrote on 4/26/07 12:18 PM:> Hi guys, > > Is it possible to asterisk manage multiple devices registration with > same extension ? > When asterisk receive a call for that extension, it send call to all > devices registered with that extension, and rtp go to first one that > answer the call.Sure. They need separate userids in your sip/iax/zap/whatever.conf so asterisk knows that they're two separate devices. Then in your dialplan for that extension just tell it to ring both (with an & between them). Dial(SIP/device1&SIP/device2,15) -- Dave Miller http://www.justdave.net/ System Administrator, Mozilla Corporation http://www.mozilla.com/ Project Leader, Bugzilla Bug Tracking System http://www.bugzilla.org/
Philipp Kempgen
2007-Apr-26 09:54 UTC
[asterisk-users] Two devices registrating same extension
Frederico Madeira wrote:> Is it possible to asterisk manage multiple devices registration with > same extension ? > When asterisk receive a call for that extension, it send call to all > devices registered with that extension, and rtp go to first one that > answer the call.Not really but I think what you are looking for is just something like exten => 10,1,Dial(SIP/15&SIP/16&SIP/17) Or you could put them in a queue with strategy=ringall. Regards, Philipp -- amooma GmbH - Bachstr. 126 - 56566 Neuwied - http://www.amooma.de Let's use IT to solve problems and not to create new ones. Asterisk? -> http://www.das-asterisk-buch.de Gesch?ftsf?hrer: Stefan Wintermeyer Handelsregister: Neuwied B 14998
Dave Miller
2007-Apr-26 10:50 UTC
[asterisk-users] Two devices registrating same extension
Philipp Kempgen wrote on 4/26/07 12:53 PM:> Frederico Madeira wrote: > >> Is it possible to asterisk manage multiple devices registration with >> same extension ? >> When asterisk receive a call for that extension, it send call to all >> devices registered with that extension, and rtp go to first one that >> answer the call. > > Not really but I think what you are looking for is just > something like > exten => 10,1,Dial(SIP/15&SIP/16&SIP/17) > > Or you could put them in a queue with strategy=ringall.Might be worth pointing out that the sip device name is not an extension number. A lot of folks (particularly the web-based config editors) seem to do that by default, and it confuses people into thinking the device names are the extension number. You could just as easily make them SIP/george or SIP/harry. We started out with one of those web-based systems that named them all with the extension number, so when we started needing additional devices for the same extension (like softphones) we just started tacking suffixes on them. SIP/204 and SIP/204soft for example. -- Dave Miller http://www.justdave.net/ System Administrator, Mozilla Corporation http://www.mozilla.com/ Project Leader, Bugzilla Bug Tracking System http://www.bugzilla.org/