Refer to the exhibit. An engineer must redistribute networks 192.168.10.0/24 and 192.168.20.0/24 into OSPF from EIGRP, where the metric must be added when traversing through multiple hops to start an external route of 20. The engineer notices that the external metric is fixed and does not add at each hop. Which configuration resolves the issue?
- R2(config)#access-list 10 permit
192.168.10.0 0.0.0.255
R2(config)#access-list 10 permit
192.168.20.0 0.0.0.255
!
R2(config)#route-map RD permit 10
R2(config-route-map)#match ip address 10
R2(config-route-map)#set metric 20
R2(config-route-map)#set metric-type type-2
!
R2(config)#router ospf 10
R2(confjg-router)#redistribute eigrp 10
subnets route-map RD - R2(config)#access-list 10 permit
192.168.10.0 0.0.0.255
R2(config)#access-list 10 permit
192.168.20.0 0.0.0.255
!
R2(config)#route-map RD permit 10
R2(config-route-map)#match ip address 10
R2(config-route-map)#set metric 20
R2(config-route-map)#set metric-type type-1
!
R2(config)#router ospf 10
R2(config-router)#redistribute eigrp 10
subnets route-map RD - R1(config)#access-list 10 permit
192.168.10.0 0.0.0.255
R1(config)#access-list 10 permit
192.168.20.0 0.0.0.255
!
R1(config)#route-map RD permit 10
R1(config-route-map)#match ip address 10
R1(config-route-map)#set metric 20
R1(config-route-map)#set metric-type type-1
!
R1(config)#router ospf 10
R1(config-router)#redistribute eigrp 10
subnets route-map RD - R1(config)#access-list 10 permit
192.168.10.0 0.0.0.255
R1(config)#access-list 10 permit
192.168.20.0 0.0.0.255
!
R1(config)#route-map RD permit 10
R1(config-route-map)#match ip address 10
R1(config-route-map)#set metric 20
R1(config-route-map)#set metric-type type-2
!
R1(config)#router ospf 10
R1(config-router)#redistribute eigrp 10
subnets route-map RD
Answer(s): B
Explanation:
We have to set the metric-type to E1, which includes the internal cost to ASBR added to the externalcost-> Only Option B and Option C are correct.We need to redistribute on R2, not R1-> Only Option B is correct.
Reveal Solution Next Question