Redistributino from BGP into EIGRP

gaby_978gaby_978 Member Posts: 222
I am unable to redistribute BGP routes into EIGRP. The router where the BGP routes are being learned for some reason is not redistributing the BGP routes into EIGRP. My configs are as follow:

bbrtr1>>>>>> where I am learning one BGP route 10.10.10.29

bbrtr1#sh ip route
Gateway of last resort is not set

10.0.0.0/8 is variably subnetted, 7 subnets, 2 masks
C 10.2.3.2/32 is directly connected, Serial0/0
C 10.2.1.0/30 is directly connected, Serial0/1
C 10.2.3.0/30 is directly connected, Serial0/0
C 10.2.1.2/32 is directly connected, Serial0/1
C 10.10.10.25/32 is directly connected, Loopback0
B 10.10.10.29/32 [200/0] via 10.2.1.2, 01:42:51 <<<<
route in question
D EX 10.10.10.21/32 [170/2297856] via 10.2.3.2, 01:57:25, Serial0/0

EIGRP and BGP CONFIGS:

router eigrp 1
redistribute connected
redistribute static
network 10.2.3.0 0.0.0.3
neighbor 10.2.3.2 Serial0/0
default-metric 10000 10 255 1 1500
no auto-summary
!
router bgp 100
no synchronization
bgp log-neighbor-changes
bgp redistribute-internal
redistribute connected
redistribute static
redistribute eigrp 1
neighbor 10.2.1.2 remote-as 100
no auto-summary

====================================
=======================================

ROUTER NOT LEARNING THE 10.10.10.29 ROUTE

lanrtr1#sh ip route
Gateway of last resort is not set

10.0.0.0/8 is variably subnetted, 6 subnets, 2 masks
D EX 10.2.1.0/30 [170/2681856] via 10.2.3.1, 07:30:49, Serial0
C 10.2.3.1/32 is directly connected, Serial0
C 10.2.3.0/30 is directly connected, Serial0
D EX 10.2.1.2/32 [170/2681856] via 10.2.3.1, 07:30:49, Serial0
D EX 10.10.10.25/32 [170/2297856] via 10.2.3.1, 07:30:49, Serial0
C 10.10.10.21/32 is directly connected, Loopback0
===============================================


Router (core1)
Router (bbrtr1)
Router(lanrtr1)


==================================================

The only way I can get lanrtr1 to know how to get to 10.10.10.29 is by placing a static route in bbrtr1.
==================================================

Thanks in advance
‎"If you spend too much time thinking about a thing,
you'll never get it done"

Comments

  • networker050184networker050184 Mod Posts: 11,962 Mod
    If you want to redistribute BGP into EIGRP you need a statement for it under EIGRP.
    An expert is a man who has made all the mistakes which can be made.
  • gaby_978gaby_978 Member Posts: 222
    If you want to redistribute BGP into EIGRP you need a statement for it under EIGRP.

    Yes you are right. I might have posted my previous configs. Let me double check.
    ‎"If you spend too much time thinking about a thing,
    you'll never get it done"
  • gaby_978gaby_978 Member Posts: 222
    My confusion was that at one point i was running IBGP and then made changes to EBGP because i was having issues redistributing that route. I removed some of the redistribute statements and forgot to add them back. I then added the bgp redistribute-internal under bgp and forgot to add the redistribute bgp 100 back. Thanks for pointing out the missing statements. :)
    ‎"If you spend too much time thinking about a thing,
    you'll never get it done"
Sign In or Register to comment.