So I have been thrown into the pit of maintaining and configuring the Asterisk server as of a week ago and things are already being difficult and over my head.
My current situation is that I have a department that wants to have all of their phones ring at the same time when somebody calls (aka, customer support). Currently I have the following line that is known to be working.
exten => 12005,1,Dial(SIP/13227&SIP/…11272&SIP/11285&SIP/11291,30,rwW)
The trouble is, we are slowly having employees working from home and need for their personal phones to ring at the same time as the extensions within the office and I have no idea on how to do this. Currently this is the template that I am using to dial any external numbers at all
exten => 11229,1,Dial(Local/(phone number)@internal||Wmorg)
My question is, is it possible to make a line like:
exten => 12005,1,Dial(SIP/13227&SIP/…11272&local/(phone number)@internal||Wmorg,30,rwW)
or is this completely crazy?
Another thought I had was to create “duplicate” priorities like such
exten => 12005,1,Dial(SIP/13227&SIP/…11272&SIP/11285&SIP/11291,30,rwW)
exten => 12005,1,Dial(Local/(phone number)@internal||Wmorg)
Thoughts? Thank you!