Re: [SR-Users] Dispatcher call id hash for server side invite

2017-08-10 Thread Daniel Tryba
On Wed, Aug 09, 2017 at 01:21:36PM -0400, Ryan Wagoner wrote: > How do I mark these server side invites so the call hash is known by > kamailio? Or am I thinking about this the wrong way? It is the latter, in dialog replies should be routed on headers only. In the "default" config these replies/re

[SR-Users] BUG: invalid branch

2017-08-10 Thread Yasin CANER
Hello,     After clonning git from master branch , it is installed. on run time , it gives error as below. What is mean? Thanks. 2.6.32-573.26.1.el6.x86_64 #1 SMP Wed May 4 00:57:44 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux cat /etc/r

Re: [SR-Users] BUG: invalid branch

2017-08-10 Thread Daniel-Constantin Mierla
Hello, I just pushed a patch for it in master, overall was pretty harmless, just the wrong log message for that check at the respective position -- it was happening when the reply was not matching any transaction. You can fetch latest master branch and reinstall. Cheers, Daniel On 10.08.17 10:

Re: [SR-Users] Issue in Dialplan Module

2017-08-10 Thread Logeshwaran G
Issue Resolved.. Thanks a lot For you Inputs. INSERT INTO dialplan(id, dpid, pr, match_op, match_exp, match_len, subst_exp, repl_exp, attrs) VALUES (2, "1", "2", 1, "^000[0-9]+\\$ ", 0, "^000([0-9]+)$", "", " "); Thanks & Kind Regards, Logeshwaran G On Thu, Aug 10, 2017 at 10:13 AM, Logeshwaran

[SR-Users] acc billsec

2017-08-10 Thread Aidar Kamalov
Hello, is there any way to log in cdr duration and billsec? -- Aydar A. Kamalov ___ Kamailio (SER) - Users Mailing List sr-users@lists.kamailio.org https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-users

Re: [SR-Users] acc billsec

2017-08-10 Thread ycaner
Hello, Dialog module can help you about it.It can generate CDR with billsec. http://kamailio.org/docs/modules/5.0.x/modules/dialog.html -- View this message in context: http://sip-router.1086192.n5.nabble.com/acc-billsec-tp161050p161051.html Sent from the Users mailing list archive at Nabble.c

Re: [SR-Users] acc billsec

2017-08-10 Thread Aidar Kamalov
It seems that in kamailio 5.0.x field duration is billing time. Is it? 2017-08-10 14:24 GMT+03:00 ycaner : > Hello, > Dialog module can help you about it.It can generate CDR with billsec. > > http://kamailio.org/docs/modules/5.0.x/modules/dialog.html > > > > -- > View this message in context: htt

Re: [SR-Users] Dispatcher call id hash for server side invite

2017-08-10 Thread Ryan Wagoner
Thanks for the explanation! I finally got the dispatcher working in an active / passive Kamailio cluster in front of three FreePBX servers. I was using the Asipto Kamailio and Asterisk real time guide as a starting point so it had the WITHINDLG route. I ended up modifying the TOASTERISK route to ca

Re: [SR-Users] Dispatcher call id hash for server side invite

2017-08-10 Thread Daniel Tryba
On Thu, Aug 10, 2017 at 08:51:24AM -0400, Ryan Wagoner wrote: > Thanks for the explanation! I finally got the dispatcher working in an > active / passive Kamailio cluster in front of three FreePBX servers. I was > using the Asipto Kamailio and Asterisk real time guide as a starting point > so it ha

Re: [SR-Users] Dispatcher call id hash for server side invite

2017-08-10 Thread Daniel-Constantin Mierla
You can always add a bit of caching to avoid too many sql queries and improve the performances. Just use the htable module to store in memory the value associated with authid that you fetch from database. Then you can llok first in htable, and if not found store in htable. You can set a lifetime f

[SR-Users] UAC RPC Commands problem

2017-08-10 Thread Volkan Oransoy
Hi, I use Kamailio 5.0. I try to run RPC commands for UAC module but some of them doesn’t work like documented. kamcmd uac.reg_dump kamcmd uac.reg_reload These commands work as expected. But commands with extra arguments give error. kamcmd> uac.reg_refresh 90850885 error: 400 - Invalid P

Re: [SR-Users] UAC RPC Commands problem

2017-08-10 Thread Daniel-Constantin Mierla
Hello, try with: uac.reg_refresh s:90850885 kamcmd does to auto-convert when it detects the parameter is a number. By prefixing with s: you enforce string param. Cheers, Daniel On 10.08.17 15:15, Volkan Oransoy wrote: > Hi, > > I use Kamailio 5.0. I try to run RPC commands for UAC module b

[SR-Users] RTPEngine recording

2017-08-10 Thread Alex Balashov
I have gathered that RTPEngine has recently, or perhaps some time ago, evolved a recording feature set: https://kamailio.org/docs/modules/5.0.x/modules/rtpengine.html#rtpengine.f.start_recording Does anyone have any experience using it with Kamailio? How does it work? Any gotchas or pitfalls? It

Re: [SR-Users] RTPEngine recording

2017-08-10 Thread Alberto Llamas
Hi Alex, I had the opportunity to play around with this recording and it works very well. We have it implemented on production by the way. The information about how it works, recording formats you can find in the README here (https://github.com/sipwise/rtpengine). Once you have the recording you

Re: [SR-Users] RTPEngine recording

2017-08-10 Thread Alex Balashov
On Thu, Aug 10, 2017 at 11:40:28AM -0400, Alberto Llamas wrote: > Once you have the recording you need a third-party tool to convert those > files to a wav format for instance. It depends on the codec the call is > being recorded the convert tool you have to use like ffmpeg. Thank you for your fe

Re: [SR-Users] RTPEngine recording

2017-08-10 Thread Richard Fuchs
On 10/08/17 11:40 AM, Alberto Llamas wrote: Hi Alex, I had the opportunity to play around with this recording and it works very well. We have it implemented on production by the way. The information about how it works, recording formats you can find in the README here (https://github.com/sip

Re: [SR-Users] RTPEngine recording

2017-08-10 Thread Alex Balashov
On Thu, Aug 10, 2017 at 12:22:32PM -0400, Richard Fuchs wrote: > There's actually two distinct recording methods implemented. The one you're > describing simply outputs pcap files containing the raw packets involved in > the call. The other method involves the aforementioned external recording > d

Re: [SR-Users] RTPEngine recording

2017-08-10 Thread Richard Fuchs
On 10/08/17 12:23 PM, Alex Balashov wrote: On Thu, Aug 10, 2017 at 12:22:32PM -0400, Richard Fuchs wrote: There's actually two distinct recording methods implemented. The one you're describing simply outputs pcap files containing the raw packets involved in the call. The other method involves t

Re: [SR-Users] UAC RPC Commands problem

2017-08-10 Thread Volkan Oransoy
Thank you Daniel, It worked like you describe. /Volkan > On 10 Aug 2017, at 18:10, Daniel-Constantin Mierla wrote: > > Hello, > > try with: > > uac.reg_refresh s:90850885 > > kamcmd does to auto-convert when it detects the parameter is a number. By > prefixing with s: you enforce str

[SR-Users] ClueCon Slides: Industrial Grade FreeSWITCH, Scaling, Balancing, High Availability, SIP, WebRTC

2017-08-10 Thread Giovanni Maruzzelli
*Industrial Grade FreeSWITCH Scaling, Balancing and High Availability for SIP and WebRTC* Scaling your FreeSWITCH platform to serve a growing user base is a critical challenge. We'll go through the best techniques, practices, and implementations for Voice and Video Calls, Conferencing, WebRTC, SIP

Re: [SR-Users] Dispatcher call id hash for server side invite

2017-08-10 Thread Ryan Wagoner
On Thu, Aug 10, 2017 at 9:05 AM, Daniel Tryba wrote: > On Thu, Aug 10, 2017 at 08:51:24AM -0400, Ryan Wagoner wrote: > > Thanks for the explanation! I finally got the dispatcher working in an > > active / passive Kamailio cluster in front of three FreePBX servers. I > was > > using the Asipto Kam