Redistribution between EIGRP and Static Routing Protocol
Here in this lab i will show how to configure redistribution between static routing and eigrp.For that configuration i have taken 3 router having total 4 networks.here middle router is configured with both EIGRP and Static Route.This is an static route and eigrp redistribution example lab shown using cisco packet tracer.
If you are preparing for ccnp routing exam you can study below redistribution labs:
Route Redistribution between EIGRP and OSPF.
Route Redistribution between RIP and EIGRP.
Route Redistribution between RIP and OSPF.
Step 1:Assign ip address on Router and PC as shown in above Diagram.
Step 2:Satic Routing Configuration on Router R1:
r1(config)#ip route 4.0.0.0 255.0.0.0 3.0.0.2
r1(config)#ip route 5.0.0.0 255.0.0.0 3.0.0.2
r1(config)#exit
Step 3: Static Routing and EIGRP configuration on Router R2:
r2(config)#ip route 1.0.0.0 255.0.0.0 3.0.0.1
r2(config)#router eigrp 1
r2(config-router)#network 4.0.0.0
r2(config-router)#exit
Step 4:EIGRP configuration on Router R3:
r3(config)#router eigrp 1
r3(config-router)#network 4.0.0.0
r3(config-router)#network 5.0.0.0
Step 5: Redistribute Static Route in EIGRP
r2(config)#router eigrp 1
r2(config-router)#redistribute static
r2(config-router)#redistribute connected
r2(config-router)#exit
r2(config)#do write
Building configuration…
[OK]
r2(config)#
Step 6: Redistribution Route Verification
r2#show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP S 1.0.0.0/8 [1/0] via 3.0.0.1 C 3.0.0.0/8 is directly connected, FastEthernet0/0 C 4.0.0.0/8 is directly connected, FastEthernet0/1 D 5.0.0.0/8 [90/30720] via 4.0.0.2, 00:03:39, FastEthernet0/1