Ok, here is how to enable failover routing in Linux in 3 lines. http://enterprise.linux.com/enterprise/05/04/10/2132252.shtml?tid=129&tid=10... ----------- Enabling failover routing After you have configured your network, the next step is to enable failover routing on your Linux box, so that if the first route dies the router will automatically switch over to the next route. To do so, you'll need to add the default gateway routes provided to you by your ISPs for both your network cards: # route add default gw 61.16.130.97 dev eth0 # route add default gw 200.15.110.90 dev eth1 Finally, modify the /proc/sys/net/ipv4/route/gc_timeout file. This file contains a numerical value that denotes the time in seconds after which the kernel declares a route to be inactive and automatically switches to the other route if available. Change its default value of 300 to some smaller value, say 10 or 15. Save the changes and exit. # echo "10" > /proc/sys/net/ipv4/route/gc_timeout Now your Linux machine is ready to serve as a failover router, automatically and quickly switching to the secondary route every time the primary route fails. -------- -- John Lange President OpenIT ltd. www.Open-IT.ca (204) 885 0872 VoIP, Web services, Linux Consulting, Server Co-Location