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

Redistribute eigrp

lalsingh
Level 1
Level 1

I am trying to troubleshoot an issue with a router that has a REDISTRIBUTE EIGRP statement that uses a ROUTE-MAP parameter.

router eigrp 101

redistribute eigrp 100 route-map abc

!

!

route-map abc permit 10

match ip address 5

!

access-list 5 permit 0.0.0.0

access-list 5 deny any

I am not sure what this access-list is doing. I know the default wild-card mask is 0.0.0.0 . Is this saying that no routes from the AS 100 should be redistributed?

Could you have two connected eigrp autonomous systems with the same subnets within each system? For example AS 100 with 10.100.X.X address and AS 200 with 10.100.X.X addresses.

2 Replies 2

donewald
Level 6
Level 6

This route map would only permit the 0.0.0.0 route into EIGRP 101 from EIGRP 100.

Yes you can run multiple EIGRP processes where each can own the same network portions.

Hope this helps you,

Don

Thanks for your help.