<div dir="ltr"><div><div><div><div><div>Hello,<br><br></div>I&#39;m trying to use OpenSIPS as a TCP to UDP proxy, (with the registrar module disabled) connecting all sorts of devices from different IP addresses over TCP to a UDP switch.<br>
<br>So far I&#39;ve managed to get OpenSIPS configured to change the contact header, and the SDP, append the transport, and forward the packets correctly, for making an outbound call (from TCP device to UDP switch).<br><br>
</div>I&#39;ve got incoming to work somewhat (from UDP switch to TCP device), the INVITE will pass, and the TRYING/RINGING gets back to the switch, however the issue I&#39;m having is that the OK packet from the TCP device is sent to the switch, which responds with the ACK, however the contact header is wrong, and OpenSIPS is trying to sent the ACK to the internal non routable IP of the device.<br>
<br>As a result the call comes up, but the device has an ACK timeout and drops the call.<br><br></div>I&#39;m having difficulties working out how to get the contact header mangled sufficiently for the OK/ACK to contain the routable IP of the TCP device, rather than it&#39;s internal/behind NAT IP.<br>
<br></div>I&#39;ve tried removing the header, using loose_route, using t_relay, and (am currently attempting) to use route(relay).<br><br></div><div>Also of relevance, is the fact that I&#39;m running OpenSIPS on a Google Compute VM, so it&#39;s behind 1 to 1 NAT, with a non routable IP on the VM, but I have assigned a static routable IP to the 1 to 1 NAT, and I have DNS pointing to this routable IP.<br>
</div><div><br></div>Here&#39;s my config file, excluding default values/routes etc:<br><br>listen=udp:[internal VM IP]:5060<br>listen=tcp:[internal VM IP]:5060<br><br>disable_tcp=no<br><br>advertised_address=&quot;[DNS name]&quot;<br>
alias=&quot;[DNS name]&quot;<br><br>route{<br>    if (src_ip != &quot;[switch ip]&quot;){<br>        # from device<br>        if (is_method(&quot;INVITE&quot;)) {<br>            fix_nated_sdp(&quot;7&quot;);<br>        }<br>
        else if (is_method(&quot;OPTIONS&quot;)){<br>            exit;<br>        }<br><br>        fix_nated_contact();<br>        forward (&quot;udp:[switch ip]:5060&quot;);<br>    }<br><br>    else if (src_ip == &quot;[switch ip]&quot;){<br>
        # from switch<br>        if (is_method(&quot;INVITE&quot;)) {<br>            fix_nated_sdp(&quot;7&quot;);<br>        }<br>        else if (is_method(&quot;ACK&quot;)) {<br>            fix_nated_contact();<br>        }<br>
<br>        # mangle to TCP<br>        $du = $ru + &quot;;transport=tcp&quot;;<br><br>        route(relay);<br>    }<br><br>        exit;<br>}<br><br clear="all"><div><div><div><div><div><div>Is the issue perhaps related to the fact I&#39;m not recording a route, so it doesn&#39;t know how to correctly route the response, or am I just missing something obvious?<br>
<br></div><div>Thanks,<br>Simon<br></div><div><br>-- <br>
Simon Quigley, Systems Engineer<br>
Versature Corp.  |  <a value="+18774983772">877-498-3772 x128</a><br>
<br>
Follow us on Twitter - <a href="http://twitter.com/Versature" target="_blank">http://twitter.com/Versature</a><br>
Check out the Versature Blog - <a href="http://inside.versature.com" target="_blank">http://inside.versature.com</a>
</div></div></div></div></div></div></div>