centos7下双网卡电信联通双通配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7下双网卡电信联通双通配置相关的知识,希望对你有一定的参考价值。

1、实现:通过运营商提供的智能DNS,把电信用户访问时,数据进电信的网卡,出来时也从电信的网关出来,访问联通时,从联通网卡时,联通网卡出。这样速度就会快,实现双线主机的功能。

2、网卡信息(配置两条网卡信息时需要注释掉一条网关,否则网络将会中断):
电信IP(TEL):1.82.236.21 netmask 255.255.255.240 gateway 1.82.236.17(em4)
联通IP(CNC):113.200.100.231 netmask 255.255.255.240 gateway 113.200.100.225(em1)

3、vi /etc/iproute2/rt_tables,增加网通和电信两个路由表
251 tel 电信路由表
252 cnc 网通路由表

4、设置电信的路由表(命令行直接执行)
ip route flush table tel #清空路由表
ip route add default 1.82.236.17 dev em4 src 1.82.236.21 table tel
ip rule add from 1.82.236.21 table tel

5、设置联通的路由表
ip route flush table cnc
ip route add default via 113.200.100.225 dev em1 src 113.200.100.231 table cnc
ip rule add from 113.200.100.231 table cnc

6、配置network启动脚本文件 在结尾exit 0之前增加如下内容:
# vi /etc/rc.d/init.d/network

ip route flush table tel
ip route add default 1.82.236.17 dev em4 src 1.82.236.21 table tel 
ip rule add from 1.82.236.21 table tel

ip route flush table cnc 
ip route add default via 113.200.100.225 dev em1 src 113.200.100.231 table cnc 
ip rule add from 113.200.100.231 table cnc
exit 0

7、重启系统或网络可能失效,请加入启动脚本:
如果是ubuntu/debian,系统启动脚本是/etc/rc.local
如果是RedHat/centos,系统启动脚本是/etc/rc.d/rc.local

如果是ubuntu/debian,网络启动脚本是/etc/init.d/networking
如果是RedHat/centos,网络启动脚本是/etc/rc.d/init.d/network

以上是关于centos7下双网卡电信联通双通配置的主要内容,如果未能解决你的问题,请参考以下文章

linux 有2个公网ip,一个A电信一个B联通,是双网卡,要怎么配置都能ping通,能实现访问A

Linux网卡配置

dell服务器配置双网卡

电信 联通双线ip接入服务配置

Linux 双网关(电信与联通)

关于linux系统下双网卡同时访问内外网的问题