On Nov 25, 2004 at 16:44, Razvan Nemesiu forum@netconnect.ro wrote:
Hi,
I want to make a ser backup route.I have a route for examples that forwards the calls to a specific ip destination.I want to make a backup route to send those calls to another ip destination whenever the first ip destination is not available (Not Found ,etc.).
Use a failure route. E.g.:
t_on_failure("1"); t_relay_to_udp("ip1"); break;
...
failure_route[1]{ t_relay_to_udp("ip2"); };
Andrei