Displaying 1 result from an estimated 1 matches for "bsip".
Did you mean:
bsi
2005 May 09
0
Central Asterisk Server and Asterisk VoIP Gateway
...> _N.,2,Congestion
exten => _N.,3,HangUp
On the main Asterisk server, I would have in /etc/asterisk/
extensions.conf:
[general]
GATEWAY = IAX2/outbound:server@192.168.0.20
[inbound]
exten => 1234,1,Dial(SIP/100,20,t)
exten => 1234,2,VoiceMail(uSIP/100)
exten => 1234,102,VoiceMail(bSIP/100)
exten => _N.,1,Dial(SIP/500,20,t)
exten => _N.,2,VoiceMail(uSIP/500)
exten => _N.,102,VoiceMail(bSIP/100)
[outbound]
exten => _N.,1,Dial(${GATEWAY}/${EXTEN})
exten => _N.,2,Congestion
exten => _N.,3,HangUp
Basically, what I'm trying to accomplish is that the gateway se...