Page 1 of 1

Dialplan Entry & AGI

PostPosted: Thu Aug 12, 2021 8:32 am
by Zaraab
I would like to know what is the path to the agi script which is pointed in the dialplan entry as below as *call_log* =>
exten => _91999NXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _91999NXXXXXX,2,Dial(${TESTSIPTRUNK}/${EXTEN:2},,To)
exten => _91999NXXXXXX,3,Hangup

Also, does this default/example SIP carrier dialplan for any sip provider in general? or do i need to change it totally/partially according to them and what should be the changes if I shall use this carrier as both for the inbound and outbound?

Thanks!

Re: Dialplan Entry & AGI

PostPosted: Thu Aug 12, 2021 10:33 pm
by carpenox
its to add the call to the call log

Re: Dialplan Entry & AGI

PostPosted: Fri Aug 13, 2021 4:31 am
by Zaraab
carpenox wrote:its to add the call to the call log


where is that AGI script residing nox? whats the directory and folder to those scripts? i have searched /lib/var/asterisk/agi-bin but its not there.

and what about the dialplan?

Re: Dialplan Entry & AGI

PostPosted: Fri Aug 13, 2021 7:16 am
by mflorell
"agi://127.0.0.1:4577/call_log" is a FastAGI server that is running on each dialer, the script that runs it is "FastAGI_log.pl".

Re: Dialplan Entry & AGI

PostPosted: Tue Aug 17, 2021 5:48 pm
by Zaraab
mflorell wrote:"agi://127.0.0.1:4577/call_log" is a FastAGI server that is running on each dialer, the script that runs it is "FastAGI_log.pl".


Thank you so much matt!