重分佈

                                  

重分佈直連和靜態redis

 

如上圖所示:實驗內容是 ide

R1是靜態的默認路由 spa

R2是運行rip orm

R4是運行eigrp router

R5是運行ospf blog

 

R3e0/0 i p 10.10.10 .1  255.255.255.0 ip

R3e0/1 i p 11.11.11 .1  255.25.255.0 ci

R3e0/2 i p 12.12.12 .1  255.255.255.0 路由

R3 e0/3 i p 13.13.13 .1   255.255.255.0 get

 

其中r1  r2    r4   r5 ip地址分別爲

10.10.10 .2  255.255.255.0

11.11.11 .2  255.255.255.0

12.12.12 .2  255.255.255.0

13.13.13 .2  255.255.255.0

 

而後再r3上分別啓動rip  eigrp  ospf

R3(config)#router rip

R3(config-router)#no au

R3(config-router)#ver 2

R3(config-router)#net 11.11.11 .0

R3(config-router)#exit

R3(config)#router e

R3(config)#router eigrp 111

R3(config-router)#no au

R3(config-router)#net 12.12.12 .0

R3(config-router)#exit

R3(config)#router os

R3(config)#router ospf 111

R3(config-router)#net 13.13.13 .0 0.0.0.255 area 0.

 

 

接着分別在r 2    r4   r5  上啓動rip  eigrp  ospf

R2(config)#router rip

R2(config-router)#no au

R2(config-router)#ver 2

R2(config-router)#net 11.11.11 .0

 

 

R4(config)#router eigrp 111

R4(config-router)#no au

R4(config-router)#net 12.12.12 .0

 

 

R5(config)#router os

R5(config)#router ospf 111

R5(config-router)#net 13.13.13 .0 0.0.0.255 area 0

 

 

接下來你確定會想,這麼幾個路由器啓用不一樣的協議,鬼才行會通呢,

不過還真的有鬼,只要咱們敲上幾個簡單的命令,不通都難啊?這就是

重分佈!!

 

 

首先咱們在r3路由器上

 

R3(config)#router rip

R3(config-router)#redistribute connected

 

R3(config)#router eigrp 111

R3(config-router)#redistribute connected

 

R3(config)#router ospf 111

R3(config-router)#redistribute connected subnets (ospf比較特殊,因此後面要加上參數)

 

 

 

 

這時候就能使不一樣協議之間的路由實現相通了

 

接着咱們再在r3r1上配個靜態的默認路由

 

R3(config)#ip route 0.0.0 .0 0.0.0.0 10.10.10.2

R1(config)#ip route 0.0.0 .0 0.0.0.0 10.10.10.1

 

而後再在r2   r4    r5

R2(config)#router rip

R2(config-router)#red

R2(config-router)#redistribute s

R2(config-router)#redistribute static

 

 

R4(config)#router eigrp 111

R4(config-router)#red

R4(config-router)#redistribute s

R4(config-router)#redistribute static

 

 

R5(config)#router ospf 111

R5(config-router)#default-information originate always   / ospf使特殊的 靜態的只能敲這個命令

 

 

完畢!!!

相關文章
相關標籤/搜索