Re: [OpenSIPS-Users] Include ECDHE cipher suites in TLS

2020-01-25 Thread Ali Alawi
HI Callum, Currently I stuck with PEM certificates because my configuration is for testing only (not productive). One last thing to check with you, I am unable to use 1_2 version in my opensips. Actually, opensips restarted without error but I am unable to perform handshake. Regards, On Thu, Jan

Re: [OpenSIPS-Users] Include ECDHE cipher suites in TLS

2020-01-23 Thread Callum Guy
Hi Ali, Glad the suggestions were helpful. The certificate is just a regular SSL cert, in PEM format just with a different file extension. Depending on your implementation you might want to look into public verifiable certificates (if you're public facing) - available for free if you want to chec

Re: [OpenSIPS-Users] Include ECDHE cipher suites in TLS

2020-01-22 Thread Ali Alawi
Dear Callum, Thanks a lot. it help me to establish a TLS connection with ECDH suite. but I used my own certificate.pem rather than the one you mentioned sip.crt. Actually, I couldn't figure out from where I can get this kind of .crt files. On Mon, Jan 20, 2020 at 11:49 AM Callum Guy wrote: > Hi

Re: [OpenSIPS-Users] Include ECDHE cipher suites in TLS

2020-01-20 Thread Callum Guy
Hi Ali, You'll need to setup your cipher list and DH file. You can generate a DH param file like this: *openssl dhparam -out dhparam.pem 4096* If you want to review locally available cipher suites you can run: *openssl ciphers -v* The OpenSIPs documentation clarifies the module configuration opt

[OpenSIPS-Users] Include ECDHE cipher suites in TLS

2020-01-18 Thread Ali Alawi
Hello every one. I am trying to test TLS in OpenSIPS 2.4, the testing is going fine but it only support certain cipher suite methods such as ( AES256-GCM-SHA384,AES256-SHA256,AES256-SHA,CAMELLIA256-SHA,AES128-SHA,SEED-SHA,CAMELLIA128-SHA,RC4-SHA,DES-CBC3-SHA ) For some reason, I need to use ECDHE c

Re: [OpenSIPS-Users] include extra config

2014-06-04 Thread Bogdan-Andrei Iancu
Hi Mike, Yes, you can do that - see the "include_file" directive : http://www.opensips.org/Documentation/Script-CoreParameters-1-11#toc57 Regards, Bogdan-Andrei Iancu OpenSIPS Founder and Developer http://www.opensips-solutions.com On 04.06.2014 11:40, Mike Claudi Pedersen wrote: is it possibl

Re: [OpenSIPS-Users] include extra config

2014-06-04 Thread Xiaoqiang Zhou
use m4 file. 2014-06-04 16:40 GMT+08:00 Mike Claudi Pedersen : > is it possible to include a part of the the cinfig from another file in > the opensips.cfg.. > > what i want is to have the cfg or another file generated by another > program, but it is only a small part of the cfg that needs to b

[OpenSIPS-Users] include extra config

2014-06-04 Thread Mike Claudi Pedersen
is it possible to include a part of the the cinfig from another file in the opensips.cfg.. what i want is to have the cfg or another file generated by another program, but it is only a small part of the cfg that needs to be edited everytime. so i would like to generate that part from another file

Re: [OpenSIPS-Users] Include

2009-01-23 Thread Pauba, Kevin L
} ifdef(`DEV',` # # Special rules for use in development. # ... ') ... } ... } -Original Message- From: Matti Ze

Re: [OpenSIPS-Users] Include

2009-01-23 Thread Matti Zemack
Thanks Kevin! I've started using m4 as IƱaki showed me yesterday, basically for setting parameters on different systems. This I've already implemented and using "happily ever after". :-) Is there a better way of using M4 for bigger pieces of code, than the example below: divert(-1) define(`RO

Re: [OpenSIPS-Users] Include

2009-01-22 Thread Pauba, Kevin L
org Subject: Re: [OpenSIPS-Users] Include Hi Matti, no, there is no other solution - using M4 is the cleverest solution ;) Regards, Bogdan Matti Zemack wrote: > > Hi again, > > First of all, Thanks for all help I received previously today. > Fantastic and very quick response. &

Re: [OpenSIPS-Users] Include

2009-01-22 Thread Bogdan-Andrei Iancu
Hi Matti, no, there is no other solution - using M4 is the cleverest solution ;) Regards, Bogdan Matti Zemack wrote: > > Hi again, > > First of all, Thanks for all help I received previously today. > Fantastic and very quick response. > > So here is my second newbie-question: Is there any way t

[OpenSIPS-Users] Include

2009-01-22 Thread Matti Zemack
Hi again, First of all, Thanks for all help I received previously today. Fantastic and very quick response. So here is my second newbie-question: Is there any way to include files at startup? It would be nice to split a 2000+ lines config file into easier to handle parts. (After this morni