Hopefully a fairly easy question for the group... I have a queue which should contain about 10 agents (it will be all the phones in the office). This office is remote, so I would like to add their sip phones into the queue remotely. Also, if the system ever gets reloaded or rebooted, I need those agents to remain in the queue. Question: 1) How do you remotely add agents to their respective queues and attach that to a specific sip phone? 2) How do you keep those phones in that queue even after the system reboots? Rob
Queue members can be SIP channel names, including ones that are reachable at remote destination URIs, if that is what you re asking. e.g. member => SIP/1111 at some_ip Queue members are made persistent in AstDB with the 'persistentmembers = yes' option and survive reboots. On Tue, 29 Jan 2008, Rob Schall wrote:> Hopefully a fairly easy question for the group... > > I have a queue which should contain about 10 agents (it will be all the > phones in the office). This office is remote, so I would like to add > their sip phones into the queue remotely. Also, if the system ever gets > reloaded or rebooted, I need those agents to remain in the queue. > > Question: > 1) How do you remotely add agents to their respective queues and attach > that to a specific sip phone? > 2) How do you keep those phones in that queue even after the system reboots? > > Rob > > _______________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >-- Alex Balashov Evariste Systems Web : http://www.evaristesys.com/ Tel : +1-678-954-0670 Direct : +1-678-954-0671
Rob Schall wrote:> Hopefully a fairly easy question for the group... > > I have a queue which should contain about 10 agents (it will be all the > phones in the office). This office is remote, so I would like to add > their sip phones into the queue remotely. Also, if the system ever gets > reloaded or rebooted, I need those agents to remain in the queue. > > Question: > 1) How do you remotely add agents to their respective queues and attach > that to a specific sip phone?You can add queue members remotely from the manager by using the QueueAdd manager action. If you can open an Asterisk CLI remotely, then you can use the "queue add member" command ("add queue member" if you're using 1.2) from there as well.> 2) How do you keep those phones in that queue even after the system reboots?set persistentmembers=yes in queues.conf> RobMark Michelson