Displaying 1 result from an estimated 1 matches for "main_serv".
Did you mean:
mainserv
2005 May 09
0
Central Asterisk Server and Asterisk VoIP Gateway
...pata.conf
switchtype = dms100
signalling = em_w
group = 1
context = inbound
channel => 1-96
What I'm trying to accomplish here is to create one huge trunk group
where ALL incoming calls will be directed to the inbound context.
On the same machine, /etc/asterisk/extensions.conf
[general]
MAIN_SERVER = IAX2/inbound:gateway@192.168.0.10
[inbound]
exten => _N.,1,Dial(${MAIN_SERVER}/${EXTEN})
exten => _N.,2,Congestion
exten => _N.,3,HangUp
[outbound]
exten => _N.,1,Dial(Zap/g1/${EXTEN})
exten => _N.,2,Congestion
exten => _N.,3,HangUp
On the main Asterisk server, I would hav...