Re: [asterisk-users] USB dahdi fxo ?

2019-12-13 Thread Greg Troxel
sean darcy  writes:

> I'm moving asterisk to a laptop, so can't use the dahdi board. Is
> there any supported USB dahdi device ? I see the Sangoma USBfxo
> device, but the dahdi driver no longer supports it. Anything else ?

There is also the ObiHai OBi202 with an OBiLine, which provides an FXO
port remoted over SIP.  (I am not sure if this is discontinued.)

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] USB dahdi fxo ?

2019-12-13 Thread Steve Edwards

On Fri, 13 Dec 2019, sean darcy wrote:

I'm moving asterisk to a laptop, so can't use the dahdi board. Is there any 
supported USB dahdi device ? I see the Sangoma USBfxo device, but the dahdi 
driver no longer supports it. Anything else ?


How about something like the ancient Ethernet based Sipura 3000?

--
Thanks in advance,
-
Steve Edwards   sedwa...@sedwards.com  Voice: +1-760-468-3867 PST
https://www.linkedin.com/in/steve-edwards-4244281

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
 https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users

[asterisk-users] USB dahdi fxo ?

2019-12-13 Thread sean darcy
I'm moving asterisk to a laptop, so can't use the dahdi board. Is there 
any supported USB dahdi device ? I see the Sangoma USBfxo device, but 
the dahdi driver no longer supports it. Anything else ?


sean


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
 https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] Block Spam Calls

2019-12-13 Thread Doug Lytle

On 12/13/19 11:48 AM, Julian Beach wrote:

Hello Doug,

Friday, December 13, 2019, 11:03:37 AM, you wrote:


This is exactly what I do - “press 1 for a human”
Works great

I do this as well, but I also do a database lookup to see if the number
is on our speeddial list and if so, pass the call directly on without
the IVR prompts.



For those that would like to see my code:

exten => 517xxx,1,Answer()
    same => n,Gosub(check_blacklist,s,1)
    same => n,Gosub(get_callerid,s,1)
    same => n,Gosub(check_for_direct,s,1)
    same => n,Set(CHANNEL(musicclass)=music)
    same => n,Gosub(extension_timeouts,s,1)
    same => n,Dial(SIP/3501,${timeout.timeout},TtKk)
    same => n,NoOP(Dial Status: ${DIALSTATUS})
    same => n,NoOP(Hangup Cause: ${HANGUPCAUSE})
    same => n,Gosub(s-${DIALSTATUS},s,1)

[check_for_direct]

;**
;* Check if there is a match of the inbound call to the speed dial list
;* If not, make then go through the IVR menu
;***

exten => 
s,1,Set(ARRAY(speed.phone,speed.name)=${ODBC_MENU_DIRECT(drdos,${CALLERID(number)})})


;
;* If the contents of speed.phone is blank, assume that it
;* is not programmed and force the call to use the IVR to
;* prove they are not an automated call.
;

 same => n,GotoIf($["${speed.phone}" != "" ]?3:ivr_menu,s,1)
 same => n,NoOP(${speed.name} is on the approved list)
 same => n,Return()
 same => n,Hangup()



-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] Block Spam Calls

2019-12-13 Thread Jeff LaCoursiere
Mind posting your dialplan code?  I was thinking the same thing - very 
much like an old spam control program I used to use whose name now 
escapes me.  First time senders would have to respond to an auto-reply, 
then were added to a whitelist.


This would be a great FreeBSD module...

Cheers,

*Jeff LaCoursiere*
STRATUSTALK, INC. / CTO

Phone:  *+1 703.496.4990 x108*
Mobile: *+1 815.546.6599*
Email:  *j...@stratustalk.com* 
Website:*https://www.stratustalk.com*
Address:*One Freedom Square
13th Floor
Reston, VA 20190*

 
 



On 12/13/19 10:48 AM, Julian Beach wrote:

Hello Doug,

Friday, December 13, 2019, 11:03:37 AM, you wrote:


This is exactly what I do - “press 1 for a human”
Works great

I do this as well, but I also do a database lookup to see if the number
is on our speeddial list and if so, pass the call directly on without
the IVR prompts.

I do something similar for calls without caller ID, but I was still
getting robocalls with spoofed caller ID. I have now changed the dialplan
slightly so that the first time people call they are asked to dial 1.
After the first call, they are added to a known caller list and get
straight through, and any robocalls at that point are blacklisted
manually. I have found that most robocallers spoof the Caller ID so
rarely call from the same number twice. It means that legitimate
callers who cannot dial 1 just have to dial again to get through to
the phones - there is a recorded message telling them to dial 1 or
call back. I haven't had a robocall since!

The hardest thing about this was extracting all the numbers of
previous callers from the CDR and adding it to the Previous_Callers
AstDB for the lookup. I didn't want to make existing callers go through
the initial learning process.

<>-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] Block Spam Calls

2019-12-13 Thread Julian Beach
Hello Doug,

Friday, December 13, 2019, 11:03:37 AM, you wrote:

>> This is exactly what I do - “press 1 for a human”
>> Works great

> I do this as well, but I also do a database lookup to see if the number
> is on our speeddial list and if so, pass the call directly on without 
> the IVR prompts.

I do something similar for calls without caller ID, but I was still
getting robocalls with spoofed caller ID. I have now changed the dialplan
slightly so that the first time people call they are asked to dial 1.
After the first call, they are added to a known caller list and get
straight through, and any robocalls at that point are blacklisted
manually. I have found that most robocallers spoof the Caller ID so
rarely call from the same number twice. It means that legitimate
callers who cannot dial 1 just have to dial again to get through to
the phones - there is a recorded message telling them to dial 1 or
call back. I haven't had a robocall since!

The hardest thing about this was extracting all the numbers of
previous callers from the CDR and adding it to the Previous_Callers
AstDB for the lookup. I didn't want to make existing callers go through
the initial learning process.

-- 
Best regards,
 Julianmailto:jb_s...@trink.co.uk


-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] Block Spam Calls

2019-12-13 Thread Doug Lytle

On 12/12/19 6:55 PM, Adam Goldberg wrote:

This is exactly what I do - “press 1 for a human”
Works great


I do this as well, but I also do a database lookup to see if the number 
is on our speeddial list and if so, pass the call directly on without 
the IVR prompts.


Doug


-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Check out the new Asterisk community forum at: https://community.asterisk.org/

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users