A network administrator configures an ACL to filter routes during redistribution, but management traffic stops working. Router R1 config: access-list 100 permit ip 10.0.0.0 0.255.255.255 any ! router eigrp 100 redistribute ospf 1 route-map FILTER ! route-map FILTER permit 10 match ip address 100 R1# show ip route 10.1.1.1 Routing entry for 10.1.1.1/32 Known via "connected", distance 0, metric 0 Redistributing via eigrp 100 What is the root cause?
The implicit deny at the end of the ACL filters out management routes, causing them not to be redistributed.
Why this answer
The ACL only permits 10.0.0.0/8, but the management traffic may use a different source or destination. The implicit deny at the end of the ACL blocks all other routes, including management prefixes. The fix is to add a permit statement for the management network or use a more specific ACL.