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

Liunx双网卡(内网、外网)同时使用

时间:2020-07-17 11:31:43      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:ali   default   eth   span   efault   scripts   pre   tool   The   

条件:

系统:CentOS 7

网卡: eth0  内网 网关:192.168.1.1     
            eth1  外网 网关:10.0.0.1

配置:

先安装net-tools:yum -y install net-tools
 route del default
#删除默认路由
 route add -net 192.168.1.0/24 gw 192.168.1.1
#指定内网网关
route add -net 192.168.1.0/24 dev eth0
#指定内网网卡
route add -net 0.0.0.0/0 gw 10.0.0.1
#指定外网网关
route add -net 0.0.0.0/0 dev eth1
#指定外网网卡

写入文件:

[root@dcServer003 ~]# cat /etc/rc.local 
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you dont
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local
route add -net 192.168.1.0/24 gw 192.168.1.1 
route add -net 192.168.1.0/24 dev eth0
route add -net 0.0.0.0/0 gw 10.0.0.1
route add -net 0.0.0.0/0 dev eth1

 

Liunx双网卡(内网、外网)同时使用

标签:ali   default   eth   span   efault   scripts   pre   tool   The   

原文地址:https://www.cnblogs.com/ytyzhn/p/13328449.html

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