Hi guys!<br><br>I&#39;m a novice in VoIP world, and may be missing some important concepts, but recently I&#39;ve faced a problem with client softphone residing behind a port-restricted NAT and a public FS server and can&#39;t find an explanation on why it is happening and how to escape it. <br>


<br>Okey, the problem is as follows. I have a client residing behind port restricted NAT. It can register at our public server and can issue a looped call and hear itself<span style="color: gray;"></span> perfectly well. But when I call to speek to this natted guy from computer exposed to web without any routers he able to hear me for merely a second and then I become muted and he hear nothing. On the other side I can hear this guy quite good, though with slight jittery sound. <br>
<br>If I set bypass_media param in our server&#39;s external profile to true - everything works as it supposed to - we hear one another. But still there is a problem with call originating from that guy - it is being interrupted after some time (after about 30 sec). <br>
<br>Both clients are capable to do STUN and ICE and have these options enabled. Calls are secured with TLS and SRTP enabled on our server. FreeSWITCH is installed on Windows Server 2008 box with open UDP traffic and TCP, UDP ports 5080,5081 opened in order to expose an external profile. As far as I understand, with bypass_media param disabled FreeSWITCH is acting as media proxy and it is unable to do ICE and that should be a reason why that guy can&#39;t hear me. In overmentioned peer2peer scenario switching to no media mode is acceptable, but still there is a question whether this call with media flow bypassing FreeSWITCH is secured? I guess not. Cause I don&#39;t have any certificates installed on clients. <br>
<br>Also, we&#39;ve plans to use our FreeSWITCH as a media conference server. And of course this guy failes to connect to the testing one.<br><br>Below are some of configurations:<br>vars.xml<br>...<br>&lt;X-PRE-PROCESS cmd=&quot;set&quot; data=&quot;external_rtp_ip=74.208.167.44&quot;/&gt;<br>
...<br><br>external.xml<br>...<br>&lt;param name=&quot;inbound-bypass-media&quot; value=&quot;true&quot;/&gt;<br>...<br><br>public dialplan<br>&lt;extension name=&quot;secure_media&quot; continue=&quot;true&quot;&gt;<br>        &lt;condition field=&quot;${sip_has_crypto}&quot; expression=&quot;^(AES_CM_128_HMAC_SHA1_32|AES_CM_128_HMAC_SHA1_80)$&quot; break=&quot;never&quot;&gt;<br>
            &lt;action application=&quot;set&quot; data=&quot;sip_secure_media=true&quot;/&gt;<br>            &lt;action application=&quot;export&quot; data=&quot;sip_secure_media=true&quot;/&gt;<br>            &lt;action application=&quot;playback&quot; data=&quot;misc/8000/call_secured.wav&quot;/&gt;<br>
        &lt;/condition&gt;<br>    &lt;/extension&gt;<br>    <br>    &lt;extension name=&quot;guard_auth&quot; continue=&quot;true&quot;&gt;<br>        &lt;condition field=&quot;${sip_authorized}&quot; expression=&quot;^true$&quot; break=&quot;never&quot;&gt;<br>
            &lt;anti-action application=&quot;respond&quot; data=&quot;407&quot;/&gt;<br>        &lt;/condition&gt;<br>    &lt;/extension&gt;<br>    <br>    &lt;extension name=&quot;simple_conference&quot;&gt;<br>        &lt;condition field=&quot;destination_number&quot; expression=&quot;^(.*)\.conference\..{2}$&quot;&gt;<br>
            &lt;action application=&quot;conference&quot; data=&quot;$1&quot;/&gt;<br>        &lt;/condition&gt;<br>    &lt;/extension&gt;<br>    <br>    &lt;extension name=&quot;one2one&quot;&gt;<br>        &lt;condition field=&quot;destination_number&quot; expression=&quot;(.*)&quot;&gt;<br>
            &lt;action application=&quot;bridge&quot; data=&quot;sofia/external/$1%${domain_name}&quot;/&gt;<br>        &lt;/condition&gt;<br>    &lt;/extension&gt;<br><br>My SDP:<br>Remote SDP:<br>v=0<br>o=- 3456517465 3456517465 IN IP4 91.79.44.168<br>
s=pjmedia<br>c=IN IP4 91.79.44.168<br>t=0 0<br>a=X-nat:2<br>m=audio 1142 RTP/SAVP 103 102 104 117 3 0 8 9 101<br>a=rtpmap:103 speex/16000<br>...<br>a=rtpmap:101 telephone-event/8000<br>a=fmtp:101 0-15<br>a=rtcp:1143 IN IP4 91.79.44.168<br>
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:ee+Xv9etM5t5w3DH5B1hR+i9lrt7BHQhzJIwFv7d<br>a=crypto:2 AES_CM_128_HMAC_SHA1_32 inline:ELeudfX0mgsL+0u7qzGOqdEfg891fMn281BJszkS<br>a=ice-ufrag:70db7dd4<br>a=ice-pwd:708804fe<br>a=candidate:H 1 UDP 39 91.79.44.168 1142 typ host<br>
...<br>And this is the other guy SDP:<br>Remote SDP:<br>v=0<br>o=- 3456517469 3456517470 IN IP4 85.140.191.254<br>s=pjmedia<br>c=IN IP4 85.140.191.254<br>t=0 0<br>a=X-nat:8<br>m=audio 23374 RTP/SAVP 103 101<br>a=rtpmap:103 speex/16000<br>
a=rtpmap:101 telephone-event/8000<br>a=fmtp:101 0-15<br>a=rtcp:23375 IN IP4 85.140.191.254<br>a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:2m4YBCRid0h+5AIaIGmXaqelQsSuK3HP1jtAMoiG<br>a=ice-ufrag:182f5a61<br>a=ice-pwd:1d690863<br>
a=candidate:S 1 UDP 31 85.140.191.254 23374 typ srflx raddr 192.168.2.2 rport 2796<br>...<br>PS sorry for a long post<br>