For 5.26, the task I have a question on is:
Configure R4 to redistribute the VLAN 43 subnet into EIGRP with the tag value of 4
The SG shows this:
R4:
router eigrp 100
redistribute rip metric 100000 100 255 1 1500 route-map RIP_TO_EIGRP
!
ip prefix-list VLAN_43 seq 5 permit 204.12.1.0/24
!
route-map RIP_TO_EIGRP permit 10
match ip address prefix-list VLAN_43
set tag 4
!
route-map RIP_TO_EIGRP permit 20
My solution was:
router eigrp 100
redistribute connected route-map RMAP_VLAN43
Rack1R4#show route-map RMAP_VLAN43
route-map RMAP_VLAN43, permit, sequence 10
Match clauses:
interface FastEthernet0/0
Set clauses:
tag 4
Policy routing matches: 0 packets, 0 bytes
My results were correct, but is there anything anyone can see that would be of concern?
Thanks!