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

CentOS 6 配置静态IP及路由

时间:2018-03-09 21:21:01      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:基础知识

CentOS 6 配置静态IP及路由

一.手动改网卡

step1:vim /etc/udev/rules.d/70-persistent-net.rules
将其中对应的要修改的网卡最后的NAME=eth* 改为对应的名称

技术分享图片

step2:modprobe -r e1000卸载网卡模块(这里因为知道了网卡模块是e1000)
            查询网卡模块的命令是 ethtool -i eth2 查看驱动模块名

技术分享图片

step3:modprobe e1000 加载网卡模块
step4:cd /etc/sysconfig/network-scripts中将原网卡的配置文件改名,格式为 ifcfg-网卡名

技术分享图片

step5:修改上述配置文件,将其中的DEVICE=改为网卡名 将其中的DDR改为对应的MAC地址

技术分享图片

step6:ifdown网卡名
step7:ifup网卡名

二.手动改路由

step1:vim /etc/sysctl.conf 
    将其中的net.ipv4.ip_forward=1
    因为这里用的是将虚拟机作为路由器,所以需要开启路由转发功能

技术分享图片

step2:sysctl -p 
    重新加载配置文件,使其开启路由转发功能
step3:写入路由策略
    例:route add -net 2.2.2.0/24 gw 2.2.2.253

技术分享图片

step4:关闭防火墙
    iptables -F

三.模拟两台pc通过四个路由通信

模拟图:
技术分享图片

分析:

step1:建立两个pc 配置静态ip
step2:建立四个路由(由虚拟机代替,添加两个网卡),配置其静态ip
step3:配置完后,添加路由策略

step1:以一台pc举例,pc2同样的原理

vim /etc/udev/rules.d/70-persistent-net.rules
vim /etc/sysconfig/network-sripts/ifchg-eth*

技术分享图片
step2:配置四个路由

vim /etc/udev/rules.d/70-persistent-net.rules
vim /etc/sysconfig/network-sripts/ifchg-eth*

技术分享图片

step3:添加路由策略

route1:
route add -net 1.1.1.0/24 gw2.2.2.254
route add -net 3.3.3.0/24 gw3.3.3.252
route add -net 4.4.4.0/24 gw3.3.3.252
route add -net 5.5.5.0/24 gw3.3.3.252

技术分享图片

route 2
route add -net 2.2.2.0/24 gw 2.2.2.254
route add -net 3.3.3.0/24 gw 3.3.3.252
route add -net 4.4.4.0/24 gw 3.3.3.252
route add -net 5.5.5.0/24 gw 3.3.3.252

技术分享图片

route 3
route add -net 1.1.1.0/24 gw 3.3.3.253
route add -net 2.2.2.0/24 gw 3.3.3.253
route add -net 4.4.4.0/24 gw 4.4.4.251
route add -net 5.5.5.0/24 gw 4.4.4.251

技术分享图片

rotute 4
route add -net 1.1.1.0/24 gw 4.4.4.252
route add -net 2.2.2.0/24 gw 4.4.4.252
route add -net 3.3.3.0/24 gw 4.4.4.252
route add -net 5.5.5.0/24 gw 5.5.5.251

技术分享图片

pc1
route add default gw 1.1.1.254

技术分享图片

pc 2
route add default gw 5.5.5.251

技术分享图片

step4:测试成功:
技术分享图片
技术分享图片

CentOS 6 配置静态IP及路由

标签:基础知识

原文地址:http://blog.51cto.com/13572413/2084683

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