Code Lover
2013-Jul-20 13:00 UTC
[asterisk-users] rejected because extension not found in context 'introutingB'
Dear All, I am trying to recieve call from inbound proxy then route to internal peer (localhost) and then route to outgoing sip proxy but it failing with subject error. Can any one please correct me what i am doing wrong in below config. SIP.conf [Inbound] type=peer context=introuting host=184.107.XXX.XXX disallow=all allow=all [astinside] type=peer context=introutingB host=localhost disallow=all ;allow=speex [voipprovider] type=peer host=XXX.X.XXX.159 disallow=all allow=g723:120 Extentions.config [introuting] exten => _X.,1,Dial(SIP/astinside) [introutingB] exten => s,n,Dial(SIP/voipprovider) I will appreciate for your help. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20130720/03c46e9d/attachment.htm>
J. Pavel Espinal
2013-Jul-21 00:39 UTC
[asterisk-users] rejected because extension not found in context 'introutingB'
On 07/20/2013 09:00 AM, Code Lover wrote:> [introutingB] > exten => s,n,Dial(SIP/voipprovider)Try adding a '1' priority to the inroutingB block: [introutingB] exten => s,1,Dial(SIP/voipprovider)