Hi,

The destination node is down. By adding the following code Kamailo re-routing INVITE to a new destination after getting 408 timeout (as below). 


failure_route[MANAGE_FAILURE]
{
   if (t_branch_timeout())
   {
      # change to new destination IP
      $rd = "10.10.10.10";
      t_relay();
      exit;
   }
...
}

However, the ACK message coming from source is still being send to the old destination. How can I reroute other messages in the dialog to be sent to this new destination.. 

Thank,

AS