在大型的企業中,可能在同一網內使用到多種路由協議,為了實現多種路由協議的協同工作,路由器可以使用路由重分發(route redistribution)將其學習到的一種路由協議的路由通過另一種路由協議廣播出去,這樣網路的所有部分都可以連通了。 為了實現重分發,路由器必須同時執行多種路由協議,這樣,每種路由協議才可以取路由表中的所有或部分其他協議的路由來進行廣播。
redistriute protocol [metric metric-value]
[match internal | external nssa-external type]
[route-map map-tag]
路由重發布是,必須給重分布而來的路由指定的度量值被稱為預設度量值(metric值)或種子度量值,它是在重分發配置期間定義的。ospf度量值為:代價,rip度量值為:跳數
1、配置r1介面ip位址
r1(config)
#inte***ce gigabitethernet 0/0
r1(config-if)
#ip address 192.168.1.1 255.255.255.0
r1(config-if)
#no shutdown
2、配置r1動態路由rip
r1(config)
#router rip
r1(config-router)
#version 2
r1(config-router)
#network 192.168.1.0
3、配置r2介面ip位址
r2(config)
#inte***ce gigabitethernet 0/0
r2(config-if)
#ip address 192.168.1.2 255.255.255.0
r2(config-if)
#no shutdown
r2(config)
#inte***ce gigabitethernet 0/1
r2(config-if)
#ip address 192.168.2.2 255.255.255.0
r2(config-if)
#no shutdown
4、配置r2動態路由rip和ospf
r2(config)
#router rip
r2(config-router)
#version 2
r2(config-router)
#network 192.168.1.0
r2(config-router)
#network 192.168.2.0 0.0.0.255 area 0
r2(config-router)
#router-id 2.2.2.2
r2(config-router)
#network 192.168.2.0 0.0.0.255 area 0
6、配置r3的介面位址
r3(config)
#inte***ce gigabitethernet 0/1
r3(config-if)
#ip address 192.168.2.3 255.255.255.0
r3(config-if)
#no shutdown
7、配置r3的ospf
r3(config)
#router ospf 1
r3(config-router)
#router-id 3.3.3.3
r3(config-router)
#network 192.168.2.0 0.0.0.255 area 0
8、配置路由重發布策略
r2(config)
#router rip
r2(config-router)
#redistribute ospf 1 metric 5
r2(config)
#router ospf 1
r2(config-router)
#redistribute rip subnets
9、驗證
從上圖可以r3已經從rip協議中學到了路由條目了。
路由協議之間的重發布
路由協議之間的重發布 路由重發布的使用情況 1.當我們從乙個舊的路由協議向乙個新的路由協議遷移的時候,要求系統不可中斷的遷移 例如金融系統 2.總站與各個執行不同路由協議的分支機構之間的連線。seed metrics種子度量 種子度量就是其他協議匯入到該路由協議的預設度量值。我們可以在路由程序中使用...
eigrp rip ospf 靜態路由重發布
路由重發布 這裡寫描述 邊界路由器的配置 router eigrp 1 只要其它路由協議往eigrp匯入都給五引數 redistribute rip metric 1000 0 100 100 100 redistribute ospf 1 metric 1000 100 100 100 1000 ...
思科路由配置之EIGRP協議
思科路由配置之eigrp協議 今天要給在大家介紹的是eigrp,即加強型內部閘道器路由協議,該協議繼承了igrp協議的最大的優點是向量路由權,在路由計算中要對通道佔用率和通道可信度等因素作全面的綜合考慮,所以eigrp的路由計算更為準確,更能反映網路的實際情況,下面讓我們看一下配置過程。一 介面連線...