On CentOS 5 I manually added a static route to make all packets to one specific IP address use the second network interface:
ip route add 123.456.7.89/32 via 192.168.10.101 dev eth1
Is there a way to make this change be persistent on reboot without adding it to the startup script /etc/rc.d/rc.local
?