Motty Cruz
2015-Jul-07 16:09 UTC
[asterisk-users] Asterisk pin code for out-going international calls (safeguard against fraud)
Hello, I used this guide, it worked for me: http://www.binaryheartbeat.net/2014/03/asterisk-pin-based-dialing.html Thanks, On 07/06/2015 04:54 PM, John Kiniston wrote:> The Authenticate application will do this for you. > > https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Application_Authenticate > > You can either give it a single PIN to use for all calls, Authenticate > using a value in the Asterisk Database, Or use a plain text file for > the PIN's > > > > > On Mon, Jul 6, 2015 at 2:43 PM, Motty Cruz <motty.cruz at gmail.com > <mailto:motty.cruz at gmail.com>> wrote: > > Hello All, > > I will like to configure Asterisk to use PIN Code for all outgoing > international calls. > > Also, any suggestions as to when should I prompt users for code > prior to dialing the number or after dialing the number? > > can someone provide with a example on how to accomplish this goal? > I am a bit confuse by this : > http://forums.digium.com/viewtopic.php?p=130936&sid=707f657f7a61dfed55e4922304925091 > > Thanks for your help. > > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > New to Asterisk? Join us for a live introductory webinar every Thurs: > http://www.asterisk.org/hello > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > > > > > -- > A human being should be able to change a diaper, plan an invasion, > butcher a hog, conn a ship, design a building, write a sonnet, balance > accounts, build a wall, set a bone, comfort the dying, take orders, > give orders, cooperate, act alone, solve equations, analyze a new > problem, pitch manure, program a computer, cook a tasty meal, fight > efficiently, die gallantly. Specialization is for insects. > ---Heinlein > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20150707/877d494f/attachment.html>
Motty Cruz
2015-Jul-07 19:22 UTC
[asterisk-users] Asterisk pin code for out-going international calls (safeguard against fraud)
Here is what i have,
exten => _011XXXXXXXXX,1,Set(CALLERID(number)=factory2)
exten => _011XXXXXXXXX,2,Authenticate(/home/asterisk/passwds.conf,m,3)
exten => _011XXXXXXXXX,3,NoOp(user has been authenticated)
exten => _011XXXXXXXXX,n,Dial(SIP/VoIPSP1/${EXTEN:1},80)
exten => _011XXXXXXXXX,n,HangUp()
I would like to add background music if authentication failed, then
after 6 minutes hangup
any ideas, suggestions?
On 07/07/2015 09:09 AM, Motty Cruz wrote:> Hello,
> I used this guide, it worked for me:
> http://www.binaryheartbeat.net/2014/03/asterisk-pin-based-dialing.html
>
> Thanks,
>
> On 07/06/2015 04:54 PM, John Kiniston wrote:
>> The Authenticate application will do this for you.
>>
>>
https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Application_Authenticate
>>
>> You can either give it a single PIN to use for all calls,
>> Authenticate using a value in the Asterisk Database, Or use a plain
>> text file for the PIN's
>>
>>
>>
>>
>> On Mon, Jul 6, 2015 at 2:43 PM, Motty Cruz <motty.cruz at gmail.com
>> <mailto:motty.cruz at gmail.com>> wrote:
>>
>> Hello All,
>>
>> I will like to configure Asterisk to use PIN Code for all
>> outgoing international calls.
>>
>> Also, any suggestions as to when should I prompt users for code
>> prior to dialing the number or after dialing the number?
>>
>> can someone provide with a example on how to accomplish this
>> goal? I am a bit confuse by this :
>>
http://forums.digium.com/viewtopic.php?p=130936&sid=707f657f7a61dfed55e4922304925091
>>
>> Thanks for your help.
>>
>>
>> --
>>
_____________________________________________________________________
>> -- Bandwidth and Colocation Provided by http://www.api-digital.com
--
>> New to Asterisk? Join us for a live introductory webinar every
Thurs:
>> http://www.asterisk.org/hello
>>
>> asterisk-users mailing list
>> To UNSUBSCRIBE or update options visit:
>> http://lists.digium.com/mailman/listinfo/asterisk-users
>>
>>
>>
>>
>> --
>> A human being should be able to change a diaper, plan an invasion,
>> butcher a hog, conn a ship, design a building, write a sonnet,
>> balance accounts, build a wall, set a bone, comfort the dying, take
>> orders, give orders, cooperate, act alone, solve equations, analyze a
>> new problem, pitch manure, program a computer, cook a tasty meal,
>> fight efficiently, die gallantly. Specialization is for insects.
>> ---Heinlein
>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://lists.digium.com/pipermail/asterisk-users/attachments/20150707/fe69b96c/attachment.html>
John Kiniston
2015-Jul-07 19:36 UTC
[asterisk-users] Asterisk pin code for out-going international calls (safeguard against fraud)
I don't see that the Authenticate application has return values for failure cases or returns call control on a failure case. Sorry I don't think you will be able to do what you want with it. On Tue, Jul 7, 2015 at 12:22 PM, Motty Cruz <motty.cruz at gmail.com> wrote:> Here is what i have, > exten => _011XXXXXXXXX,1,Set(CALLERID(number)=factory2) > exten => _011XXXXXXXXX,2,Authenticate(/home/asterisk/passwds.conf,m,3) > exten => _011XXXXXXXXX,3,NoOp(user has been authenticated) > exten => _011XXXXXXXXX,n,Dial(SIP/VoIPSP1/${EXTEN:1},80) > exten => _011XXXXXXXXX,n,HangUp() > > I would like to add background music if authentication failed, then after > 6 minutes hangup > > any ideas, suggestions? >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20150707/7a643fed/attachment.html>