Issue with Installation

General and Support topics relating to ViciDialNow and GoAutoDial ISO installers

Moderators: enjay, williamconley, Op3r, Staydog, gardo, mflorell, MJCoate, mcargile, Kumba, s0lid

Issue with Installation

Postby rathin.saran » Fri Sep 09, 2011 4:30 am

Just installed GoAutoDialNow 2.1

The specs are
Vicidial SVN 2.4-309a BUILD: 110430-1642
Asterisk 1.4.39.1-vici
Dahdi 2.4.1
VtigerCRM 5.1.0
Sangoma 3.5.20
CentOS 5.6 as base

It is networking properly. When I am trying to place a call with X-Lite, it does not go through. The following entries are logged at asterisk:

[Sep 9 05:11:03] WARNING[3348] frame.c: Cannot allow unknown format 'g711'
....
....
[Sep 9 05:21:23] VERBOSE[19534] logger.c: [Sep 9 05:21:23] -- Executing [612019843496@default:1] AGI("SIP/201-0000001f", "agi://127.0.0.1:4577/call_log") in new stack
[Sep 9 05:21:23] VERBOSE[19534] logger.c: [Sep 9 05:21:23] -- AGI Script agi://127.0.0.1:4577/call_log completed, returning 0
[Sep 9 05:21:23] VERBOSE[19534] logger.c: [Sep 9 05:21:23] -- Executing [612019843496@default:2] Dial("SIP/201-0000001f", "SIP/SipD/2019843496||tToR") in new stack
[Sep 9 05:21:23] VERBOSE[19534] logger.c: [Sep 9 05:21:23] -- Called SipD/2019843496
[Sep 9 05:21:23] WARNING[19534] channel.c: No path to translate from SIP/SipD-00000020(256) to SIP/201-0000001f(4)
[Sep 9 05:21:23] VERBOSE[19534] logger.c: [Sep 9 05:21:23] == Spawn extension (default, 612019843496, 2) exited non-zero on 'SIP/201-0000001f'
[Sep 9 05:21:23] VERBOSE[19534] logger.c: [Sep 9 05:21:23] -- Executing [h@default:1] DeadAGI("SIP/201-0000001f", "agi://127.0.0.1:4577/call_log--HVcauses--PRI-----NODEBUG-----0-----CONGESTION----------") in new stack
[Sep 9 05:21:24] VERBOSE[19534] logger.c: [Sep 9 05:21:24] -- AGI Script agi://127.0.0.1:4577/call_log--HVcauses ... ---------- completed, returning 0

Is this a codec issue? If so, can the free intel g729 codec be my solution (for non-commercial purpose)?
rathin.saran
 
Posts: 10
Joined: Tue Sep 06, 2011 1:01 am

Postby okli » Fri Sep 09, 2011 5:19 am

Have a look:
http://www.voip-info.org/wiki/view/Aste ... decs+allow
http://www.voip-info.org/wiki/view/Asterisk+codecs

Replace g711 with ulaw or alaw wherever you put it, if you did.

You may also want to post your carrier settings here.
okli
 
Posts: 671
Joined: Mon Oct 01, 2007 5:09 pm

Postby rathin.saran » Fri Sep 09, 2011 6:46 am

I am sorry, but I am new to dialers. So, kindly guide me on anything I might be missing.

This is what I think is my carrier setting (please correct me if I am wrong) :

[SipE]
disallow=all
allow=g729
allow=ulaw
type=friend
username=*****
Fromuser=*****
secret=*****
host=**.**.**.***
FromDomain=**.**.**.***
dtmfmode=rfc2833


And here goes my dial plan:

exten => _5X.,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _5X.,2,Dial(${SIPE}/${EXTEN:2},,tToR)
exten => _5X.,3,Hangup

I am dialing numbers like 51[ten digit number]

I could somehow get my hands on the intel binaries for g729 / g723
and the following log messages are generated whenever I am placing calls now:

logger.c: [Sep 9 07:21:21] -- Executing [512019843496@default:1] AGI("SIP/201-0000000a", "agi://127.0.0.1:4577/call_log") in new stack
logger.c: [Sep 9 07:21:21] -- AGI Script agi://127.0.0.1:4577/call_log completed, returning 0
logger.c: [Sep 9 07:21:21] -- Executing [512019843496@default:2] Dial("SIP/201-0000000a", "SIP/SipE/2019843496||tToR") in new stack
logger.c: [Sep 9 07:21:21] -- Called SipE/2019843496
logger.c: [Sep 9 07:21:22] -- SIP/SipE-0000000b is circuit-busy
logger.c: [Sep 9 07:21:22] == Everyone is busy/congested at this time (1:0/1/0)
logger.c: [Sep 9 07:21:22] -- Executing [512019843496@default:3] Hangup("SIP/201-0000000a", "") in new stack
logger.c: [Sep 9 07:21:22] == Spawn extension (default, 512019843496, 3) exited non-zero on 'SIP/201-0000000a'
logger.c: [Sep 9 07:21:22] -- Executing [h@default:1] DeadAGI("SIP/201-0000000a", "agi://127.0.0.1:4577/call_log--HVcauses--PRI-----NODEBUG-----1-----CONGESTION----------") in new stack
logger.c: [Sep 9 07:21:22] -- AGI Script agi://127.0.0.1:4577/call_log--HVcauses ... ---------- completed, returning 0


doing "show translation" comes up with the following

g723 = 10 (gsm)
10 (ulaw)
10 (alaw)
10 (g726aa12)
10 (adpcm)
9 (slin)
11 (lpc10)
10 (g729)
- (speex)
- (ilbc)
10 (g726)
- (g722)

and

g729 = 6 (gsm)
6 (ulaw)
6 (alaw)
6 (g726aa12)
6 (adpcm)
5 (slin)
7 (lpc10)
- (g729)
- (speex)
- (ilbc)
6 (g726)
- (g722)
rathin.saran
 
Posts: 10
Joined: Tue Sep 06, 2011 1:01 am

Postby rathin.saran » Fri Sep 09, 2011 11:47 am

Thanks a lot for your reply! okli. There was a mistake from my end regarding the number that I was dialing. It has been rectified and I am up and running!


THANK YOU MATE! :D
rathin.saran
 
Posts: 10
Joined: Tue Sep 06, 2011 1:01 am


Return to ViciDialNow - GoAutoDial

Who is online

Users browsing this forum: No registered users and 47 guests