cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
7017
Views
10
Helpful
3
Replies

Redistribute BGP learned default route into EIGRP

2044418Puts
Level 1
Level 1

Hi,

I would like to redistribute a BGP learned default route into EIGRP. I'm using the following config:

router eigrp 65101

redistribute bgp 65101 route-map BGP_DEFAULT_ROUTE_RM

passive-interface default

no passive-interface GigabitEthernet0/0

no passive-interface GigabitEthernet0/1

network 1.1.1.0 0.0.0.63

no auto-summary

eigrp router-id 1.1.1.1

!

router bgp 65101

no synchronization

bgp log-neighbor-changes

bgp redistribute-internal

network 1.1.1.0 mask 255.255.255.192

neighbor 2.1.1.1 remote-as 64000

no auto-summary

route-map BGP_DEFAULT_ROUTE_RM permit 10

match ip address prefix-list DEFAULT_ROUTE_PL

ip prefix-list DEFAULT_ROUTE_PL seq 5 permit 0.0.0.0/0

Using this config (from the BGP Q&A cisco website) I'm not able to get the default route redistributed into the other EIGRP neighbors. The default route isn't in the routing table nor in the topology table.

Anyone any idea's?

I'm using a couple of 2800 series routers and IOS 12.4.24T.

1 Accepted Solution

Accepted Solutions

Harold Ritter
Spotlight
Spotlight

Armand,

You need to configure a "default-metric" under the "router eigrp" process for any route to get redistributed into eigrp.

Regards

Regards,
Harold Ritter, CCIE #4168 (EI, SP)

View solution in original post

3 Replies 3

Harold Ritter
Spotlight
Spotlight

Armand,

You need to configure a "default-metric" under the "router eigrp" process for any route to get redistributed into eigrp.

Regards

Regards,
Harold Ritter, CCIE #4168 (EI, SP)

Yes, you are correct. Found that out a few minutes ago.

Regards.

Is the default in the BGP table ?

ex. sh ip bgp

question :

If there is no default in the BGP table then where and how would the default get into eigrp ?

All your doing in redistribution is taking networks originated in one routing domain and placing them in another routing domain. So if BGP is not originating a default, then no default for eigrp via redist.

HTH