Hello all,
I want to know that is it possible to connect clients to kamailio server in TLS and Non-TLS mode simultaneously ?? I believe I will have to add both ports (for TLS and Non-TLS ) in kamailio.cfg. Besides that what will be required if its possible ? Thanks,
Regards, Aawaise
-- View this message in context: http://sip-router.1086192.n5.nabble.com/Kamailio-in-TLS-and-Non-TLS-mode-tp1... Sent from the Users mailing list archive at Nabble.com.
Hi, You just need to make sure you have all required transports allowed and kamailio is listening on it, thats it.
On Fri, Apr 25, 2014 at 11:57 AM, aawaise owaisulhaq@hotmail.com wrote:
Hello all,
I want to know that is it possible to connect clients to kamailio server in TLS and Non-TLS mode simultaneously ?? I believe I will have to add both ports (for TLS and Non-TLS ) in kamailio.cfg. Besides that what will be required if its possible ? Thanks,
Regards, Aawaise
-- View this message in context: http://sip-router.1086192.n5.nabble.com/Kamailio-in-TLS-and-Non-TLS-mode-tp1... Sent from the Users mailing list archive at Nabble.com.
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
On 25 Apr 2014, at 08:57, aawaise owaisulhaq@hotmail.com wrote:
Hello all,
I want to know that is it possible to connect clients to kamailio server in TLS and Non-TLS mode simultaneously ??
Yes.
I believe I will have to add both ports (for TLS and Non-TLS ) in kamailio.cfg.
Yes
Besides that what will be required if its possible ?
Certificates for the TLS connection, as documented in the TLS module documentation.
Cheers, /O
All certificates and keys have been made and updated. Can we make kamailio server to listen to two ports, i.e 5061 and 5062 simultaneously ?? Like in a scenario where some users connect to 5061 and some at 5062.
-- View this message in context: http://sip-router.1086192.n5.nabble.com/Kamailio-in-TLS-and-Non-TLS-mode-tp1... Sent from the Users mailing list archive at Nabble.com.
On Tue, Apr 29, 2014 at 12:06 AM, aawaise owaisulhaq@hotmail.com wrote:
All certificates and keys have been made and updated. Can we make kamailio server to listen to two ports, i.e 5061 and 5062 simultaneously ?? Like in a scenario where some users connect to 5061 and some at 5062.
Yes. Simply add multiple listen statements:
listen=tls:192.0.2.1:5061 listen=tls:192.0.2.1:5062
The Kamailio daemon will treat all received packets the same, though, unless you do something explicit. You can use the variable $Rp to look at which port the request came in on.
Corey