码迷,mamicode.com
首页 > 其他好文 > 详细

centos7-添加双网卡

时间:2020-01-09 20:30:28      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:class   sysconfig   ase   size   添加   tables   src   tail   sdn   

操作系统版本

CentOS Linux release 7.7.1908

配置双网关

/etc/iproute2/rt_tables文件中增加两个新的路由表

252 e1   #自定义, 不重复即可
251 e0

手动添加静态路由, 从哪里进来就从哪里出去, 本机出去的走默认网关

ip route flush table b1
ip route add default via 200.198.66.1 dev br1 src 200.198.66.2 table b1
ip route add 127.0.0.0/8 dev lo table b1
ip rule add from 200.198.66.2 table b1
ip route flush table b2
ip route add default via 192.168.66.1 dev br2 src 192.168.66.2 table b2
ip route add 127.0.0.0/8 dev lo table b2
ip rule add from 192.168.66.2 table b2

默认网关可以在/etc/sysconfig/network设置

cat /etc/sysconfig/network
# Created by anaconda
GATEWAY=192.168.66.1

注意: 重启失效 !!!!
可以写到rc.local下

原文链接:https://blog.csdn.net/l1028386804/article/details/77455929

centos7-添加双网卡

标签:class   sysconfig   ase   size   添加   tables   src   tail   sdn   

原文地址:https://www.cnblogs.com/peitianwang/p/12173172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!