cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
595
Views
9
Helpful
5
Replies

BGP default route redistributed into EIGRP with HSRP address

c.keil
Level 1
Level 1

All,

I'm looking for a scenario to redistribute a BGP learned default route into eigrp.

Up to now eigrp is not taking that default route, and I don't know why.

Preferred would be to redistribute the default route via the HSRP address, active Router into the cloud

Any reply is very helpful, thanks in advance

Christof

5 Replies 5

thisisshanky
Level 11
Level 11

I assume you are using a controlled redistribution (with filters) to redistribute the default to BGP.

Try this,

access-list 45 permit 0.0.0.0

router eigrp 45

distribute-list 45 out bgp

Sankar Nair
UC Solutions Architect
Pacific Northwest | CDW
CCIE Collaboration #17135 Emeritus

Thanks for your reply, but anyway it doesn't solve my problem

The scenario is like follow:

ISP-A---> ISP-B ---FW ---Router A ------Router B -- Cloud

HSRP | | HSRP

Router C-- Router E -- Cloud

ISP-B is propagating at default route via IBGP to Router A and Router C

That's working perfectly. Router A and C have to redistribute that route to Router B and Router D via EIGRP.

The BGP default route actually got not redistributed into EIGRP.

The statements

router eigrp yyy

redistribute bgp route-map xxx

route-map xxx

match ip address n

access-list n permit 0.0.0.0

doesn't work, The eigrp as is not learning the default route from bgp, so it's not a problem to filter the route, it's a general problem to get the default route learned by eigrp

Try and add under eigrp "default-metric 10000 100 255 1 1500" or "redistribute bgp # metric 10000 100 255 1 1500 route-map xxx ".

Hope it helps.

Steve

Did you specify the metric (default-metric) command or atleast the EIGRP metric on the redistribute command. EIGRP wont learn the route redistributed unless it has the proper metrics defined.

Try,

router eigrp 45

default-metric

Sankar Nair
UC Solutions Architect
Pacific Northwest | CDW
CCIE Collaboration #17135 Emeritus

I tried already both, but EIGRP is not learning and redistributing that default route. I will now try it with ospf, because I don't see any chance for the moment

anyway thanks and if you have any other idea please come back to me :-)

Christof