cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
780
Views
0
Helpful
2
Replies

default route EIGRP with route-map

Maxim Ototuk
Level 1
Level 1

Hello,

I have EIGRP, I need distribution default route.

It's working:

router eigrp 1
redistribute static metric 1000 100 255 1 1500

ip route 0.0.0.0 0.0.0.0 10.10.10.10

But I need using route-map for set different metrics for static routes

It isn't working:

router eigrp 1
redistribute static metric 1000 100 2 route-map ALL

route-map ALL permit 10
match ip address prefix-list DefRoute

ip prefix-list DefRoute seq 5 permit 0.0.0.0/0

ip route 0.0.0.0 0.0.0.0 10.10.10.10


What to do?

2 Replies 2

acampbell
VIP Alumni
VIP Alumni

Hello Maxim,

I tested this on my test jig.

The basics are correct but you have a typo in redist route map

You must match the route map name exactly including the case

Your route map

route-map All permit 10 (NOTE All)

so make sure you use

router eigrp 1
redistribute static metric 1000 100 2 .... route-map All

Regards

Alex

Regards, Alex. Please rate useful posts.

sorry, I made a mistake when typed.

Review Cisco Networking for a $25 gift card