This is my probleme. I have a box (vicidial 2.2.1-237 BUILD 100510-2015) running vicidialnow which is connect through a SIP trunk to an asterisk Box (Asterisk 1.4.44).
My Asterisk box act like a gatway as it has a TE110P PRI Card attached. my goal is to transfert inbound call coming into the aster box to vicidial so that agent could process them.
What i've done is to configure aster and the card (It works well), the telco send the 4 last digits of the number and i route this numbers to vici. i tired first with one of my phone connected to vici (extension 100) it works but when i try to send call to trunkinbound it just fails. I followed the manager manual to set up the inbound campaign. this is my trunkinbound context
- Code: Select all
[trunkinbound]
exten => _X.,1,AGI(agi-DID_route.agi)
exten => s,1,Answer
exten => s,n,Goto(trunkinbound,_X.,1)
exten => h,1,DeadAGI(agi://127.0.0.1:4577/call_log--HVcauses--PRI---NODEBUG-----${HANGUPCAUSE}-----${DIALSTATUS}-----${DIALEDTIME}-----${ANSWEREDTIME}
hereafter the context from asterisk box which send the call to Vici
- Code: Select all
[marnis]
exten => 2376,1,Dial(SIP/T1GW|2376)
exten => 2376,2, Hangup
What do you think about this?
Thanks in advance