[SR-Users] On the fly Change

2017-08-16 Thread Logeshwaran G
Hi, Is there any possibilities of "on the fly" option in kamailio.cfg. For Example: I need to change my carrier IP address in the lcr_gw table, kamailio.cfg should takes it on the fly. Without restarting the kamailio. Thanks & Kind Regards, Logeshwaran G

Re: [SR-Users] On the fly Change

2017-08-16 Thread Logeshwaran G
Sure. Thanks For your Input. Thanks & Kind Regards, Logeshwaran G On Wed, Aug 16, 2017 at 1:05 PM, Yu Boot wrote: > Hello. > > You can just change parameter in SQL table and reload changes with kamctl. > > Generally, (I think) Kamailio restart is a relatively safe. Established

Re: [SR-Users] Kamailio not listening on TLS port (5061)

2017-08-16 Thread Deepak Jaiswal
Hi Daniel, I would like to thank you.  Yes, this was the issue and now it is resolved. It was commented out like. ##!define WITH_TLS I removed prior # and kept it #!define WITH_TLS. It worked. [root@uk-vap-002 log]# ss -tnlp | grep kamailio LISTEN 0 1024

Re: [SR-Users] UAC reg_random_delay issue

2017-08-16 Thread Daniel-Constantin Mierla
Hello, I asked about reg_timer_interval parameter. Cheers, Daniel On 16.08.17 01:32, Ivo Vastert wrote: > Hi, > > We are currently using 60: > > modparam("uac", "reg_random_delay", 60) > > On Tuesday, August 15, 2017, Daniel-Constantin Mierla > >

[SR-Users] Kamailio not listening on TLS port (5061)

2017-08-16 Thread Deepak Jaiswal
Hi, I am new to kamailio and unable to debug the issue. Kamailio is not listening on TLS port. Could you please suggest some workaround? [root@uk-vap-002 ~]# ss -tnlp | grep kamailio LISTEN 0 1024 127.0.0.1:5060 *:* users:(("kamailio",29400,18))

Re: [SR-Users] Kamailio not listening on TLS port (5061)

2017-08-16 Thread Daniel-Constantin Mierla
Hello, did you add: #!define WITH_TLS somewhere at the top of your config (see the comments there)? Cheers, Daniel On 16.08.17 08:40, Deepak Jaiswal wrote: > > Hi, > > I am new to kamailio and unable to debug the issue. Kamailio is not > listening on TLS port. Could you please suggest

Re: [SR-Users] UAC reg_random_delay issue

2017-08-16 Thread Ivo Vastert
Hi, We're currently using 60 as well there: modparam("uac", "reg_timer_interval", 60) Br, Ivo On Wed, Aug 16, 2017 at 8:22 AM, Daniel-Constantin Mierla wrote: > Hello, > > I asked about reg_timer_interval parameter. > > Cheers, > Daniel > > On 16.08.17 01:32, Ivo

Re: [SR-Users] rtpengine : question about RTP/RTCP multiplexing (RFC 5761) and demultiplexing

2017-08-16 Thread Abdoul Osséni
Thank you. Abdoul. 2017-08-16 11:25 GMT+02:00 Sebastian Damm : > Hi, > > On Wed, Aug 16, 2017 at 10:32 AM, Abdoul Osséni > wrote: > > Does this mean that uac must be compliance with RFC 5761 if I want > multiplex > > and demultiplex RTP/RTCP between

[SR-Users] log file

2017-08-16 Thread Uzma Anjum
the log statements written in acc.c accounting module source code are not entered into syslog file.what can be wrong? ___ Kamailio (SER) - Users Mailing List sr-users@lists.kamailio.org https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-users

Re: [SR-Users] On the fly Change

2017-08-16 Thread Sebastian Damm
Hi, On Wed, Aug 16, 2017 at 11:02 AM, Logeshwaran G wrote: > Is it possible to use the LCR reload command with the xmlrpc module? Of course. You can use xmlrpc or jsonrpc, whichever you prefer. You need the xhttp module as a dependency though. Best Regards, Sebastian

Re: [SR-Users] On the fly Change

2017-08-16 Thread Logeshwaran G
Thanks. But I am not have the clear cut idea of using the lcr reload command. I have enabled the jsonrpcs loadmodule ""jsonrpc.so" params also added modparam("jsonrpcs", "pretty_format", 1), But Where Should I mention the "kamcmd lcr.reload" Thanks & Kind Regards, Logeshwaran G On Wed, Aug

Re: [SR-Users] rtpengine : question about RTP/RTCP multiplexing (RFC 5761) and demultiplexing

2017-08-16 Thread Sebastian Damm
Hi, On Wed, Aug 16, 2017 at 10:32 AM, Abdoul Osséni wrote: > Does this mean that uac must be compliance with RFC 5761 if I want multiplex > and demultiplex RTP/RTCP between UAC and rtpengine? I don't know whether I understand your question correctly, but the options in

Re: [SR-Users] On the fly Change

2017-08-16 Thread Logeshwaran G
Whether I can use the below format: jsonrpc_exec({"jsonrpc": "2.0", "method": "lcr.reload", "id": 1}'); Thanks & Kind Regards, Logeshwaran G On Wed, Aug 16, 2017 at 3:14 PM, Logeshwaran G wrote: > Thanks. > > But I am not have the clear cut idea of using the lcr

Re: [SR-Users] UAC reg_random_delay issue

2017-08-16 Thread Ivo Vastert
Hi Daniel, Now it works perfectly: Timestamp / registers (532 total): 2017/08/16 12:19:58: 12 2017/08/16 12:20:03: 43 2017/08/16 12:20:08: 59 2017/08/16 12:20:13: 66 2017/08/16 12:20:18: 24 2017/08/16 12:20:23: 35 2017/08/16 12:20:28: 20 2017/08/16 12:20:33: 51 2017/08/16 12:20:38: 57

Re: [SR-Users] On the fly Change

2017-08-16 Thread Sebastian Damm
Unless you want to trigger that after receiving some kind of "SIP control packet", you would rather add something like this in your kamailio.cfg: event_route[xhttp:request] { if ($hu =~ "^/jsonrpc") { xlog("L_NOTICE", "Got jsonrpc request, body '$rb'\n"); jsonrpc_dispatch(); } else {

Re: [SR-Users] On the fly Change

2017-08-16 Thread Logeshwaran G
Thanks for detailed explanation. Kindly provide me the example json key parameter for lcr.reload. It will be much helpful Thanks & Kind Regards, Logeshwaran G On Wed, Aug 16, 2017 at 4:31 PM, Sebastian Damm wrote: > Unless you want to trigger that after receiving some kind

Re: [SR-Users] On the fly Change

2017-08-16 Thread Logeshwaran G
I need to pass the json values through HTTP Request, (i.e Invoking through browser like postman client) Kindly provide me the json lcr.reload key values. Thanks & Kind Regards, Logeshwaran G On Wed, Aug 16, 2017 at 5:05 PM, Logeshwaran G wrote: > Thanks for detailed

[SR-Users] Permission denied for /var/run/kamailio

2017-08-16 Thread Ryan Wagoner
I'm running Kamailio 4.4.6-2.1 installed from RPM on CentOS 7, where /var/run is a tmpfs (by default). After every reboot Kamailio fails to start with the following error: Aug 16 00:27:39 sbc1 /usr/sbin/kamailio[7135]: ERROR: mi_fifo [fifo_fnc.c:72]: mi_init_fifo_server(): Can't create FIFO:

[SR-Users] RTP loops

2017-08-16 Thread Mauro Costantini
Hi everyone, we have an installation with: - 1 kamailio instance - with 2 interface, one with public and one with private IP (for local communication to the db and asterisk ). We use keepalived service for failover and so, every interface has 2 IPs: the real one and the “virtual” one for the

Re: [SR-Users] Planning Kamailio v5.0.3

2017-08-16 Thread Valentin Christoph
Hi all, There was a pull request last week : https://github.com/kamailio/kamailio/pull/1213 People could be interested in a backport. It's about avoiding a core dump in IMS registration scenarios, if the Client does not behave according to RFC 3261 and omits the Content-Length header. RFC

[SR-Users] sipcapture/HEP msg sizes>1500

2017-08-16 Thread Daniel Tryba
While looking into HOMER I saw that large INVITEs got truncated in the webinterface, looking at the HEP traffic these (UDP) messages got fragmented in transport (asterisk/res_hep) and I started to think these were not getting reassembled correctly. Only to find out the database schemas have set

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

2017-08-16 Thread Adrian Georgescu
Giovanni, The creature on page 55 and 56 is a dude, man! Regards, Adrian > On 11 Aug 2017, at 12:08, jungle Boogie wrote: > > On 10 August 2017 at 11:17, Giovanni Maruzzelli wrote: >> Industrial Grade FreeSWITCH Scaling, Balancing and High

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

2017-08-16 Thread Giovanni Maruzzelli
On 17 August 2017 at 02:32, Adrian Georgescu wrote: > Giovanni, > > The creature on page 55 and 56 is a dude, man! > I was more focused on the other one, but yes, he's a dude. An happy dude :) -giovanni ___ Kamailio (SER) -

[SR-Users] Kamailio not forces TLS socket

2017-08-16 Thread Yuriy Gorlichenko
Hi! I using uac for send MESSAGE request from kamailio to remote destination endpoint Before sending i setting up $fs seudovariable as $fs = "tls:12.3.4.5:443"; kamailio listeinig this interface and succesfully receives requests and sending responses on it When i call uac_req_send();There is

[SR-Users] DMQ Not Discovering all Nodes

2017-08-16 Thread John Petrini
Hello, I've just started doing some testing with dmq but I'm having trouble getting it to discover all of the nodes in my cluster. There are 7 kamailio instances with the following in their configs: Example from the notification server (10.0.10.211): listen=udp:10.0.10.211:5080 loadmodule