[asterisk-users] Outbound SIP authentication with dynamic credentials

2007-08-16 Thread Yossi Ben Hagai
Hi All, I'm working on the following scenario: VoIP Gateway -- Asterisk server -- Proxy server -- PSTN | XMLRPC ___ --Bandwidth and Colocation Provided by http://www.api-digital.com--

[asterisk-users] Outbound SIP authentication with dynamic credentials

2007-08-16 Thread Yossi Ben Hagai
Hi All, I'm working on the following scenario: VoIP Gateway -- Asterisk server -- Proxy server -- PSTN | | XMLRPC Radius In this call flow a prepaid caller places a call over the VoIP gateway to the

Re: [asterisk-users] SIP accounts from MYSQL.

2007-05-27 Thread Yossi Ben Hagai
Asterisk realtime is what you are looking for. the subject is explained very clearly including configuration examples and DB schema on the following links: http://www.voip-info.org/wiki-Asterisk+RealTime http://www.asteriskdocs.org/modules/news/article.php?storyid=28 I won't go over the process

Re: [asterisk-users] Asterisk and iBasis

2007-05-19 Thread Yossi Ben Hagai
Asterisk supports it and the good news is that you don't have to do anything for it to work. On 5/19/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, We are currently trying to setup Asterisk with iBasis. One question/problem we have is that Ibasis has told us to send the INVITEs to one IP

Re: [asterisk-users] Asterisk and iBasis

2007-05-19 Thread Yossi Ben Hagai
to the INVITE IP using the Dial command and that's it? Thanks On Sat, May 19, 2007 12:29 pm, Yossi Ben Hagai [EMAIL PROTECTED] said: Asterisk supports it and the good news is that you don't have to do anything for it to work. On 5/19/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, We

Re: [asterisk-users] Need a RTP/SIP Proxy to be used as SBC (Session Border Controller)

2007-05-13 Thread Yossi Ben Hagai
Check rtpproxy from portone for media proxy and nat traversal. http://www.voip-info.org/wiki/view/Portaone+rtpproxy another option is the MediaProxy from AG projects: http://www.voip-info.org/wiki-MediaProxy Joss. On 5/11/07, Jean-Marc Salsa [EMAIL PROTECTED] wrote: Hi all, I have been using

Re: [asterisk-users] List of telemarketers??

2007-05-09 Thread Yossi Ben Hagai
Regarding (2) - you can either provide a realtime query service supporting web service interface which can be consumed using virtually any programming language and it would be very easy to build an AGI script around it. the second option would be to periodically update a flat file (csv) and

Re: [asterisk-users] Two Connected Servers Sound Quailty

2007-04-28 Thread Yossi Ben Hagai
Hi Matt, you didn't mention what type/bw of each site Internet connection, i suggest that you try to split the scenario into smaller pieces: - run long term pings between the server while you make a call and check for packet loss. - make internal calls between extensions on the same branch and

Re: [asterisk-users] Re: call dispatching - legacy application

2007-04-26 Thread Yossi Ben Hagai
Hi Adriano, I agree with Time Bandit - AGI is what you are looking for. I recently had a similar scenario where I had the check the cid of every customer calling to a support qeue and check the payment status against a windows CRM app. if the customer has an unsettled debt the call is redirected

Re: [asterisk-users] tone generation

2007-04-24 Thread Yossi Ben Hagai
Check the Milliwatt() cmd here: http://www.voip-info.org/wiki/index.php?page=Asterisk+cmd+Milliwatt It sends 1000Hz, but you can derive from it. Joss. On 4/24/07, Jerry Geis [EMAIL PROTECTED] wrote: Does asterisk have a way in the dialplan to generate tones? Say I want to play a tone 300Hz

Re: [asterisk-users] Asterisk Pix firewalls

2007-04-24 Thread Yossi Ben Hagai
I second that. the PIX has SIP fixup which allows RTP traffic to pass dynamically based on SDP information, so you don't need to create a rule for the RTP range - just allow SIP UDP 5060. On 4/25/07, Tzafrir Cohen [EMAIL PROTECTED] wrote: On Tue, Apr 24, 2007 at 11:04:53PM -0400, Lee Jenkins

Re: [asterisk-users] duration sec and billing sec in cdr

2007-04-16 Thread Yossi Ben Hagai
Looks okay to me. either the number you are testing with your VoIP provider has an automated response which answers the call at the same sec you sent the Invite request or the provider is sending False Answer Supervision...do a sip debug and check while you make the call. On 4/16/07, Adam KOSA

Re: [asterisk-users] duration sec and billing sec in cdr

2007-04-16 Thread Yossi Ben Hagai
The Playback command is auto-answering the call. you can use Playback(please_wait,noanswer) to fix it. Joss. On 4/16/07, Adam KOSA [EMAIL PROTECTED] wrote: Hi, and thanks for the suggestions! Matt wrote: Sounds like your VoIP provider is incorrectly sending you an Answer before the call

Re: [asterisk-users] Redundant * servers

2007-04-16 Thread Yossi Ben Hagai
It's possible, have the SIP clients use SRV records for server location and use asterisk ARA to store SIP peers and extension.conf on DB. if the users are not behind NAT it should work. (open)SER is much better solution for high traffic / availability setups. On 4/16/07, J. Oquendo [EMAIL

Re: [asterisk-users] queue report problem

2007-04-15 Thread Yossi Ben Hagai
Here: http://www.voip-info.org/wiki/view/Asterisk+log+queue_log On 4/15/07, Rilawich Ango [EMAIL PROTECTED] wrote: Where can I get the meaning of each field in queue_log? On 4/15/07, Darryl Dunkin [EMAIL PROTECTED] wrote: You will probably find what you are looking for here:

Re: [asterisk-users] MySQL query from extensions?

2007-04-14 Thread Yossi Ben Hagai
and populate the variables? Thanks Bart Yossi Ben Hagai wrote: That's the correct syntax: exten = s,1,Noop() exten = s,n,MYSQL(Connect connid localhost root passw0rd dax) exten = s,n,MYSQL(Query resultid ${connid} SELECT\ password\ FROM\ dnislookup\ WHERE\ dnis=${IVR-Exten}) exten = s,n,MYSQL

Re: [asterisk-users] MySQL query from extensions?

2007-04-13 Thread Yossi Ben Hagai
That's the correct syntax: exten = s,1,Noop() exten = s,n,MYSQL(Connect connid localhost root passw0rd dax) exten = s,n,MYSQL(Query resultid ${connid} SELECT\ password\ FROM\ dnislookup\ WHERE\ dnis=${IVR-Exten}) exten = s,n,MYSQL(Fetch fetchid ${resultid} password) exten = s,n,MYSQL(Clear

Re: [asterisk-users] remote SIP, no audio, or one way audio.

2007-04-09 Thread Yossi Ben Hagai
Hi Joe, The debug trace you've enclosed is a NOTIFY message sent from * for the message waiting feature - and is not related to the call. You can however tell that something is wrong since the message is being retransmitted since the server didn't receive 200 OK in reply - while it could be due

Re: [asterisk-users] Vonage fraud controls

2007-04-08 Thread Yossi Ben Hagai
And if they get you black-listed you can always signup with Verizon... On 4/8/07, Dean Collins [EMAIL PROTECTED] wrote: There's no way for them to tell if you have asterisk on the fxo port BUT they will terminate your account if you hook it up as the outbound for an office pumping call after

Re: [asterisk-users] Prompt for a PIN number to make long distance call?

2007-04-07 Thread Yossi Ben Hagai
You can set up a simple mysql table with PIN-users this makes it more extensible and you can create a simple web interface to change to pins/add users. after you have set up the table just use a simple IVR construct to prompt for the PIN, fetch it from the table and authenticate it - something