[Asterisk-Users] Cisco 7940 Phones as paging system?

Vic Cross vicc at veejoe.com.au
Sat May 8 07:11:17 MST 2004


On Fri, 7 May 2004, Ian A. Underwood wrote:

> Joe Antkowiak wrote:
> 
> > exten => 5101,1,Dial(SIP/5101,10,tA(intercom-tone))
> > exten => 5101,2,Congestion
> 
> That's not too bad, but how do you page a group of phones...like a real 
> intercom?  That's what I'm dying to know!

in extensions.conf:

[globals]
INTERCOMLINES=SIP/Alice6&SIP/Bob6&SIP/Chuck6&...

Then the extension is as per Joe's example, but replacing SIP/5101 with 
${INTERCOMLINES}.

Extending this, you could set up various intercom numbers for different
parts of the office...

[globals]
SALESINTERCOM=SIP/Sales1-6&SIP/Sales2-6...
MKTGINTERCOM=SIP/Marketing1-6...
...

[yourcontext]
exten => 5101,1,Dial(${SALESINTERCOM},10,tA(tone))
exten => 5102,1,Dial(${MKTGINTERCOM},10,tA(tone))
...
exten => 5110,1,Dial(${SALESINTERCOM}&${MKTGINTERCOM}&${...},10,tA(tone))


Cheers,
Vic Cross



More information about the asterisk-users mailing list