Re: [SR-Users] Kamailio with RTPoxy

2011-04-29 Thread alex pappas
Thank you Klaus! It works perfect. regards Alex On Thu, Apr 28, 2011 at 8:49 PM, Klaus Darilion < klaus.mailingli...@pernau.at> wrote: > 8 - SDP is searched for occurrence of RFC1918 addresses > > So I gues you call nat_uac_test("8") for a request which does not have a > body at all. You could

Re: [SR-Users] Kamailio with RTPoxy

2011-04-28 Thread Klaus Darilion
8 - SDP is searched for occurrence of RFC1918 addresses So I gues you call nat_uac_test("8") for a request which does not have a body at all. You could use has_body from textops module to extend the check, e.g: if (has_body("application/sdp") && nat_uac_test("8")) { ... regards klaus Am 28

Re: [SR-Users] Kamailio with RTPoxy

2011-04-28 Thread alex pappas
Dear all, I see in my logs that when the call enters the route : # Caller NAT detection route route[NAT] { #!ifdef WITH_NAT xlog("alx --- ROUTE NAT , we have nat ---"); force_rport(); *if (nat_uac_test("8")) {* if (method=="REGISTER") {

Re: [SR-Users] Kamailio with RTPoxy

2011-04-17 Thread alex pappas
Dear Alex, The configuration is the default with WITH_NAT defined. I have some extra logs (xlog("RTPPROXY started..")) enabled in the RTPPROXY route in order to understand if it is engaged or not. When I make calls behind NAT the RTPPROXY is engaged but I don't see any RTP in traces. Do you have

Re: [SR-Users] Kamailio with RTPoxy

2011-04-15 Thread Alex Balashov
On 04/15/2011 09:58 AM, alex pappas wrote: I have a Kamailio with RTPoxy configured. The purpose is to pass the RTP from this server. When I make calls behind NAT the RTProxy seems to be engaged but in traces I don't see any RTP. Is there anything wrong with the idea or I'm missing something

[SR-Users] Kamailio with RTPoxy

2011-04-15 Thread alex pappas
Dear all, I have a Kamailio with RTPoxy configured. The purpose is to pass the RTP from this server. When I make calls behind NAT the RTProxy seems to be engaged but in traces I don't see any RTP. Is there anything wrong with the idea or I'm missing something in the configuration ? Thank you A