以内、外双网卡为例设置
内网 eth0 : 10.130.130.165 (要求到达目的ip 10.130.128.0/24)
外网 eth2:192.168.1.71 (要求能够上网,以ping www.baidu.com)
1、配置两个接口的ip地址,查看路由如下
[root@localhost ~]# route
[root@localhost ~]# ping 10.130.128.78 通
[root@localhost ~]# ping www.baidu.com 不通
通过ping上面两个地址或域名,结果如上。只能ping通一个,很明显默认网关在哪边,哪边的目标ip都会通。
2、不妨也增加默认网关192.168.1.1
[root@localhost ~]# route add default gw 192.168.1.1
结果显示只能ping通www.baidu.com,不能ping通10.130.128.78
3、删除默认网关10.130.130.254,修改为静态路由
[root@localhost ~]# route del default gw 10.130.130.254
[root@localhost ~]# ip route add 10.130.128.0/24 via 10.130.130.254
结果显示两个均能ping通。