Sorry for blasting another desperate note but I am trying! I have changed the username and password and IP to protect my system. But, the logic is unchanged. It is does not work! I simply want to dial the telephone number provided to me for my DID which corresponds with my SIP info. And, then it should connect and hit the "incoming" context and simply dial the 617 number. I am close but no cigar. Now I get a fast busy tone only. What is missing or what is needed please? extensions.conf [globals] ; ; [incoming] ; ;exten=> s,1,Goto(125010155_incoming) ; ;[125010155_incoming] exten => s,1,Answer exten => s,n,Dial(SIP/16175551212) sip.conf [general] ;register => 125010155:funnytiger at sip3.voipvoip.com/125010155 register => 125010155 at sip3.voipvoip.com:funnytiger at 69.90.209.11 ; [incoming] username=125010155 type=peer secret=funnytiger nat=auto insecure=invite,port host=69.90.209.11 fromdomain=69.90.209.11 dtmfmode=rfc2833 context=incoming allow=g729 allow=ulaw allow=alaw allow=ilbc srvlookup=yes -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20120707/c9fff446/attachment.htm>
Thomas Perron ????? 07.07.2012 21:48:> exten =>s,n,Dial(SIP/16175551212)> > sip.conf > [general] > ;register =>125010155:funnytiger at sip3.voipvoip.com/125010155 [2]> register =>125010155 at sip3.voipvoip.com:funnytiger at 69.90.209.11> ; > [incoming] >username=125010155 I dont know what you are trying to do, but: 1) Peer doesn't have to be the same name as context. Change [incoming] in sip.conf to something like [voipvip] - it will be easier later when you have more peers. 2) What is 16175551212 ? You don't have such peer in sip.conf. If it's a number, Dial should be SIP/peer/number, for example SIP/voipvip/617 or whatever you want to dial 3) If you've posted your real password here - I strongly suggest you change it right now -- With Best Regards Mikhail Lischuk Links: ------ [1] http://125010155:funnytiger at sip3.voipvoip.com/125010155 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20120707/1e2bc4ee/attachment.htm>
On Sat, Jul 7, 2012 at 1:48 PM, Thomas Perron <thomas.perron at gmail.com>wrote:> extensions.conf > [globals] > > ; > ; > [incoming] > ; > ;exten=> s,1,Goto(125010155_incoming) > ; > ;[125010155_incoming] > exten => s,1,Answer > exten => s,n,Dial(SIP/16175551212) > > > sip.conf > [general] > ;register => 125010155:funnytiger at sip3.voipvoip.com/125010155 > register => 125010155 at sip3.voipvoip.com:funnytiger at 69.90.209.11 > ; > [incoming] > username=125010155 > type=peer > secret=funnytiger > nat=auto > insecure=invite,port > host=69.90.209.11 > fromdomain=69.90.209.11 > dtmfmode=rfc2833 > context=incoming > allow=g729 > allow=ulaw > allow=alaw > allow=ilbc > srvlookup=yes >If these are actual copy / pastes from your extensions.conf and sip.conf files, with just passwords changed, your issue probably comes from your over abundant use of semi-colons (";") at the start of several lines. The semi-colon indicates a comment line to the asterisk parser, and thus isn't parsed. Your only exten => line in your [incoming] context is commented out, as is the name of your [125010155_incoming] context, and your first register statement. Set the CLI verbosity to 6 (core set verbose 6) and then try to dial in again, and paste the failed output as a response to this email, and we can diagnose from there. -- Thanks, --Warren Selby, dCAP http://www.SelbyTech.com <http://www.selbytech.com> -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20120707/994da865/attachment.htm>