双线服务器,ip表设置

[root@localhost dog]# vim /etc/iproute2/rt_tables
#
# reserved values
#
255     local
254     main
253     default
0       unspec
#
# local
#
#1      inr.ruhep
252 tel 电信
251 cnc 联通
[root@localhost bin]# cat  ip-route.sh
ip route flush table tel
ip route add default via 101.226.199.97 dev em1 src 101.226.199.106 table tel
ip rule add from 101.226.199.106 table tel
ip route flush table cnc
ip route add default via 140.207.193.25 dev em3 src 140.207.193.26 table cnc
ip rule add from 140.207.193.26 table cnc


你可能感兴趣的:(双线服务器,ip表设置)