<div dir="ltr"><div>following is my config,  I have two Freeswitch, if i stop one of freeswitch and call it won&#39;t failover itself. but if again i call if send call to other FS and if again i call it send to failed one but not auto failover..  <br><br></div>But after my prob detect it is dead then it change status from Active to Probing but that detection time is (10 to 30 second around), mean time it should failover call to other freeswitch right?  we have 1000 call per second and 10/30 second if big :( <br><div><div><br>#### Dispatcher<br>loadmodule &quot;dispatcher.so&quot;<br>modparam(&quot;dispatcher&quot;, &quot;dst_avp&quot;, &quot;$avp(i:271)&quot;)<br>modparam(&quot;dispatcher&quot;, &quot;attrs_avp&quot;, &quot;$avp(i:272)&quot;)<br>modparam(&quot;dispatcher&quot;, &quot;grp_avp&quot;, &quot;$avp(i:273)&quot;)<br>modparam(&quot;dispatcher&quot;, &quot;cnt_avp&quot;, &quot;$avp(i:274)&quot;)<br>modparam(&quot;dispatcher&quot;, &quot;ds_ping_interval&quot;, 5)<br>modparam(&quot;dispatcher&quot;, &quot;ds_probing_threshhold&quot;, 10)<br>modparam(&quot;dispatcher&quot;, &quot;ds_probing_mode&quot;, 1)<br>modparam(&quot;dispatcher&quot;, &quot;options_reply_codes&quot;, &quot;501, 403, 200&quot;)<br>modparam(&quot;dispatcher&quot;, &quot;db_url&quot;, &quot;mysql://opensips:opensipsrw@localhost/opensips&quot;)<br><br><br>route[to_dispatcher] {<br>        # Dispatch to FS<br>        if ( !ds_select_dst(&quot;1&quot;, &quot;4&quot;, &quot;F&quot;)) {<br>                send_reply(&quot;500&quot;,&quot;Unable to dispatch call to Freeswitch&quot;);<br>                exit;<br>        } else {<br>        xlog(&quot;L_WARN&quot;, &quot;dispatcher: Attempting to dispatch call to $du\n&quot;);<br>        }<br>        t_on_failure(&quot;dispatcher_rollover&quot;);<br>        route(relay);<br>}<br><br>failure_route[dispatcher_rollover] {<br>        xlog(&quot;Inside dispatcher failure route\n&quot;);<br>        if (t_was_cancelled()) {<br>                exit;<br>        }<br>       <br>        if(!ds_next_dst()) {<br>                xlog(&quot;L_ERR&quot;, &quot;R-DISPATCHER-ROLLOVER:$ci No more gateways in route set\n&quot;);<br>                t_reply(&quot;503&quot;, &quot;Out of gateways&quot;);<br>                exit;<br>        }<br>        ds_mark_dst(&quot;p&quot;);<br>        xlog(&quot;L_INFO&quot;, &quot;R-DISPATCHER-ROLLOVER:$ci Attempting relay to new gateway: $rd:$rp\n&quot;);<br>        t_on_failure(&quot;dispatcher_rollover&quot;);<br>        route(relay);<br>}<br><br></div></div></div>