[SR-Users] dedicated bearer - Kamailio settings

2019-09-13 Thread Jack R
Hi, We have installed Kamailio as IMS setup pcscf icscf scscf - 3 instances running on Ubuntu. I have done the attached (image) settings to create dedicated bearer in nextepc as advised by this link: https://github.com/open5gs/nextepc/issues/180 Do I need to do some setting in Kamailio server

[SR-Users] Info: initialization of libssl 1.1.+ with PTHREAD_PROCESS_SHARED attribute for pthread mutex and rwlock

2019-09-13 Thread Daniel-Constantin Mierla
Hello, after couple of months waiting for feedback about the workaround with the preloaded shared library to set the PTHREAD_PROCESS_SHARED attribute for pthread mutex/rwlock in order to avoid deadlocks and as it seems to be the solution, I just pushed a few commits to move that code in the core

Re: [SR-Users] Info: initialization of libssl 1.1.+ with PTHREAD_PROCESS_SHARED attribute for pthread mutex and rwlock

2019-09-13 Thread Julien Klingenmeyer
Hi Daniel, Glad to hear you integrated this workaround into the master branch! We compiled it for testing and for now it seems to be OK. We do not notice any issue regarding it. We will let you know if so. Thanks, Julien De : sr-users au nom de Daniel-Constantin Mierla Répondre à :

Re: [SR-Users] Info: initialization of libssl 1.1.+ with PTHREAD_PROCESS_SHARED attribute for pthread mutex and rwlock

2019-09-13 Thread Alex Balashov
Hi Daniel, Thanks a lot for this work; it's definitely important that Kamailio build against OpenSSL v1.1, and I'll be happy to contribute some testing in a live environment in the coming weeks. Much appreciated. Have a good weekend, -- Alex On Fri, Sep 13, 2019 at 01:34:12PM +0200,

Re: [SR-Users] Issue with and 0 when comparing vars

2019-09-13 Thread Daniel-Constantin Mierla
Hello, you can also convert the header value to integer using the transformation { s.int}, that's safer if you need to do other types of comparison such as > or <, because comparing string values might give the result you don't expect, Cheers, Daniel On Friday, September 13, 2019, Joel Serrano

Re: [SR-Users] Using $shv within current call only

2019-09-13 Thread Daniel-Constantin Mierla
Hello, a clarification first: is it reply_route[...] or onreply_route[...] the name of the block in your config? The first one should not work, that block is not supposed to have a name in between [ ]. Cheers, Daniel On Thursday, September 12, 2019, Zhan Bazarov wrote: > Hello, > we ran into

[SR-Users] Testing server up with SIP OPTIONS/netcat

2019-09-13 Thread Andrew White
Hi all, As part of a custom monitoring solution, I’m writing a simple script that sends an OPTIONS via netcat to a Kamailio server. However the server doesn’t appear to like it. Here’s the text - options.sip: OPTIONS sip:10.0.0.10 SIP/2.0 Via: SIP/2.0/UDP 10.0.0.20:5060 From: To:

Re: [SR-Users] Testing server up with SIP OPTIONS/netcat

2019-09-13 Thread Giacomo Vacca
Hi Andrew, is there a \r\n at the end of the CSeq header? You may also want to add 'Content-Length: 0'. Alternatively sipsak is a tool often used for such keepalive requests. Best regards, Giacomo On Fri, 13 Sep 2019 at 08:15, Andrew White wrote: > Hi all, > > As part of a custom monitoring

Re: [SR-Users] Testing server up with SIP OPTIONS/netcat

2019-09-13 Thread Sergey Safarov
you can use sipp utility for such type test. For this utility exist many script As example https://github.com/saghul/sipp-scenarios On Fri, Sep 13, 2019 at 9:14 AM Andrew White wrote: > Hi all, > > As part of a custom monitoring solution, I’m writing a simple script that > sends an OPTIONS via