当前位置: 技术问答>linux和unix
linux 主机双网卡双网关配置 (高分悬赏)
来源: 互联网 发布时间:2017-05-08
本文导语: 本帖最后由 gongxiude 于 2013-12-27 23:23:17 编辑 各位江湖大佬帮帮忙,我弄了很长时间都没搞定 主机ip信息 网卡信息 eth2 10.110.16.4/25 网关10.110.16.1 eth3 20.0.8.83/28 网关 20.0.8.81 网卡配置如下: [root@PBX-1 network-scri...
主机ip信息
网卡信息
eth2 10.110.16.4/25 网关10.110.16.1
eth3 20.0.8.83/28 网关 20.0.8.81
网卡配置如下:
[root@PBX-1 network-scripts]# cat ifcfg-eth2
DEVICE=eth2
HWADDR=00:50:56:b7:47:2b
NM_CONTROLLED=yes
ONBOOT=yes
IPADDR=20.0.8.83
NETMASK=255.255.255.240
BOOTPROTO=none
TYPE=Ethernet
USERCTL=no
IPV6INIT=no
GATEWAY=20.0.8.81
=========================================================
[root@PBX-1 network-scripts]# cat ifcfg-eth3
DEVICE=eth3
HWADDR=00:50:56:b7:47:2a
ONBOOT=yes
BOOTPROTO=none
TYPE=Ethernet
IPV6INIT=no
IPADDR=10.110.16.4
NETMASK=255.255.255.128
====================================================
手动添加路由的命令如下
[root@PBX-1 network-scripts]# route add -net 10.110.16.0 netmask 255.255.255.128 gw 10.110.16.1 dev eth3
配置好后的路由信息
[root@PBX-1 network-scripts]# route -nn
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
20.0.8.80 0.0.0.0 255.255.255.240 U 0 0 0 eth2
10.110.16.0 10.110.16.1 255.255.255.128 UG 0 0 0 eth3
10.110.16.0 0.0.0.0 255.255.255.128 U 0 0 0 eth3
169.254.0.0 0.0.0.0 255.255.0.0 U 1002 0 0 eth3
169.254.0.0 0.0.0.0 255.255.0.0 U 1003 0 0 eth2
0.0.0.0 20.0.8.81 0.0.0.0 UG 0 0 0 eth2
===================================================================
问题阐述
ping 网关全都能ping通,查看路由跳数总是从默认路由出去,没有走我手动添加的10.110.16.1网关,如何实现两边都可以正常连接。
|
你是想访问外网的时候用10的那个网关。?