1、 配置位址
2、 配置ospf路由
3、 配置rip
4、 r3上配置靜態路由目標網路192.168.6.0 下一跳192.168.4.2
5、 配置ospf重發布到rip 中
6、 配置rip重分布到ospf中
7、 重發布直連路由到rip 和ospf 中去
8、 重發布靜態路由到rip和ospf中去
9、 重發布預設路由到rip 和ospf中去
基本配置
r1inte***ce fastethernet0/0
ip address 192.168.1.1 255.255.255.0
no shutdown
!
router ospf 1
network 192.168.1.0 0.0.0.255 area 0
! r2
inte***ce fastethernet0/0
ip address 192.168.1.2 255.255.255.0
no shutdown
!
inte***ce fastethernet1/0
ip address 192.168.2.1 255.255.255.0
no shutdown
!
router ospf 1
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
r3inte***ce loopback0
ip address 192.168.5.1 255.255.255.0
!
inte***ce fastethernet0/0
ip address 192.168.2.2 255.255.255.0
no shutdown
!
inte***ce fastethernet1/0
ip address 192.168.3.1 255.255.255.0
no shutdown
!
inte***ce fastethernet2/0
ip address 192.168.4.1 255.255.255.0
no shutdown
router ospf 1
network 192.168.2.0 0.0.0.255 area 0
router rip
version 2
network 192.168.3.0
ip route 192.168.6.0 255.255.255.0 192.168.4.2
r4inte***ce fastethernet0/0
ip address 192.168.3.2 255.255.255.0
no shutdown
!
router rip
version 2
network 192.168.3.0
no auto-summary
r5inte***ce loopback0
ip address 192.168.6.1 255.255.255.0
!
inte***ce fastethernet0/0
ip address 192.168.4.2 255.255.255.0
no shutdown
在路由重發布之前要檢視各路由器的路由條目
r2上的路由資訊
c 192.168.1.0/24 is directly connected, fastethernet0/0
c 192.168.2.0/24 is directly connected, fastethernet1/0
r2#r4上的路由資訊
r4#show ip route
c 192.168.3.0/24 is directly connected, fastethernet0/0
在r3上進行路由重發布
r3(config)#router rip
r3(config-router)#redistribute ospf 1 metric 2 發布ospf到rip
r3(config-router)#redistribute connected 發布直連路由
r3(config-router)#redistribute static metric 5 發布靜態路由
r3(config-router)#default-information originate 發布預設路由
r3(config-router)#exit
r3(config)#
r3(config)#router ospf 1
r3(config-router)#redistribute rip subnets 發布rip到ospf
r3(config-router)#redistribute connected subnets發布直連路由
r3(config-router)#redistribute static subnets發布靜態路由
r3(config-router)#default-information originate always發布預設路由
r4#show ip route
r 192.168.4.0/24 [120/1] via 192.168.3.1, 00:00:02, fastethernet0/0
r 192.168.5.0/24 [120/1] via 192.168.3.1, 00:00:02, fastethernet0/0
r 192.168.6.0/24 [120/5] via 192.168.3.1, 00:00:02, fastethernet0/0
r 192.168.1.0/24 [120/2] via 192.168.3.1, 00:00:02, fastethernet0/0
r 192.168.2.0/24 [120/1] via 192.168.3.1, 00:00:02, fastethernet0/0
c 192.168.3.0/24 is directly connected, fastethernet0/0
r* 0.0.0.0/0 [120/1] via 192.168.3.1, 00:00:02, fastethernet0/0
r4#r2#show ip route
o e2 192.168.4.0/24 [110/20] via 192.168.2.2, 00:08:45, fastethernet1/0
o e2 192.168.5.0/24 [110/20] via 192.168.2.2, 00:08:45, fastethernet1/0
o e2 192.168.6.0/24 [110/20] via 192.168.2.2, 00:08:35, fastethernet1/0
c 192.168.1.0/24 is directly connected, fastethernet0/0
c 192.168.2.0/24 is directly connected, fastethernet1/0
o e2 192.168.3.0/24 [110/20] via 192.168.2.2, 00:08:51, fastethernet1/0
o*e2 0.0.0.0/0 [110/1] via 192.168.2.2, 00:08:28, fastethernet1/0
eigrp rip ospf 靜態路由重發布
路由重發布 這裡寫描述 邊界路由器的配置 router eigrp 1 只要其它路由協議往eigrp匯入都給五引數 redistribute rip metric 1000 0 100 100 100 redistribute ospf 1 metric 1000 100 100 100 1000 ...
選舉DR BDR 老趙網路
選舉dr bdr 這個問題很多人會迷糊,因為ospf協議複雜,這個選舉還要從學生的問題出發,乙個三個路由器的拓撲選舉出兩個dr,這個問題看起來很不正常,你耐心看完我的解析,你就覺得正常了!以下來自我的微信 51net 我們今天直接了當點,先普及下ospf協議中的網路型別 網路型別 hello時間 選...
路由協議之間的重發布
路由協議之間的重發布 路由重發布的使用情況 1.當我們從乙個舊的路由協議向乙個新的路由協議遷移的時候,要求系統不可中斷的遷移 例如金融系統 2.總站與各個執行不同路由協議的分支機構之間的連線。seed metrics種子度量 種子度量就是其他協議匯入到該路由協議的預設度量值。我們可以在路由程序中使用...