Re: [SR-Users] issues with the debian repo for kamailio 5.2

2018-11-22 Thread Aleksandar Sosic
Thank you. It works! -- Aleksandar Sosic linkedin.com/in/alexsosic/ mail: alex.sosic@evosip.cloud On Thu, Nov 22, 2018 at 8:47 AM Victor Seva wrote: > > Thanks for reporting. It should be fixed now > ___ > Kamailio (SER) - Users Mailing List > sr-users@l

Re: [SR-Users] database connections per child process

2018-11-22 Thread Mojtaba
Actually No. Actually the connection to database is done in fork process. So if you have two fork process with one sqlcon param, You'll have two TCP connection. If you add one another sqlcon param in modparam, you will have four tcp connection. at finally you will have: (Number_Of_Connection=Fork_n

Re: [SR-Users] database connections per child process

2018-11-22 Thread Daniel-Constantin Mierla
Hello, in general, kamailio modules reuse the connection if the target is the same database server and database name. That makes it like one connection to database server per kamailio process. However, there are some modules that may request a dedicated database connection, not willing to reuse w

Re: [SR-Users] KAMAILIO 4.2 - RTPPROXY config confirmation - error message from systemctl status kamailio.service -l (ERROR:

2018-11-22 Thread Daniel Tryba
On Wed, Nov 21, 2018 at 06:24:22PM +0100, ybouj...@by-research.be wrote: ... > xlog("NATMANAGE coei\n"); ... > Is it an issue with the public ip address configured in the rtpproxy > (/etc/default/rtpproxy)? There is no issue. Please take a look at https://www.kamailio.org/d

Re: [SR-Users] issue tracking dialogs with db_redis in kamailio 5.2

2018-11-22 Thread David Escartín
hello Daniel Yes. it's how you say, i see records for a dialog once it's connected. I did not check with another DB driver, but i guess it would be the same. I will try anycase if you think it worths it. However, we would be looking for a scenario where the dialogs are stored at the DB just whe

[SR-Users] Kamailio "Presence Server" configuration

2018-11-22 Thread denislav . tsonev
Hello, I'm trying to configure Kamailio to be "Presence Server". Simple scheme: two phones (one "hard phone" Grandstream GXP1620 and "Soft phone" MicroSIP) and Kamailio server with default configuration. So when "MicroSIP" send SIP SUBSCRIBE to Kamailio, server response with SIP NOTIFY but wit

Re: [SR-Users] IMS: SMS over IP - how to get the originator's tel address?

2018-11-22 Thread Carsten Bock
Hi Ron, You should check the response to the "200 OK" to a "REGISTER". It should contain one or more "P-Associated-Identities", with the first one being the default one. If no associated identity matches, the Proxy-CSCF will add the default one as P-Asserted-Identity. Thanks, Carsten -- Carsten

Re: [SR-Users] database connections per child process

2018-11-22 Thread Karthik Srinivasan
Thank you, Daniel and Mojtaba, for your responses. This was more of a curiosity factor for me as i was trying to nail down what governed the database connection count behavior. The answers you have provided me are more than adequate. No need to further debug this item; I appreciate the prompt r