Hi,
I would like to register with my account at two different location i.e Home and office so when the phone rings i can answer my call when I am at home or in the office.
Currently one I try to logon at two location it makes one of the phone to disconnect from Asterisk.
Regards
set your dialplan to dial multiple devices:
exten => s,1,Dial(SIP/101&SIP/102&SIP/103)
that way you still can direct dial between home and work as well - if you had multiple devices registered under one account, you would not be able to dial between them, this way you can.
Hi,
Thanks for your reply. I don’t want to create an another extension I want phone to ring on both location whoever picks the call first they answer the phone.
Regards
[quote=“whoiswes”]set your dialplan to dial multiple devices:
exten => s,1,Dial(SIP/101&SIP/102&SIP/103)
that way you still can direct dial between home and work as well - if you had multiple devices registered under one account, you would not be able to dial between them, this way you can.[/quote]
and what i just posted for you does EXACTLY that.
you are not understanding that a DEVICE and EXTENSION are two different things.
you are going to have one EXTENSION that rings multiple DEVICES. the code snippet i posted will do exactly that. the extension can be whatever you want it to be, and when that extension is dialed, it will ring as many devices as you have attached to that extension.
now, if you still want to have one device register under the same parameters, you will find that your original problem is still occurring - this is by design, as you CANNOT have two concurrently registered devices with the same login parameters.
Hi,
Thank you for clarification. I remember somebody doing that and I have realised they were using SER+Asterisk and I believe in SER you can regsiter two devices with same account.
Regards