博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
路由器基础配置之路由重分布
阅读量:5253 次
发布时间:2019-06-14

本文共 3266 字,大约阅读时间需要 10 分钟。

拓扑图如下

 

 

 

接下来配置路由器ip地址

路由器0

enable  进入特权模式

config t  进入全局配置模式

interface s0/2/0  进入接口

ip address 192.168.20.2 255.255.255.0  配置ip地址

clock rate 6400  设置同步时间

no shu  激活接口

exit  返回

interface s0/3/0  进入接口

ip address 192.168.60.2 255.255.255.0    配置ip    

clock rate 6400  设置同步时间

no shu  激活接口

exit  返回

interface s0/3/1  进入接口

ip address 192.168.50.2 255.255.255.0   配置ip

clock rate 6400  设置同步时间  

no shu  激活接口

 

路由器1

enable  进入特权模式

config t  进入全局配置模式

interface s0/2/0  进入接口模式

ip address 192.168.40.1 255.255.255.0  配置ip地址

clock rate 6400  设置同步时间

no shu  激活接口

exit  返回

interface s0/3/0  进入接口

ip address 192.168.10.2 255.255.255.0   配置ip

clock rate 6400  设置同步时间

no shu  激活接口

exit  返回

interface s0/3/1  进入接口

ip address 192.168.60.1 255.255.255.0  配置ip

clock rate 6400   设置同步时间

no shu  激活接口

 

路由器2

enable  进入特权模式

config t  进入全局配置模式

interface s0/2/0  进入接口模式

ip address 192.168.40.2 255.255.255.0  配置ip地址

clock rate 6400  设置同步时间

no shu  激活接口

exit  返回

interface s0/3/0  进入接口

ip address 192.168.30.2 255.255.255.0   设置ip

clock rate 6400  设置同步时间

no shu  激活接口

exit  返回

interface s0/3/1  进入接口

ip address 192.168.50.1 255.255.255.0  设置ip

clock rate 6400  设置同步时间

no shu  激活接口

 

路由器3

enable 进入特遣模式

config t  进入全局配置模式

interface s0/3/0  进入接口

ip address 192.168.20.1 255.255.255.0  配置ip

no shu  激活接口

exit  返回

interface f0/0  进入接口

ip address 192.168.3.254 255.255.255.0  配置ip

no shu  激活接口

 

 路由器4

enable  进入特权模式

config t  进入全局配置模式

interface s0/3/0  进入接口

ip address 192.168.10.1 255.255.255.0  配置ip

no shu  激活接口

exit  返回

interface f0/0  进入接口

ip address 192.168.1.254 255.255.255.0  配置ip

no shu  激活接口

 

路由器5

enable  进入特权模式

config t  进入全局配置模式

interface s0/3/0  进入接口

ip address 192.168.30.1 255.255.255.0  配置ip

no shu  激活接口

exit  返回

interface f0/0  进入接口

ip address 192.168.2.254 255.255.255.0  设置ip

no shu  激活接口

路由器IP地址配置完毕,开始配置路由器的rip,静态和重分布

路由器0

在全局配置模式下

router rip

ver2

network 192.168.20.0

network 192.168.50.0

network 192.168.60.0

redistribute static metric 1  配置静态路由的重分布,配置静态路由的重分布同时可以配置一条直连路由的重分布

redistribute connected metric 1

exit

ip router 192.168.3.0 255.255.255.0 192.168.20.1  设置去往3.0网段的静态路由

 

路由器1

enable  进入特权模式

config t  进入全局配置模式

router rip

ver2

network 192.168.10.0

network 192.168.40.0

network 192.168.60.0

redistribute static metric 1  配置静态路由的重分布,配置静态路由的重分布同时可以配置一条直连路由的重分布

redistribute connected metric 1

exit

ip router 192.168.1.0 255.255.255.0 192.168.10.1  设置去往1.0网段的静态路由

 

路由器2

enable  进入特权模式

config t  进入全局配置模式

router rip

ver2

network 192.168.40.0

network 192.168.50.0

network 192.168.30.0

redistribute static metric 1  配置静态路由的重分布,配置静态路由的重分布同时可以配置一条直连路由的重分布

redistribute connected metric 1

exit

ip router 192.168.2.0 255.255.255.0 192.168.30.1  设置去往2.0网段的静态路由

 

路由器3

enable  进入特权模式

config t  进入全局配置模式

ip router 192.168.1.0 255.255.255.0 192.168.20.2  设置去往1.0网段的静态路由

ip router 192.168.2.0 255.255.255.0 192.168.20.2  设置去往2.0网段的静态路由

router3不是边界路由器,无需设置重分布

 

 

路由器4

enable  进入特权模式

config t  进入全局配置模式

ip router 192.168.3.0 255.255.255.0 192.168.10.2  设置去往3.0网段的静态路由

ip router 192.168.2.0 255.255.255.0 192.168.10.2  设置去往2.0网段的静态路由

router4不是边界路由器,无需设置重分布

 

 

router5

enable  进入特权模式

config t  进入全局配置模式

ip router 192.168.1.0 255.255.255.0 192.168.30.2  设置去往1.0网段的静态路由

ip router 192.168.3.0 255.255.255.0 192.168.30.2  设置去往3.0网段的静态路由

router5不是边界路由器,无需设置重分布

转载于:https://www.cnblogs.com/ruanjie/p/9220942.html

你可能感兴趣的文章
c++ map
查看>>
exit和return的区别
查看>>
Django 相关
查看>>
Python(软件目录结构规范)
查看>>
codeforces水题100道 第二十二题 Codeforces Beta Round #89 (Div. 2) A. String Task (strings)
查看>>
c++||template
查看>>
条件断点 符号断点
查看>>
.net学习之继承、里氏替换原则LSP、虚方法、多态、抽象类、Equals方法、接口、装箱拆箱、字符串------(转)...
查看>>
python的多行注释
查看>>
连接Oracle需要jar包和javadoc文档的下载
查看>>
UVA 10976 - Fractions Again?!
查看>>
Dreamweaver cc新版本css单行显示
查看>>
【android】安卓的权限提示及版本相关
查看>>
JavaScript可否多线程? 深入理解JavaScript定时机制
查看>>
Java基础教程——网络基础知识
查看>>
Kruskal基础最小生成树
查看>>
【hdu 1429】胜利大逃亡(续)
查看>>
What's New for Visual C# 6.0
查看>>
ExtJs学习笔记之ComboBox组件
查看>>
关于收费软件
查看>>