centos5.4配置双网卡

案例:服务器是dell x系列,成功安装了centos5.4。目前有两条网线,一条是内网另一条是外网。

在网络配置了配置两条网线的ip相关信息,并且都激活。


出现问题:eth1(外网)同一网段不能ping通服务器网络


解决方法:

1、route /etc/sysconfig/network-script/ifcfg-eth0 修改onboot(貌似打错了) 改为yes

2、route /etc/sysconfig/network-script/ifcfg-eth1 同上

3、vi /etc/rc.local 

添加默认网关

route add dafaut gw eth1网关


4、添加静态路由ip

route add -net 192.168.0.0/24 gw 192.168.0.1

192.168.0.0/24 服务器内网网段

192.168.0.1 服务器路由网段


你可能感兴趣的:(Linux)