300-410 · Question #75
300-410 Question #75: Real Exam Question with Answer & Explanation
The correct answer is D: route-map FILTER-IN permit 20. The current route-map contains only a 'deny' statement, causing an implicit 'deny all' at the end that blocks all other routes, so adding a 'permit' statement ensures desired routes are accepted.
Question
Refer to the exhibit. A junior engineer updated a branch router configuration. Immediately after the change, the engineer receives calls from the help desk that branch personnel cannot reach any network destinations. Which configuration restores service and continues to block 10.1.1.100/32? BRANCH-RTR# router eigrp 100 network 10.4.31.0 0.0.0.7 network 10.100.100.1 0.0.0.0 distribute-list route-map FILTER-IN in FastEthernet0/0 eigrp router-id 10.100.100.1 ! ip prefix-list 102 seq 10 permit 10.1.1.100/32 ! route-map FILTER-IN deny 10 match ip address prefix-list 102 !
Options
- Aroute-map FILTER-IN deny 5
- Bip prefix-list 102 seq 15 permit 0.0.0.0/32 le 32
- Cip prefix-list 102 seq 5 permit 0.0.0.0/32 le 32
- Droute-map FILTER-IN permit 20
Explanation
The current route-map contains only a 'deny' statement, causing an implicit 'deny all' at the end that blocks all other routes, so adding a 'permit' statement ensures desired routes are accepted.
Common mistakes.
- A. Adding another
denystatement at a lower sequence number would not resolve the issue of the implicitdeny allblocking all valid routes. - B. Modifying the
ip prefix-list 102with apermit 0.0.0.0/32 le 32atseq 15would add a permit-all entry after the specific permit, but since the route-map'sdeny 10matches this prefix-list, it would then deny all traffic, worsening the problem. - C. Modifying the
ip prefix-list 102with apermit 0.0.0.0/32 le 32atseq 5would cause everything to matchprefix-list 102, which is then used bydeny 10in the route-map, resulting in all routes being denied.
Concept tested. Route-map implicit deny, distribute-list
Reference. https://www.cisco.com/c/en/us/td/docs/ios/iproute/command/ip_route_c_book/irc_pi1.html#wp1010372
Topics
Community Discussion
No community discussion yet for this question.