Hello,

I would like to know if this routing is possible and if so how. I have a scenario where I have a opensips proxy that I want to use just to send requests to other opensips proxy witch would then process the request. Here is the scenario: client --> p1 --> p2 --> client --> p2. I have been able to route to proxy 2 but the replies are still being routed back via proxy 1 then to the client. I was hoping to send the replies directly to the client and not back thru the first proxy. Is this possible? I am currently using the dispatcher module to send the requests to the second proxy. I also noticed that the SIP packets have a VIA header of the first proxies IP address when it reaches the second proxy. I thought the record_route was causing this, so I moved it after I send the request to the second proxy. Here is a small snipet of my code:

if (is_method("REGISTER")) {
   if (!ds_select_dst("2", "3")) {
            sl_send_reply("503", "Rawr!!");
   };
   t_relay();
}


Thanks

Nathaniel


_______________________________________________
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users

Reply via email to