<div dir="ltr">David,<div><br></div><div>We had this exact "issue" in the past and were not able to figure out how to do it. Where we wanted tcp we prefixed the sip URI with "force_tcp". So:</div><div>Dial(SIP/<a href="http://1234@1.1.1.1//2.2.2.2">1234@1.1.1.1//2.2.2.2</a>)</div><div>became:</div><div><div>Dial(SIP/<a href="http://force_tcp1234@1.1.1.1//2.2.2.2">force_tcp1234@1.1.1.1//2.2.2.2</a>)</div></div><div>On Kamailio's side in the FORWARD block we added:</div><div># HACK for forcing TCP<br>                if ($oU != $null && $(oU{s.len}) != 0) {<br>                    $var(prefix) = $(oU{s.substr,0,9});<br>                    if ($var(prefix) == "force_tcp") {<br>                        $rU = $(oU{s.substr,9,0});<br>                        add_uri_param( "transport=tcp" );<br>                        $fs = "tcp:" + $Ri + ":5060";<br>                    }<br>                }<br></div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Jul 20, 2022 at 10:47 PM David Cunningham <<a href="mailto:dcunningham@voisonics.com">dcunningham@voisonics.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>Hello,</div><div><br></div><div>We have an Asterisk dial which sends the call via a proxy using //, for example:</div><div><br></div><div>Dial(SIP/${EXTEN}@peer_address//proxy_address)</div><div><br></div><div>Does anyone know how we can make the SIP to the proxy use TCP? We tried making proxy_address match a peer in sip.conf with "transport = tcp" but that didn't seem to work. We are using chan_sip.</div><div><br></div><div>Thanks very much for any advice.<br></div><div><br></div>-- <br><div dir="ltr"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div>David Cunningham, Voisonics Limited<br><a href="http://voisonics.com/" target="_blank">http://voisonics.com/</a><br>USA: +1 213 221 1092<br>New Zealand: +64 (0)28 2558 3782</div></div></div></div></div></div></div></div></div></div></div></div>
-- <br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" rel="noreferrer" target="_blank">http://www.api-digital.com</a> --<br>
<br>
Check out the new Asterisk community forum at: <a href="https://community.asterisk.org/" rel="noreferrer" target="_blank">https://community.asterisk.org/</a><br>
<br>
New to Asterisk? Start here:<br>
      <a href="https://wiki.asterisk.org/wiki/display/AST/Getting+Started" rel="noreferrer" target="_blank">https://wiki.asterisk.org/wiki/display/AST/Getting+Started</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
   <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" rel="noreferrer" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a></blockquote></div>