ex:

vi ifcfg-eth1:
IPADDR=192.168.1.2
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
DNS1=202.96.209.133

vi ifcfg-eth2:
IPADDR=192.168.2.2
NETMASK=255.255.255.0
GATEWAY=192.168.2.1
DNS1=210.22.70.3

vi /etc/iproute2/rt_tables:
252 ct
251 cu

vi /etc/rc.d/rc.local:
ip route add 192.168.1.0/24 dev eth1 src 192.168.1.2 table ct
ip route add 192.168.2.0/24 dev eth2 src 192.168.2.2 table cu
route
 add default gw 192.168.1.1

ip route add default via 192.168.1.1 table ct
ip route add default via 192.168.2.1 table cu

ip rule add from 192.168.1.2 table ct
ip rule add from 192.168.1.2 table cu 
ip route list table ct
ip route list table cu