<font face="trebuchet ms,sans-serif">How do I get a load balanced setup with failover (through drouting)..?<br>1. I have set up my routing logic in the main routing block. <br>2. Have set t_on_failure(&quot;1&quot;); in is_method(&quot;INVITE &quot;)<br>

<br>this in my failure_route:<br><br><span style="font-family:courier new,monospace">        if (!do_routing(&quot;10&quot;)) {</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">                send_reply(&quot;503&quot;, &quot;No Rules matching the URI&quot;);</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">                xlog(&quot;Do_Routing failed........\n&quot;);</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">                exit;</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">        }</span><br style="font-family:courier new,monospace"><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">        if (use_next_gw()) {</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">                xlog(&quot;In use_next_gw\n&quot;);</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">                t_relay();</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">                exit;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">        }</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">        else {</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">                xlog(&quot;In else case.... \n&quot;);</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">                t_reply (&quot;503&quot;, &quot;Service not available&quot;);</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">                exit;</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">        }</span><br style="font-family:courier new,monospace">But it only redirects the first few calls, as soon as the dr_status becomes enable=&gt;no. I start getting 503...<br>

Please point out where I&#39;m going wrong...<br><br>Thanks.<br></font>