<div dir="ltr">Thanks for the help guys.<div><br></div><div>I used a stateless proxy and was able to register. Now I am able to make calls as well but there is an issue.</div><div><br></div><div>I receive multiple ringing but not receiving 200 ok after that. I keep on receiving the ringing messages. Although the call gets connected and I hear two way voice as well.</div><div><br></div><div>Also I am call through the sip number, but its not receiving any calls.</div><div><br></div><div>Any ideas?</div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature">Rizwan Khan<br><br><br></div></div>
<br><div class="gmail_quote">On Thu, Nov 27, 2014 at 9:04 PM, Daniel Tryba <span dir="ltr"><<a href="mailto:daniel@pocos.nl" target="_blank">daniel@pocos.nl</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Thursday 27 November 2014 08:29:51 Rizwan Khan wrote:<br>
> We want to use Kamailio as the pass-thru proxy in front of the SBC just to<br>
> receive the request on a random port, and then forward the request to the<br>
> SBC internally being on the same private network.<br>
><br>
> What would be the best way to do it?<br>
<br>
</span>If it is the best is up to the experts, but a way to do is to check wheter the<br>
source is the SBC or not. If the message is from the SBC just handle it<br>
statefully (t_relay), if it isn't from the SBC set the requested domain to the<br>
ipaddr of the SBC (10.1.2.3) and process stateful. You could use the received<br>
port instead if external clients only communicate on the special port<br>
($Rp!=6334)<br>
<br>
kamailio.cfg:<br>
<br>
#...<br>
port=5060<br>
port=6334<br>
#...<br>
<br>
request_route {<br>
#...<br>
<br>
   if($si!="10.1.2.3")<br>
   {<br>
      $rd="10.1.2.3";<br>
   }<br>
<br>
   route(RELAY);<br>
<div class="HOEnZb"><div class="h5">}<br>
<br>
<br>
<br>
_______________________________________________<br>
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list<br>
<a href="mailto:sr-users@lists.sip-router.org">sr-users@lists.sip-router.org</a><br>
<a href="http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users" target="_blank">http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users</a><br>
</div></div></blockquote></div><br></div>