03-20-2025, 09:43 AM
The given Answer is wrong. It deny the route with tag 200 but this is the route R1 have to redistribute. The correct answer should be:
R1(config)#route-map CCNP permit 10
R1(config-route-map)#match tag 200
R1(config-route-map)#exit
R1(config)#router ospf 10
R1(config-router)#redistribute eigrp 100 subnets route-map CCNP
Here the route with the tag 200 is the only one which will be redistributed. This will advertise the correct subnet.
R1(config)#route-map CCNP permit 10
R1(config-route-map)#match tag 200
R1(config-route-map)#exit
R1(config)#router ospf 10
R1(config-router)#redistribute eigrp 100 subnets route-map CCNP
Here the route with the tag 200 is the only one which will be redistributed. This will advertise the correct subnet.