CentOS 6 配置静态IP及路由

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 6 配置静态IP及路由相关的知识,希望对你有一定的参考价值。

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及路由的主要内容,如果未能解决你的问题,请参考以下文章

centos 6.5未联网及设置静态ip

IP路由及静态路由配置

Centos 6.5双网卡双IP双网关配置

Centos 6.5双网卡双IP双网关配置

centos8.0配置静态IP详解及永久关闭防火墙

centos7.4配置静态路由