[SR-Users] Billing

2010-12-20 Thread Deon Vermeulen
Good Day list Is there someone that could guide me to installation guide for jBilling or recommend any other Free OpenSource Billing? Features Looking for: - Wholesale - Rating - Pre-Paid/Post-Paid Thank you very much Regards Deon ___ SIP Express Ro

[SR-Users] kamailio restart and TLS ( relay_to_tls() )

2010-12-20 Thread Dominguez Jover, Ricardo
Hi everybody, Since I implemented Kamailio 3.1 with TLS I've found a strange behavior. That is, with some clients (Bria and Blink) registered, if I restart Kamailio, then when the clients re-register the strange behaivour happens. This behavior consist on receiving calls, it took about 15 se

Re: [SR-Users] SIP UA's behind same NAT

2010-12-20 Thread Daniel-Constantin Mierla
Destination uri (for $dd) is set after lookup("location"). If you use default config, route[NAT] is executed before. Cheers, Daniel On 12/20/10 2:48 PM, Deon Vermeulen wrote: Thanks again. So then my config should look something like: # Caller NAT detection route route[NAT] { #!ifdef WITH_N

Re: [SR-Users] SBC on kamailio

2010-12-20 Thread Fred Posner
On Mon, 2010-12-20 at 17:26 +0100, Henry Dogger wrote: > Thanks, but we have a different setup... > We have clients (phones) connecting from the internet, and will register and > call to externalIP:5060. > Is a setup like this possible as well? > > Henry > > -Original Message- > On Mon,

Re: [SR-Users] SBC on kamailio

2010-12-20 Thread Henry Dogger
Thanks, but we have a different setup... We have clients (phones) connecting from the internet, and will register and call to externalIP:5060. Is a setup like this possible as well? Henry -Original Message- From: Fred Posner [mailto:f...@teamforrest.com] Sent: maandag 20 december 2010 1

Re: [SR-Users] SBC on kamailio

2010-12-20 Thread Fred Posner
On Mon, 2010-12-20 at 17:00 +0100, Henry Dogger wrote: > Hi all, > > We have a kamailio installation for our voip system and would like to > add a SBC. > > We found the freeswitch possibility: > http://wiki.freeswitch.org/wiki/SBC_Setup > > But in this case, 302 Redirect SIP is used, we would l

[SR-Users] SBC on kamailio

2010-12-20 Thread Henry Dogger
Hi all, We have a kamailio installation for our voip system and would like to add a SBC. We found the freeswitch possibility: http://wiki.freeswitch.org/wiki/SBC_Setup But in this case, 302 Redirect SIP is used, we would like the SBC to act as a pass-through controller, just to be a gateway f

Re: [SR-Users] CRASH on qm_free for simultaneous calls (V3.1.0)

2010-12-20 Thread Jijo
Hi Daniel, Some more detail to this issue.. if we call t_release after failure route with append branch, a double free causes the crash because the transaction will be free again after the t_relay of ACK message. This happens because we compile the code with DBG_QM_MALLOC. wt_timer keeps the tra

Re: [SR-Users] avp_db_query returning wrong data

2010-12-20 Thread Jijo
Hi All, I applied the following patch which fixed the issue. http://sip-router.org/tracker/index.php?do=details&task_id=97 Are we going to merge this patch to Kamailio 3.1.x? Thanks Jijo On Wed, Nov 24, 2010 at 9:35 AM, Jijo wrote: > I'm using kamailio 3.1.0, so this is already in place.. Is

Re: [SR-Users] SIP UA's behind same NAT

2010-12-20 Thread Deon Vermeulen
Thanks again. So then my config should look something like: # Caller NAT detection route route[NAT] { #!ifdef WITH_NAT force_rport(); if (nat_uac_test("19")) { if (method=="REGISTER") { fix_nated_register(); } else {

Re: [SR-Users] SIP UA's behind same NAT

2010-12-20 Thread Daniel-Constantin Mierla
Hello, that's a hint for a very old version, where cfg file language didn't had support for variables and avpops module was used for comparison (as you could see, $dd is stored in an avp and them compared with src ip -- no longer need for such workaround, just do if($si==$dd) ...). You have

Re: [SR-Users] SIP UA's behind same NAT

2010-12-20 Thread Deon Vermeulen
Hi Daniel Thank you so much for your feedback. I came upon the below post, but I'm unable to find the example Norman posted. http://www.mail-archive.com/users@openser.org/msg01932.html In short the end solution is: # If both clients are behind nat we can check to see if they are behind the s

Re: [SR-Users] SIP UA's behind same NAT

2010-12-20 Thread Daniel-Constantin Mierla
Hello, On 12/20/10 11:25 AM, Deon Vermeulen wrote: Hi List Can someone please help me? I need to implement PBX Services for a customer that has 10 IP Phones at his Main site and then 20 IP Phones located over 5 Branches. My goal is to have RTP go end to end and not proxied. I had a look at

[SR-Users] SIP UA's behind same NAT

2010-12-20 Thread Deon Vermeulen
Hi List Can someone please help me? I need to implement PBX Services for a customer that has 10 IP Phones at his Main site and then 20 IP Phones located over 5 Branches. My goal is to have RTP go end to end and not proxied. I had a look at the below link and tried it, but with no luck. http:

[SR-Users] new: pkg monitoring and troubleshooting enhancements

2010-12-20 Thread Daniel-Constantin Mierla
Hello, I have committed some code to allow easier troubleshooting and monitoring of PKG usage per process. One new functions are exported by cfgutils module: - pkg_summary() - can be used to dump summary of PKG usage Btw, there was also added shm_summary() that dumps the summary of SHM usage.