Hello everyone,<br><br>I am trying to debug why my rtpproxy isn't working. I have the following setup, on my LAN. <br><br>softphone (<a href="http://192.168.1.100">192.168.1.100</a>) -> openser/rtpproxy (<a href="http://192.168.1.10">
192.168.1.10</a>) -> asterisk (<a href="http://192.168.1.12">192.168.1.12</a>)<br><br>The rtpproxy is running and I see commands flying thru it.<br><br>the following route works<br><br> if(method=="INVITE") {
<br> if(uri=~"^sip:[0-9]{6}1[0-9]*{10}@") {<br> forward(<a href="http://192.168.1.12">192.168.1.12</a>,5060);<br> };<br> }<br><br>when I replace it with this route
<br><br> if(method=="INVITE") {<br> if(uri=~"^sip:[0-9]{6}1[0-9]*{10}@") {<br> forward(<a href="http://192.168.1.12">192.168.1.12</a>,5060);<br> };
<br> force_rport();<br> force_rtp_proxy();<br> }<br><br>I get dead air while asterisk logs show that my test message is playing. How should I proceed to debug this?<br><br>ScriptHead<br>
<br>