Hi, I know asterisk doesn't support tls but that something strange in SIP protocol :
TLS UA -> Openser -> no tls UA : that work TLS UA -> Openser -> asterisk : that don't work
any one know something about this ?
to use asterisk I make rewritehostport.
thank for help
Bruno, what is your TLS UA?
- Kirill
On 4/11/07, Bodin Bruno bbodin01@univ-lr.fr wrote:
Hi, I know asterisk doesn't support tls but that something strange in SIP protocol :
TLS UA -> Openser -> no tls UA : that work TLS UA -> Openser -> asterisk : that don't work
any one know something about this ?
to use asterisk I make rewritehostport.
thank for help
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Kirill Kudin a écrit :
Bruno, what is your TLS UA?
- Kirill
On 4/11/07, *Bodin Bruno* <bbodin01@univ-lr.fr mailto:bbodin01@univ-lr.fr> wrote:
Hi, I know asterisk doesn't support tls but that something strange in SIP protocol : TLS UA -> Openser -> no tls UA : that work TLS UA -> Openser -> asterisk : that don't work any one know something about this ? to use asterisk I make rewritehostport. thank for help _______________________________________________ Users mailing list Users@openser.org <mailto:Users@openser.org> http://openser.org/cgi-bin/mailman/listinfo/users
it's eyebeam, and I use twinkle at the other side.
Hi Bodin,
I guess openser forwards the call to asterisk via TLS also - can you check this?
regards, bogdan
Bodin Bruno wrote:
Hi, I know asterisk doesn't support tls but that something strange in SIP protocol :
TLS UA -> Openser -> no tls UA : that work TLS UA -> Openser -> asterisk : that don't work
any one know something about this ?
to use asterisk I make rewritehostport.
thank for help
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Bogdan-Andrei Iancu a écrit :
Hi Bodin,
I guess openser forwards the call to asterisk via TLS also - can you check this?
regards, bogdan
Bodin Bruno wrote:
Hi, I know asterisk doesn't support tls but that something strange in SIP protocol :
TLS UA -> Openser -> no tls UA : that work TLS UA -> Openser -> asterisk : that don't work
any one know something about this ?
to use asterisk I make rewritehostport.
thank for help
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
in openser log i found this : 10(4159) ERROR: tcp_blocking_connect: poll error: flags 18 10(4159) ERROR: tcp_blocking_connect: SO_ERROR (111) Connection refused 10(4159) ERROR: tcpconn_connect: tcp_blocking_connect failed 10(4159) ERROR: tcp_send: connect failed 10(4159) msg_send: ERROR: tcp_send failed
is there another function like rewritehostport() to renew a SIP exchange without tls ?
Asterisk doesn't support TCP SIP. You have problem with TCP to UDP conversion. Reed more about that in this thread http://osdir.com/ml/voip.openser.user/2006-05/msg00330.html
- Kirill
On 4/12/07, Bodin Bruno bbodin01@univ-lr.fr wrote:
Bogdan-Andrei Iancu a écrit :
Hi Bodin,
I guess openser forwards the call to asterisk via TLS also - can you check this?
regards, bogdan
Bodin Bruno wrote:
Hi, I know asterisk doesn't support tls but that something strange in SIP protocol :
TLS UA -> Openser -> no tls UA : that work TLS UA -> Openser -> asterisk : that don't work
any one know something about this ?
to use asterisk I make rewritehostport.
thank for help
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
in openser log i found this : 10(4159) ERROR: tcp_blocking_connect: poll error: flags 18 10(4159) ERROR: tcp_blocking_connect: SO_ERROR (111) Connection refused 10(4159) ERROR: tcpconn_connect: tcp_blocking_connect failed 10(4159) ERROR: tcp_send: connect failed 10(4159) msg_send: ERROR: tcp_send failed
is there another function like rewritehostport() to renew a SIP exchange without tls ?
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
Bodin,
please add an xlog() to print he RURI just before t_relay(): xlog("-----ruri = $ru\n");
and let em know what uri you have. I want to see if the protocol is forced by a ruri parameter or not,
regards, bogdan
Bodin Bruno wrote:
Bogdan-Andrei Iancu a écrit :
Hi Bodin,
I guess openser forwards the call to asterisk via TLS also - can you check this?
regards, bogdan
Bodin Bruno wrote:
Hi, I know asterisk doesn't support tls but that something strange in SIP protocol :
TLS UA -> Openser -> no tls UA : that work TLS UA -> Openser -> asterisk : that don't work
any one know something about this ?
to use asterisk I make rewritehostport.
thank for help
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
in openser log i found this : 10(4159) ERROR: tcp_blocking_connect: poll error: flags 18 10(4159) ERROR: tcp_blocking_connect: SO_ERROR (111) Connection refused 10(4159) ERROR: tcpconn_connect: tcp_blocking_connect failed 10(4159) ERROR: tcp_send: connect failed 10(4159) msg_send: ERROR: tcp_send failed
is there another function like rewritehostport() to renew a SIP exchange without tls ?
Bogdan-Andrei Iancu a écrit :
Bodin,
please add an xlog() to print he RURI just before t_relay(): xlog("-----ruri = $ru\n");
and let em know what uri you have. I want to see if the protocol is forced by a ruri parameter or not,
regards, bogdan
oh ! I found out something ...
when INVITE message was just relay : ruri = sip:9878@10.1.11.xxx but when I use rewritehostport() function : ruri = sip:9878@zebulon.univ-lr.fr:5062;transport=tls
regards, Bruno
ok - the problem is the transport=uri parameter that survives the "rewritehostport"...
instead of rewritehostport(), try: $ru = "sip:"+$rU+"@zebulon.univ-lr.fr:5062";
regards, bogdan
Bodin Bruno wrote:
Bogdan-Andrei Iancu a écrit :
Bodin,
please add an xlog() to print he RURI just before t_relay(): xlog("-----ruri = $ru\n");
and let em know what uri you have. I want to see if the protocol is forced by a ruri parameter or not,
regards, bogdan
oh ! I found out something ...
when INVITE message was just relay : ruri = sip:9878@10.1.11.xxx but when I use rewritehostport() function : ruri = sip:9878@zebulon.univ-lr.fr:5062;transport=tls
regards, Bruno