jmathew wrote:thank you William for your response.
Dialplan is as below.
exten => _651X.,1,AGI(
agi://127.0.0.1:4577/call_log)
exten => _651X.,2,Dial(sip/${EXTEN:3}@156,55,tToR)
exten => _651X.,3,Hangup()
thanks
I am unaware if 651X will interfere with anything, but I'd recommend at least 7 digits before the ".":
- Code: Select all
exten => _651XXXX.,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _651XXXX.,2,Dial(sip/${EXTEN:3}@156,55,tToR)
exten => _651XXXX.,3,Hangup()
However, if dialing in the US, no dot:
- Code: Select all
exten => _651NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _651NXXNXXXXXX,2,Dial(sip/${EXTEN:3}@156,55,tToR)
exten => _651NXXNXXXXXX,3,Hangup()
And many carriers require you to send the "1" so it should not be cut off (change :3 to :2 to keep the 1):
- Code: Select all
exten => _651NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _651NXXNXXXXXX,2,Dial(sip/${EXTEN:2}@156,55,tToR)
exten => _651NXXNXXXXXX,3,Hangup()
And most of our configurations have different options entirely, for example our dial 9 carrier:
- Code: Select all
exten=>_91NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten=>_91NXXNXXXXXX,n,Dial(${CARRIERNAME}/${EXTEN:1},,To)
exten=>_91NXXNXXXXXX,n,Hangup
Which requires a Globals String Entry of:
- Code: Select all
CARRIERNAME = SIP/carrier-context
Which links to the [carrier-context] in the Account Entry
I don't THINK any of these changes would block dialing or call routing. But ... this is linux and vicidial and I don't have access to the CLI during a failed attempt to try to "drill down". So I nitpick what I can see.

If none of this helps, post a single-call-test log output from the Asterisk CLI. We'll see what happens. You can also look in the autodial screen to verify the call is being generated, and the other screens to trace its progress. But the problem *should* be visible in the Asterisk CLI output. In theory.