1. 程式人生 > >54-高級路由:重分發特性:單點重分發路由反饋

54-高級路由:重分發特性:單點重分發路由反饋

nag ast ria null process sum fig 查看 null0

一、實驗拓撲:
技術分享圖片
二、實驗要求:
在R1上將EIGRP 90 重分發進OSPF 110,再將OSPF重分發進RIP,查看R2、R3、R4路由表將收到哪些路由條目?
三、命令部署:
R1(config)#router ospf 110
R1(config-router)#redistribute eigrp 90 subnets

R1(config)#router rip
R1(config-router)#redistribute ospf 110 metric 10

R1(config)#router eigrp 90
R1(config-router)#redistribute rip metric 100000 10 255 1 1500

四、驗證:
結論:單點重分發不會有路由反饋
R2#show ip route
2.0.0.0/24 is subnetted, 1 subnets
C 2.2.2.0 is directly connected, Loopback0
R 4.0.0.0/8 [120/11] via 12.1.1.1, 00:00:07, FastEthernet0/0
12.0.0.0/24 is subnetted, 1 subnets
C 12.1.1.0 is directly connected, FastEthernet0/0
R 14.0.0.0/8 [120/11] via 12.1.1.1, 00:00:07, FastEthernet0/0
Note:只有OSPF重分發進來的路由,並且打了R標簽。

R3#show ip route
D EX 2.0.0.0/8 [170/30720] via 13.1.1.1, 00:00:44, FastEthernet0/0
3.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 3.3.3.0/24 is directly connected, Loopback0
D 3.0.0.0/8 is a summary, 00:02:21, Null0
12.0.0.0/24 is subnetted, 1 subnets
D EX 12.1.1.0 [170/30720] via 13.1.1.1, 00:00:44, FastEthernet0/0
13.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

C 13.1.1.0/24 is directly connected, FastEthernet0/0
D 13.0.0.0/8 is a summary, 00:02:21, Null0
Note:只有RIP重分發進來的路由,並且打了D EX標簽。

R4#show ip route
O E2 3.0.0.0/8 [110/20] via 14.1.1.1, 00:03:23, Serial2/0
4.0.0.0/24 is subnetted, 1 subnets
C 4.4.4.0 is directly connected, Loopback0
13.0.0.0/24 is subnetted, 1 subnets
O E2 13.1.1.0 [110/20] via 14.1.1.1, 00:03:23, Serial2/0
14.0.0.0/24 is subnetted, 1 subnets
C 14.1.1.0 is directly connected, Serial2/0
Note:只有EIGRP重分發進來的路由,並且打了O E2標簽。

54-高級路由:重分發特性:單點重分發路由反饋