<div dir="ltr">Ok David, will give feedback soon.<div>rgds,</div><div>Lu.<br><br><div class="gmail_quote">On Thu, Oct 9, 2008 at 11:53 AM,  <span dir="ltr">&lt;<a href="mailto:users-request@lists.kamailio.org">users-request@lists.kamailio.org</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Send Users mailing list submissions to<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:users@lists.kamailio.org">users@lists.kamailio.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://lists.kamailio.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.kamailio.org/cgi-bin/mailman/listinfo/users</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:users-request@lists.kamailio.org">users-request@lists.kamailio.org</a><br>
<br>
You can reach the person managing the list at<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<a href="mailto:users-owner@lists.kamailio.org">users-owner@lists.kamailio.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of Users digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
 &nbsp; 1. Re: No audio both ways. (David Villasmil)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Thu, 9 Oct 2008 11:07:12 +0200<br>
From: &quot;David Villasmil&quot; &lt;<a href="mailto:david.villasmil.work@gmail.com">david.villasmil.work@gmail.com</a>&gt;<br>
Subject: Re: [Kamailio-Users] No audio both ways.<br>
Cc: <a href="mailto:users@lists.kamailio.org">users@lists.kamailio.org</a><br>
Message-ID:<br>
 &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a href="mailto:9853f4ff0810090207p11d15bddt8dca8f57370c83c9@mail.gmail.com">9853f4ff0810090207p11d15bddt8dca8f57370c83c9@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Try adding a:<br>
<br>
nat=yes<br>
<br>
to the kamailio/openser peer definition and test<br>
<br>
dvg<br>
<br>
On Thu, Oct 9, 2008 at 10:58 AM, luzango mfupe &lt;<a href="mailto:luzango.mfupe@gmail.com">luzango.mfupe@gmail.com</a>&gt;wrote:<br>
<br>
&gt;<br>
&gt; Hi mates,I have this setup:<br>
&gt; Xlite----&gt;Openser----&gt;Asterisk------&gt;VoIP to PTSN Provider<br>
&gt;<br>
&gt; I use kamailio 1.3.3(port5060), MediaProxy and Asterisk 1.4 (port 5065) on<br>
&gt; the same Debian Box in Realtime with no NAT. Asterisk connects calls to the<br>
&gt; VoIP to PSTN provider. I am able to establish calls towards the PSTN<br>
&gt; side(Landline &amp; Mobiles) &nbsp;but with no audio. I can hear the ringing tone but<br>
&gt; when the call connects and the conversation begin i hear nothing so as the<br>
&gt; Callee side.<br>
&gt;<br>
&gt; Below are my configs,the ngrep captured packets and codecs.<br>
&gt;<br>
&gt; ####################################################################################<br>
&gt; route[4] {<br>
&gt; &nbsp; &nbsp; # routing to the public network<br>
&gt; &nbsp; &nbsp; rewritehostport(&quot;xx.xxx.xxx.xx:5065&quot;);<br>
&gt; &nbsp; &nbsp; t_on_failure(&quot;2&quot;);<br>
&gt; &nbsp; &nbsp; if (!t_relay()) {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; sl_reply_error();<br>
&gt; &nbsp; &nbsp; };<br>
&gt; exit;<br>
&gt; }<br>
&gt;<br>
&gt; route[6] {<br>
&gt; &nbsp; &nbsp; #<br>
&gt; &nbsp; &nbsp; # -- NAT handling --<br>
&gt; &nbsp; &nbsp; #<br>
&gt; &nbsp; &nbsp; if (isbflagset(6) || isbflagset(7)) {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; append_hf(&quot;P-hint: Route[6]: mediaproxy \r\n&quot;);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; use_media_proxy();<br>
&gt; &nbsp; &nbsp; };<br>
&gt; }<br>
&gt;<br>
&gt; route[10] {<br>
&gt; &nbsp; &nbsp; #from an internal domain -&gt; inbound<br>
&gt; &nbsp; &nbsp; #Native SIP destinations are handled using the location table<br>
&gt; &nbsp; &nbsp; #Gateway destinations are handled by regular expressions<br>
&gt; &nbsp; &nbsp; append_hf(&quot;P-hint: inbound-&gt;inbound \r\n&quot;);<br>
&gt;<br>
&gt; &nbsp; &nbsp; if (uri=~&quot;^sip:0[1-9][0-9]+@.*&quot;) {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; if (is_user_in(&quot;credentials&quot;,&quot;local&quot;)) {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; strip(1);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; prefix(&quot;27&quot;);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;route(6);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;route(4);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; exit;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; } else {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sl_send_reply(&quot;403&quot;, &quot;No permissions for local calls&quot;);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; exit;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; };<br>
&gt; &nbsp; &nbsp; };<br>
&gt;<br>
&gt; if (uri=~&quot;^sip:00[1-9][0-9]+@.*&quot;) {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; if (is_user_in(&quot;credentials&quot;,&quot;int&quot;)) {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;strip(2);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;route(6);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; route(4);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; exit;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; } else {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sl_send_reply(&quot;403&quot;, &quot;No permissions for international calls&quot;);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; };<br>
&gt; &nbsp; &nbsp; };<br>
&gt;<br>
&gt;<br>
&gt; ###################################################################################<br>
&gt; This call was from the xlite softphone 1974 towards the Landline<br>
&gt; 0123825710.<br>
&gt;<br>
&gt; ###################################################################################<br>
&gt; U 2008/12/06 03:38:43.896057 <a href="http://196.212.209.18:46738" target="_blank">196.212.209.18:46738</a> -&gt; kamailio IP:5060<br>
&gt; &nbsp; INVITE sip:0123825710@KAMAILIO ip SIP/2.0..Via: SIP/2.0/UDP <a href="http://192.168.0.55" target="_blank">192.168.0.55</a><br>
&gt; :<br>
&gt;<br>
&gt; &nbsp; 46738;branch=z9hG4bK-d8754z-2d5e73428b95d262-1---d8754z-;rport..Max-Forward<br>
&gt; &nbsp; s: 70..Contact: &lt;<a href="http://sip:1974@196.212.209.18:46738" target="_blank">sip:1974@196.212.209.18:46738</a>&gt;..To:<br>
&gt; &quot;0123825710&quot;&lt;sip:01238<br>
&gt; &nbsp; 25710@kamailio IP&gt;..From: &lt;sip:1974@kamailio IP&gt;;tag=353dd217..Call-ID:<br>
&gt; &nbsp; &nbsp;MGRiNzM0ZGYxZTk1ZDI3ZjZmMTRhMDVlNTQ0NTUwZjg...CSeq: 1 INVITE..Allow:<br>
&gt; INVIT<br>
&gt; &nbsp; E, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE,<br>
&gt; INFO..Cont<br>
&gt; &nbsp; ent-Type: application/sdp..User-Agent: X-Lite release 1014k stamp<br>
&gt; 47051..Co<br>
&gt; &nbsp; ntent-Length: 237....v=0..o=- 1 2 IN IP4 192.168.0.55..s=CounterPath<br>
&gt; X-Lite<br>
&gt; &nbsp; &nbsp;3.0..c=IN IP4 192.168.0.55..t=0 0..m=audio 60782 RTP/AVP 0 8 3<br>
&gt; 101..a=fmtp<br>
&gt; &nbsp; :101 0-15..a=rtpmap:101 telephone-event/8000..a=alt:1 1 : ljiQYRpD<br>
&gt; NiMZsfdZ<br>
&gt; &nbsp; &nbsp;<a href="http://192.168.0.55" target="_blank">192.168.0.55</a> 60782..a=sendrecv..<br>
&gt;<br>
&gt; U 2008/12/06 03:38:43.896350 Kamailio IP:5060 -&gt; <a href="http://196.212.209.18:46738" target="_blank">196.212.209.18:46738</a><br>
&gt; &nbsp; SIP/2.0 407 Proxy Authentication Required..Via: SIP/2.0/UDP<br>
&gt; <a href="http://192.168.0.55:46" target="_blank">192.168.0.55:46</a><br>
&gt;<br>
&gt; &nbsp; 738;branch=z9hG4bK-d8754z-2d5e73428b95d262-1---d8754z-;rport=46738;received<br>
&gt; &nbsp; =196.212.209.18..To: &quot;0123825710&quot;&lt;sip:0123825710@kamailioIP&gt;;tag=329cfea<br>
&gt; &nbsp; a6ded039da25ff8cbb8668bd2.dcfe..From: &lt;sip:1974@kamailioIP&gt;;tag=353dd217<br>
&gt; &nbsp; ..Call-ID: MGRiNzM0ZGYxZTk1ZDI3ZjZmMTRhMDVlNTQ0NTUwZjg...CSeq: 1<br>
&gt; INVITE..Pr<br>
&gt; &nbsp; oxy-Authenticate: Digest realm=&quot;<a href="http://41.208.212.97" target="_blank">41.208.212.97</a>&quot;,<br>
&gt; nonce=&quot;4939d8cfeb060ab14354<br>
&gt; &nbsp; 85eee811cdf644f759a2&quot;..Content-Length: 0....<br>
&gt;<br>
&gt; U 2008/12/06 03:38:44.086313 <a href="http://196.212.209.18:46738" target="_blank">196.212.209.18:46738</a> -&gt; kamailio IP:5060<br>
&gt; &nbsp; ACK sip:0123825710@kamailio IP SIP/2.0..Via: SIP/2.0/UDP<br>
&gt; <a href="http://192.168.0.55:467" target="_blank">192.168.0.55:467</a><br>
&gt; &nbsp; 38;branch=z9hG4bK-d8754z-2d5e73428b95d262-1---d8754z-;rport..To:<br>
&gt; &quot;012382571<br>
&gt; &nbsp; 0&quot;&lt;sip:0123825710@kamailioIP&gt;;tag=329cfeaa6ded039da25ff8cbb8668bd2.dcfe.<br>
&gt; &nbsp; .From: &lt;<a href="mailto:sip%3A1974@41.208.212.97">sip:1974@41.208.212.97</a> &lt;<a href="mailto:sip%253A1974@41.208.212.97">sip%3A1974@41.208.212.97</a>&gt;&gt;;tag=353dd217..Call-ID:<br>
&gt; MGRiNzM0ZGYxZTk1ZDI3<br>
&gt; &nbsp; ZjZmMTRhMDVlNTQ0NTUwZjg...CSeq: 1 ACK..Content-Length: 0....<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; U 2008/12/06 03:38:44.582208 asterisk IP:5065 -&gt; kamailio IP:5060<br>
&gt; &nbsp; SIP/2.0 100 Trying..Via: SIP/2.0/UDP kamailio IP;branch=z9hG4bKd78.7bd576<br>
&gt; &nbsp; 24.0;received=kamailio IP..Via: SIP/2.0/UDP <a href="http://192.168.0.55:46738" target="_blank">192.168.0.55:46738</a><br>
&gt; ;received=1<br>
&gt; &nbsp; <a href="http://96.212.209.18" target="_blank">96.212.209.18</a><br>
&gt; ;branch=z9hG4bK-d8754z-2aedec27a8ddd96c-1---d8754z-;rport=4673<br>
&gt; &nbsp; 8..Record-Route: &lt;sip:kamailio IP;lr=on;ftag=353dd217;nat=yes&gt;..From: &lt;si<br>
&gt; &nbsp; p:1974@kamailio IP&gt;;tag=353dd217..To:<br>
&gt; &quot;0123825710&quot;&lt;sip:0123825710@41.208.<br>
&gt; &nbsp; 212.97&gt;..Call-ID: MGRiNzM0ZGYxZTk1ZDI3ZjZmMTRhMDVlNTQ0NTUwZjg...CSeq: 2<br>
&gt; INV<br>
&gt; &nbsp; ITE..User-Agent: Asterisk PBX..Allow: INVITE, ACK, CANCEL, OPTIONS, BYE,<br>
&gt; RE<br>
&gt; &nbsp; FER, SUBSCRIBE, NOTIFY..Supported: replaces..Contact:<br>
&gt; &lt;sip:27123825710@41.2<br>
&gt; &nbsp; 08.212.97:5065&gt;..Content-Length: 0....<br>
&gt;<br>
&gt; U 2008/12/06 03:38:44.711225 <a href="http://70.42.72.49:5060" target="_blank">70.42.72.49:5060</a> -&gt; Asterisk IP:5065<br>
&gt; &nbsp; SIP/2.0 100 Giving a try..Via: SIP/2.0/UDP Asterisk IP:5065;branch=z9hG4b<br>
&gt; &nbsp; K22abec12;rport=5065..From: &quot;1974&quot; &lt;sip:1974@AsteriskIP:5065&gt;;tag=as6a7c<br>
&gt; &nbsp; b89f..To: &lt;<a href="mailto:sip%3A1214650027123825710@70.42.72.49">sip:1214650027123825710@70.42.72.49</a>&lt;<a href="mailto:sip%253A1214650027123825710@70.42.72.49">sip%3A1214650027123825710@70.42.72.49</a>&gt;&gt;..Call-ID:<br>

&gt; 1934f5d443abffe07<br>
&gt; &nbsp; c59d0a42215b49c@41.208.212.97..CSeq: 102 INVITE..Server: OpenSER<br>
&gt; (1.3.2-not<br>
&gt; &nbsp; ls (i386/solaris))..Content-Length: 0....<br>
&gt;<br>
&gt; U 2008/12/06 03:38:47.206445 <a href="http://70.42.72.49:5060" target="_blank">70.42.72.49:5060</a> -&gt; Asterisk IP:5065<br>
&gt; &nbsp; SIP/2.0 183 Session Progress..Via: SIP/2.0/UDP Asterisk IP:5065;branch=z9<br>
&gt; &nbsp; hG4bK22abec12;rport=5065..From: &quot;1974&quot; &lt;sip:1974@AsteriskIP:5065&gt;;tag=as<br>
&gt; &nbsp; 6a7cb89f..To: &lt;<a href="mailto:sip%3A1214650027123825710@70.42.72.49">sip:1214650027123825710@70.42.72.49</a>&lt;<a href="mailto:sip%253A1214650027123825710@70.42.72.49">sip%3A1214650027123825710@70.42.72.49</a>&gt;<br>

&gt; &gt;;tag=cba-1a6e-48ecbab6..<br>
&gt; &nbsp; Call-ID: 1934f5d443abffe07c59d0a42215b49c@Asterisk IP..CSeq: 102<br>
&gt; INVITE..<br>
&gt; &nbsp; Contact: &lt;<a href="mailto:sip%3A1214650027123825710@70.42.72.138">sip:1214650027123825710@70.42.72.138</a>&lt;<a href="mailto:sip%253A1214650027123825710@70.42.72.138">sip%3A1214650027123825710@70.42.72.138</a>&gt;&gt;..Date:<br>

&gt; Wed, 08 Oct 2008 13:<br>
&gt; &nbsp; 50:49 GMT..Server: BRSIP v2.0.1.2..Record-Route: &lt;sip:<a href="http://70.42.72.49" target="_blank">70.42.72.49</a><br>
&gt; ;lr=on;fta<br>
&gt; &nbsp; g=as6a7cb89f&gt;..Content-Type: application/sdp..Content-Length:<br>
&gt; 212....v=0..o<br>
&gt; &nbsp; =BRSDP 792898 792898 IN IP4 216.49.201.22..s=BRSDP Session..c=IN IP4<br>
&gt; 216.49<br>
&gt; &nbsp; .201.22..t=0 0..m=audio 27852 RTP/AVP 0 101..a=ptime:20..a=rtpmap:0<br>
&gt; PCMU/80<br>
&gt; &nbsp; 00..a=rtpmap:101 telephone-event/8000..a=fmtp:101 0-15..<br>
&gt;<br>
&gt; U 2008/12/06 03:38:47.206891 Asterisk IP:5065 -&gt; Kamailio IP:5060<br>
&gt; &nbsp; SIP/2.0 183 Session Progress..Via: SIP/2.0/UDP kamailio IP;branch=z9hG4bK<br>
&gt; &nbsp; d78.7bd57624.0;received=kamailio IP..Via: SIP/2.0/UDP <a href="http://192.168.0.55:46738" target="_blank">192.168.0.55:46738</a><br>
&gt; ;<br>
&gt; &nbsp; received=<a href="http://196.212.209.18" target="_blank">196.212.209.18</a><br>
&gt; ;branch=z9hG4bK-d8754z-2aedec27a8ddd96c-1---d8754z-;<br>
&gt; &nbsp; rport=46738..Record-Route: &lt;sip:<a href="http://41.208.212.97" target="_blank">41.208.212.97</a><br>
&gt; ;lr=on;ftag=353dd217;nat=yes&gt;.<br>
&gt; &nbsp; .From: &lt;sip:1974@kamilio IP&gt;;tag=353dd217..To: &quot;0123825710&quot;&lt;sip:01238257<br>
&gt; &nbsp; <a href="mailto:10@41.208.212.97">10@41.208.212.97</a>&gt;;tag=as4377a96d..Call-ID:<br>
&gt; MGRiNzM0ZGYxZTk1ZDI3ZjZmMTRhMDVl<br>
&gt; &nbsp; NTQ0NTUwZjg...CSeq: 2 INVITE..User-Agent: Asterisk PBX..Allow: INVITE,<br>
&gt; ACK,<br>
&gt; &nbsp; &nbsp;CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY..Supported:<br>
&gt; replaces..Conta<br>
&gt; &nbsp; ct: &lt;sip:27123825710@Asterisk IP:5065&gt;..Content-Type:<br>
&gt; application/sdp..Co<br>
&gt; &nbsp; ntent-Length: 287....v=0..o=root 2664 2664 IN IP4<br>
&gt; 41.208.212.97..s=session.<br>
&gt; &nbsp;.c=IN IP4 41.208.212.97..t=0 0..m=audio 19202 RTP/AVP 8 0 3<br>
&gt; 101..a=rtpmap:8<br>
&gt; &nbsp; &nbsp;PCMA/8000..a=rtpmap:0 PCMU/8000..a=rtpmap:3 GSM/8000..a=rtpmap:101<br>
&gt; telepho<br>
&gt; &nbsp; ne-event/8000..a=fmtp:101 0-16..a=silenceSupp:off - - -<br>
&gt; -..a=ptime:20..a=se<br>
&gt; &nbsp; ndrecv..<br>
&gt;<br>
&gt; U 2008/12/06 03:38:47.207106 Kamailio IP:5060 -&gt; <a href="http://196.212.209.18:46738" target="_blank">196.212.209.18:46738</a><br>
&gt; &nbsp; SIP/2.0 183 Session Progress..Via: SIP/2.0/UDP <a href="http://192.168.0.55:46738" target="_blank">192.168.0.55:46738</a><br>
&gt; ;received=<br>
&gt; &nbsp; <a href="http://196.212.209.18" target="_blank">196.212.209.18</a><br>
&gt; ;branch=z9hG4bK-d8754z-2aedec27a8ddd96c-1---d8754z-;rport=467<br>
&gt; &nbsp; 38..Record-Route: &lt;sip:kamailio IP;lr=on;ftag=353dd217;nat=yes&gt;..From: &lt;s<br>
&gt; &nbsp; ip:1974@Kamailio IP&gt;;tag=353dd217..To:<br>
&gt; &quot;0123825710&quot;&lt;sip:0123825710@kamilio IP&gt;;tag=as4377a96d..Call-ID:<br>
&gt; MGRiNzM0ZGYxZTk1ZDI3ZjZmMTRhMDVlNTQ0NTUwZ<br>
&gt; &nbsp; jg...CSeq: 2 INVITE..User-Agent: Asterisk PBX..Allow: INVITE, ACK,<br>
&gt; CANCEL,<br>
&gt; &nbsp; OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY..Supported: replaces..Contact:<br>
&gt; &lt;sip:<br>
&gt; &nbsp; <a href="http://27123825710@41.208.212.97:5065" target="_blank">27123825710@41.208.212.97:5065</a>&gt;..Content-Type:<br>
&gt; application/sdp..Content-Len<br>
&gt; &nbsp; gth: 287....v=0..o=root 2664 2664 IN IP4 Asterisk IP..s=session..c=IN IP4<br>
&gt; &nbsp; &nbsp;41.208.212.97..t=0 0..m=audio 19202 RTP/AVP 8 0 3 101..a=rtpmap:8<br>
&gt; PCMA/800<br>
&gt; &nbsp; 0..a=rtpmap:0 PCMU/8000..a=rtpmap:3 GSM/8000..a=rtpmap:101<br>
&gt; telephone-event/<br>
&gt; &nbsp; 8000..a=fmtp:101 0-16..a=silenceSupp:off - - -<br>
&gt; -..a=ptime:20..a=sendrecv..<br>
&gt;<br>
&gt;<br>
&gt; ########################################################################################<br>
&gt; Sip.conf<br>
&gt; [general]<br>
&gt; context=from-trunk<br>
&gt; bindport=5065<br>
&gt; autocreatepeer=yes<br>
&gt; bindaddr=xx.xxx.xxx.xx<br>
&gt;<br>
&gt;<br>
&gt; disallow=all<br>
&gt; ;allow=gsm<br>
&gt; ;allow=amr<br>
&gt; allow=alaw<br>
&gt; allow=ulaw<br>
&gt; allow=gsm<br>
&gt; ;allow=ilbc<br>
&gt; ;disallow=all<br>
&gt; ;<br>
&gt; ;useragent=Asterisk PBX<br>
&gt; dtmfmode = rfc2833<br>
&gt;<br>
&gt;<br>
&gt; domain=xx.xxx.xxx.xx &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; Add IP address as local domain<br>
&gt;<br>
&gt; [Provider]<br>
&gt; disallow=all<br>
&gt; canreinvite=no<br>
&gt; context=from-trunk<br>
&gt; allow=all<br>
&gt; ;allow=ulaw<br>
&gt; ;allow=gsm<br>
&gt; host=xx.xx.xx.xx<br>
&gt; insecure=port,invite<br>
&gt; type=peer &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ; we only want to call out, not be<br>
&gt; call$<br>
&gt; dtmfmode=rfc2833<br>
&gt;<br>
&gt; #########################################################################################<br>
&gt; Here is my codecs<br>
&gt;<br>
&gt; 41*CLI&gt; core show translation<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Translation times between formats (in milliseconds) for one second<br>
&gt; of data<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Source Format (Rows) Destination Format (Columns)<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; g723 gsm ulaw alaw g726aal2 adpcm slin lpc10 g729 speex ilbc g726<br>
&gt; g722 amr<br>
&gt; &nbsp; &nbsp; &nbsp;g723 &nbsp; &nbsp;- &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp;- &nbsp; &nbsp; &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp;-<br>
&gt; &nbsp; &nbsp;- &nbsp; -<br>
&gt; &nbsp; &nbsp; &nbsp; gsm &nbsp; &nbsp;- &nbsp; - &nbsp; &nbsp;2 &nbsp; &nbsp;2 &nbsp; &nbsp; &nbsp; &nbsp;2 &nbsp; &nbsp; 2 &nbsp; &nbsp;1 &nbsp; &nbsp; 5 &nbsp; &nbsp;- &nbsp; &nbsp;19 &nbsp; &nbsp;- &nbsp; &nbsp;2<br>
&gt; &nbsp; &nbsp;- &nbsp;14<br>
&gt; &nbsp; &nbsp; &nbsp;ulaw &nbsp; &nbsp;- &nbsp; 5 &nbsp; &nbsp;- &nbsp; &nbsp;1 &nbsp; &nbsp; &nbsp; &nbsp;2 &nbsp; &nbsp; 2 &nbsp; &nbsp;1 &nbsp; &nbsp; 5 &nbsp; &nbsp;- &nbsp; &nbsp;19 &nbsp; &nbsp;- &nbsp; &nbsp;2<br>
&gt; &nbsp; &nbsp;- &nbsp;14<br>
&gt; &nbsp; &nbsp; &nbsp;alaw &nbsp; &nbsp;- &nbsp; 5 &nbsp; &nbsp;1 &nbsp; &nbsp;- &nbsp; &nbsp; &nbsp; &nbsp;2 &nbsp; &nbsp; 2 &nbsp; &nbsp;1 &nbsp; &nbsp; 5 &nbsp; &nbsp;- &nbsp; &nbsp;19 &nbsp; &nbsp;- &nbsp; &nbsp;2<br>
&gt; &nbsp; &nbsp;- &nbsp;14<br>
&gt; &nbsp;g726aal2 &nbsp; &nbsp;- &nbsp; 5 &nbsp; &nbsp;2 &nbsp; &nbsp;2 &nbsp; &nbsp; &nbsp; &nbsp;- &nbsp; &nbsp; 2 &nbsp; &nbsp;1 &nbsp; &nbsp; 5 &nbsp; &nbsp;- &nbsp; &nbsp;19 &nbsp; &nbsp;- &nbsp; &nbsp;1<br>
&gt; &nbsp; &nbsp;- &nbsp;14<br>
&gt; &nbsp; &nbsp; adpcm &nbsp; &nbsp;- &nbsp; 5 &nbsp; &nbsp;2 &nbsp; &nbsp;2 &nbsp; &nbsp; &nbsp; &nbsp;2 &nbsp; &nbsp; - &nbsp; &nbsp;1 &nbsp; &nbsp; 5 &nbsp; &nbsp;- &nbsp; &nbsp;19 &nbsp; &nbsp;- &nbsp; &nbsp;2<br>
&gt; &nbsp; &nbsp;- &nbsp;14<br>
&gt; &nbsp; &nbsp; &nbsp;slin &nbsp; &nbsp;- &nbsp; 4 &nbsp; &nbsp;1 &nbsp; &nbsp;1 &nbsp; &nbsp; &nbsp; &nbsp;1 &nbsp; &nbsp; 1 &nbsp; &nbsp;- &nbsp; &nbsp; 4 &nbsp; &nbsp;- &nbsp; &nbsp;18 &nbsp; &nbsp;- &nbsp; &nbsp;1<br>
&gt; &nbsp; &nbsp;- &nbsp;13<br>
&gt; &nbsp; &nbsp; lpc10 &nbsp; &nbsp;- &nbsp; 6 &nbsp; &nbsp;3 &nbsp; &nbsp;3 &nbsp; &nbsp; &nbsp; &nbsp;3 &nbsp; &nbsp; 3 &nbsp; &nbsp;2 &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp;20 &nbsp; &nbsp;- &nbsp; &nbsp;3<br>
&gt; &nbsp; &nbsp;- &nbsp;15<br>
&gt; &nbsp; &nbsp; &nbsp;g729 &nbsp; &nbsp;- &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp;- &nbsp; &nbsp; &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp;-<br>
&gt; &nbsp; &nbsp;- &nbsp; -<br>
&gt; &nbsp; &nbsp; speex &nbsp; &nbsp;- &nbsp; 6 &nbsp; &nbsp;3 &nbsp; &nbsp;3 &nbsp; &nbsp; &nbsp; &nbsp;3 &nbsp; &nbsp; 3 &nbsp; &nbsp;2 &nbsp; &nbsp; 6 &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp;3<br>
&gt; &nbsp; &nbsp;- &nbsp;15<br>
&gt; &nbsp; &nbsp; &nbsp;ilbc &nbsp; &nbsp;- &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp;- &nbsp; &nbsp; &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp;-<br>
&gt; &nbsp; &nbsp;- &nbsp; -<br>
&gt; &nbsp; &nbsp; &nbsp;g726 &nbsp; &nbsp;- &nbsp; 5 &nbsp; &nbsp;2 &nbsp; &nbsp;2 &nbsp; &nbsp; &nbsp; &nbsp;1 &nbsp; &nbsp; 2 &nbsp; &nbsp;1 &nbsp; &nbsp; 5 &nbsp; &nbsp;- &nbsp; &nbsp;19 &nbsp; &nbsp;- &nbsp; &nbsp;-<br>
&gt; &nbsp; &nbsp;- &nbsp;14<br>
&gt; &nbsp; &nbsp; &nbsp;g722 &nbsp; &nbsp;- &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp;- &nbsp; &nbsp; &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp; - &nbsp; &nbsp;- &nbsp; &nbsp;-<br>
&gt; &nbsp; &nbsp;- &nbsp; -<br>
&gt; &nbsp; &nbsp; &nbsp; amr &nbsp; &nbsp;- &nbsp; 6 &nbsp; &nbsp;3 &nbsp; &nbsp;3 &nbsp; &nbsp; &nbsp; &nbsp;3 &nbsp; &nbsp; 3 &nbsp; &nbsp;2 &nbsp; &nbsp; 6 &nbsp; &nbsp;- &nbsp; &nbsp;20 &nbsp; &nbsp;- &nbsp; &nbsp;3<br>
&gt; &nbsp; &nbsp;- &nbsp; -<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; With best regards,<br>
&gt; Lu.<br>
&gt;<br>
&gt; --<br>
&gt; Luzango Mfupe<br>
&gt; TUUNE MOBILE<br>
&gt; Tel:0128440528/0123825710<br>
&gt; Tshwane-RSA<br>
&gt;<br>
&gt; &quot;...Ships are safe in harbor, but they were never meant to stay<br>
&gt; there.......&quot;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Users mailing list<br>
&gt; <a href="mailto:Users@lists.kamailio.org">Users@lists.kamailio.org</a><br>
&gt; <a href="http://lists.kamailio.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.kamailio.org/cgi-bin/mailman/listinfo/users</a><br>
&gt;<br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.kamailio.org/pipermail/users/attachments/20081009/37b9135c/attachment.htm" target="_blank">http://lists.kamailio.org/pipermail/users/attachments/20081009/37b9135c/attachment.htm</a><br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.kamailio.org">Users@lists.kamailio.org</a><br>
<a href="http://lists.kamailio.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.kamailio.org/cgi-bin/mailman/listinfo/users</a><br>
<br>
<br>
End of Users Digest, Vol 41, Issue 24<br>
*************************************<br>
</blockquote></div><br><br clear="all"><br>-- <br>Luzango Mfupe<br>TUUNE MOBILE<br>Tel:0128440528/0123825710<br>Tshwane-RSA<br><br>&quot;...Ships are safe in harbor, but they were never meant to stay there.......&quot;<br>

</div></div>