共计 944 个字符,预计需要花费 3 分钟才能阅读完成。
CentOS 下双网卡单网关路由配置
假定主机的网卡 1 的 IP 地址为:219.223.244.233/21,网卡 2 的 IP 地址为:219.223.242.216/21 单网为:219.223.240.1(这里 21 表示网络地址)
首先,增加网关地址:
route add -net 219.223.240.0 netmask 255.255.248.0 gw 219.223.240.1
其次,修改 /etc/iproute2/rt_tables,添加内容如下:
252 net2
251 net3
#/etc/rc.local 添加原路返回路由,内容如下:
ip route flush table net2
ip route add default via 219.223.240.1 dev eth0 src 219.223.244.233 table net2
ip rule add from 219.223.244.233 table net2
ip route flush table net3
ip route add default via 219.223.240.1 dev eth1 src 219.223.242.216 table net3
ip rule add from 219.223.242.216 table net3
最后,重启电脑即可
推荐阅读 :
RedHat Enterprise Linux AS 4 双网卡负载均衡 http://www.linuxidc.com/Linux/2010-06/26815.htm
针对 RHEL 中双网卡 IP 不能同时被访问的解决方法 http://www.linuxidc.com/Linux/2013-08/88716.htm
CentOS 双网卡绑定实现负载均衡和故障转移 http://www.linuxidc.com/Linux/2013-04/83256.htm
Linux 系统双网卡绑定单个 IP 地址 [CentOS] http://www.linuxidc.com/Linux/2013-03/81493.htm
RedHat 6.2 双网卡绑定 http://www.linuxidc.com/Linux/2013-03/80832.htm
更多 CentOS 相关信息见 CentOS 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=14