<div>Hi Inaki,</div>
<div>&nbsp;</div>
<div>Thank you for your kindness in helping me out.&nbsp; </div>
<div>I think your diagnosis of the problem is exactly what I am facing right now.&nbsp; </div>
<div>I tried to solve it by putting in :</div>
<div>&nbsp;</div>
<div>&nbsp;&nbsp;&nbsp; if (nat_uac_test(&quot;19&quot;)) { <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xlog(&quot;nat client detected\n&quot;);&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (method==&quot;REGISTER&quot;) { <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fix_nated_register(); <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } else { <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fix_nated_contact(); <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; setflag(5); <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; };<br>&nbsp;&nbsp;&nbsp; </div>
<div>&nbsp;&nbsp;&nbsp;&nbsp; if(!is_method(&quot;REGISTER&quot;)){<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(nat_uac_test(&quot;19&quot;)){<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xlog(&quot;record route with nat = yes\n&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; record_route(&quot;;nat=yes&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } else {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xlog(&quot;normal record route\n&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; record_route();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; };<br>&nbsp;&nbsp;&nbsp;&nbsp; };</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>But it is still not working.&nbsp; My opensips and B2BUA are within on NAT and my xlite is within another NAT, is this going to work?</div>
<div>&nbsp;</div>
<div>Thanks,</div>
<div>JB<br><br></div>
<div class="gmail_quote">On Thu, Nov 27, 2008 at 9:20 PM, Iñaki Baz Castillo <span dir="ltr">&lt;<a href="mailto:ibc@aliax.net">ibc@aliax.net</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">El Jueves, 27 de Noviembre de 2008, Juan Backson escribió:<br>
<div class="Ih2E3d">&gt; In the 200OK received by the nated client, the Contact is :Contact:<br>&gt; &lt;<a href="http://sip:1000@192.168.1.100:33756" target="_blank">sip:1000@192.168.1.100:33756</a>&gt;<br><br>&gt; Opensips did not add the Record-Route even<br>
&gt; though I did specify fix_nated_contact in on_reply_route.<br><br></div>Perhaps you don&#39;t understand the meaning of adding Record-Route, it has<br>*nothing* to do with fix_nated_contact.<br><br>Adding Record-Route means that in-dialog requests (as the ACK for the 200 OK)<br>
will pass through the proxy, so the ACK will contain a Route header and a<br>RURI with the value of the Contact received in the 200 OK:<br><br>&nbsp;ACK <a href="http://sip:1000@192.168.1.100:33756" target="_blank">sip:1000@192.168.1.100:33756</a><br>
&nbsp;From: zzzzzzz<br>&nbsp;To: zzzz<br>&nbsp;Route: &lt;sip:ip_proxy&gt;<br><br>This ACK will arrive to the proxy (it has a Route so the device/phone MUST<br>send the request there), but whe this ACK arrives to the proxy it will remove<br>
the Route header and route it based on the RURI, this is: the proxy will<br>forward this ACK to IP <a href="http://192.168.1.100:33756/" target="_blank">192.168.1.100:33756</a>.<br>Do you understand the problem? Most probably, the proxy is in a different<br>
network (hopefully with public IP) so it cannot reach that private IP.<br><br>To solve it, the proxy must run &quot;fix_nated_contact&quot; in on_reply_route. This<br>will replace the IP in the Contact of the 200 OK with the received public IP.<br>
<br>In your case, this last point is not working since the UAS receives a Contact<br>with a private IP. Verify it.<br><font color="#888888"><br><br>--<br></font>
<div>
<div></div>
<div class="Wj3C7c">Iñaki Baz Castillo<br><br>_______________________________________________<br>Users mailing list<br><a href="mailto:Users@lists.opensips.org">Users@lists.opensips.org</a><br><a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br>
</div></div></blockquote></div><br>