Link to home
Start Free TrialLog in
Avatar of leblanc
leblanc

asked on

EIGRP - redistribute without the default route

I have a couple of static routes and a default route. Is it possible to redistribute just the static routes and not the default route (ip route 0.0.0.0 0.0.0.0 next_hop). Thanks
SOLUTION
Avatar of Predrag Jovic
Predrag Jovic
Flag of Poland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of leblanc
leblanc

ASKER

Ok. So if I want to only advertise 10.10.10.0 and 10.10.20.0 and not the default route, I can do like below. Correct? How about the metrics, do I need specific metrics or redistribute ... metric 100 1 255 1 1500 should work?Thx

router eigrp 1
redistribute static route-map NO_DEFAULT metric X X X X X
!
route-map NO_DEFAULT permit 10
 match ip address 1
!
access-list 1 deny 0.0.0.0 0.0.0.0
access-list 1 permit 10.10.10.0 255.255.255.0
access-list 1 permit 10.10.20.0 255.255.255.0

Open in new window

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of leblanc

ASKER

Actually, The below is what I should have done:

router eigrp 1
network 10.10.10.0 0.0.0.255
network 10.10.20.0 0.0.0.255
redistribute static route-map NO_DEFAULT metric X X X X X
!
route-map NO_DEFAULT permit 10
 match ip address 1
!
access-list 1 deny 0.0.0.0 0.0.0.0
access-list 1 permit any

Open in new window

ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial