Re: [SR-Users] MSILO: SIP stored offline MESSAGE repetitive delivery

2018-04-12 Thread Abdul Basit
Hi Team, My issue for IM handling has been resolved. @MS helped to look into the matter. From to the example https://www.kamailio.org/docs/modules/5.1.x/modules/msilo.html#idp45433036 # -- tm params -- modparam("tm", "fr_timer", 10 ) modparam("tm", "fr_inv_timer", 15 ) modparam("tm",

[SR-Users] Limiting Kamailios accepted methods

2018-04-12 Thread Gholamreza Sabery
Hi, I want to limit Kamailios accepted methods to REGISTER, INVITE and their related methods like BYE and CANCEL. How to do this in Kamailio? Is there a standard way or I should use is_method function? Regards ___ Kamailio (SER) - Users Mailing List

Re: [SR-Users] Limiting Kamailios accepted methods

2018-04-12 Thread Grant Bagdasarian
Hi, We use the is_method function to enforce this. You can specify multiple method names in the function arguments. For instance: if(is_method("SUBSCRIBE|NOTIFY|PUBLISH|INFO|MESSAGE")) { sl_send_reply("405", "Method Not Allowed"); exit; } Regards, Grant Bagdasarian Senior

[SR-Users] TLS support and certificate validation

2018-04-12 Thread Jignesh Gandhi
I want to enable certificate validation on the server. I am only using self-signed certs. I have the same certificate/key in the client and server and want to only allow connection from clients with this cert/key. I have turned on the following in tls.cfg and done all the steps required in

Re: [SR-Users] Limiting Kamailios accepted methods

2018-04-12 Thread Daniel-Constantin Mierla
Hello, pointed in another response, is_method(...) is good solution, I just wanted to add that you should be careful with what you reject and when, because part of an INVITE dialog can be more than just ACK, BYE and CANCEL, you can get REFER, UPDATE, INFO, NOTIFY... So I would allow all requests

Re: [SR-Users] Limiting Kamailios accepted methods

2018-04-12 Thread Gholamreza Sabery
Thank you very much Daniel. Regards On Thu, Apr 12, 2018 at 9:11 PM, Daniel-Constantin Mierla wrote: > Hello, > > pointed in another response, is_method(...) is good solution, I just > wanted to add that you should be careful with what you reject and when, > because part of

Re: [SR-Users] Is RTPProxy the way to go?

2018-04-12 Thread Alex Balashov
I think a lot of the conventional wisdom consensus in Kamailio land is around RTPengine. On April 12, 2018 5:05:39 PM EDT, Robert Johnson wrote: >I'm encountering a situation where an endpoint will renegotiate it's >RTP >ports but RTPProxy does not honor the new ports

[SR-Users] Dialog module's keep-alive feature uses wrong CSeq?

2018-04-12 Thread Oded Arbel
Hi all. I'm trying to use the dialog module's keep alive feature (ka_interval() and dlg_set_property()), and the documentation (under dlg_set_property) says this: If keep alive is enabled for a dialog, the module will send SIP OPTIONS requests with CSeq lower or equal than last request within

Re: [SR-Users] Kamailio + tls

2018-04-12 Thread Henning Westerholt
On Thursday, 12 April 2018 12:10:47 CEST Do Quang Trung wrote: > 1/ I built openssl-1.0.2n with engine supported. > 2/ in file tls_domain.c i modified C code in function static int > set_cipher_list(tls_domain_t* d) > cipher_list="GOST-GOST89MAC" and rebuild kamailio > i config kamailio

Re: [SR-Users] MSILO: SIP stored offline MESSAGE repetitive delivery

2018-04-12 Thread Henning Westerholt
On Thursday, 12 April 2018 10:15:19 CEST Abdul Basit wrote: > My issue for IM handling has been resolved. > > @MS helped to look into the matter. From to the example > [..] > > I replaced it as below > > # -- tm params -- > > modparam("tm", "fr_timer", 1 ) > modparam("tm", "fr_inv_timer",

[SR-Users] Is RTPProxy the way to go?

2018-04-12 Thread Robert Johnson
I'm encountering a situation where an endpoint will renegotiate it's RTP ports but RTPProxy does not honor the new ports and continues to send audio to the old ports. I realize that I'm running a (very) old version of RTPProxy and that I should upgrade before submitting any bugs or asking for

Re: [SR-Users] Limiting Kamailios accepted methods

2018-04-12 Thread Gholamreza Sabery
Dear Grant Thank you very much! On Thu, Apr 12, 2018 at 6:00 PM, Grant Bagdasarian wrote: > Hi, > > > > We use the is_method function to enforce this. You can specify multiple > method names in the function arguments. > > For instance: > > > >

[SR-Users] Kamailio + tls

2018-04-12 Thread Do Quang Trung
Plz help me. I want config kamailio 5.1 support tls using gost89 cipher to protect data. ___ Kamailio (SER) - Users Mailing List sr-users@lists.kamailio.org https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-users

[SR-Users] Need installation steps for installing kamailio 5.1.2 with debian packages

2018-04-12 Thread vinay kumar
Hi All, can anyone share me the installtion steps for kamailio 5.1.2 with debian packages on ubuntu. i have used kamailio 4.3.6 with polaris configuration. I want to upgrade latest version of kamailio. And i have installed latest debian packages and i have used polaris scripts to bringup kamailio

Re: [SR-Users] Kamailio + tls

2018-04-12 Thread Henning Westerholt
On Wednesday, 11 April 2018 13:49:35 CEST Do Quang Trung wrote: > Plz help me. > I want config kamailio 5.1 support tls using gost89 cipher to protect data. Hello, could you share a bit more details: - what have you already done - have you already tried to configure it - what is the exact issue