************************************************************ Lab 1 - Redistributing between EIGRP & OSPF - North Side ************************************************************ ----- R1 ----- router eigrp 100 redistribute ospf 1 metric 10 10 10 10 10 or router eigrp 100 default-metric 10 10 10 10 10 redistribute ospf 1 router ospf 1 redistribute eigrp 100 ************************************************************ Lab 2 - Redistributing between EIGRP AS 100 & AS 200 ************************************************************ ----- R3 ----- router eigrp 100 redistribute eigrp 200 ! router eigrp KBITS ! address-family ipv4 unicast autonomous-system 200 topology base redistribute eigrp 100 ************************************************************ Lab 3 - Redistributing Static Routes into EIGRP 200 ************************************************************ ----- R4 ----- router eigrp KBITS ! address-family ipv4 unicast autonomous-system 200 topology base redistribute static ************************************************************ Lab 4 - Redistributing Connected ************************************************************ Requirement: Make sure that the link between R4 & R9 is injected into EIGRP. Do not run EIGRP on that link. ----- R4 ----- access-list 1 permit 192.1.49.0 0.0.0.255 ! route-map RC match ip address 1 ! router eigrp KBITS ! address-family ipv4 unicast autonomous-system 200 topology base redistribute connected route-map RC ************************************************************ Lab 5 - Redistributing between EIGRP & OSPF - East Side ************************************************************ ----- R5 ----- router eigrp KBITS ! address-family ipv4 unicast autonomous-system 200 ! topology base redistribute ospf 1 metric 10 10 10 10 10 ! router ospf 1 redistribute eigrp 200 metric 55 ************************************************************ Lab 6 - Redistributing between EIGRP & OSPF - South Side ************************************************************ ----- R6 ----- router eigrp KBITS ! address-family ipv4 unicast autonomous-system 200 ! topology base redistribute ospf 1 metric 10 10 10 10 10 ! router ospf 1 redistribute eigrp 200 ************************************************************ Lab 7 - Redistributing with Route Filtering ************************************************************ Requirement: While redistributing between OSPF & EIGRP on R1, block the 10.1.82.0/24 & 10.1.83.0/24 routes from getting injected into EIGRP ----- R1 ----- access-list 1 deny 10.1.82.0 0.0.0.255 access-list 1 deny 10.1.83.0 0.0.0.255 access-list 1 permit any ! route-map O2E match ip address 1 ! router eigrp 100 redistribute ospf 1 route-map O2E ************************************************************ Lab 8 - Redistributing with Route Tagging ************************************************************ Requirement: The North OSPF Routes should not be propagated into the EAST OSPF Domain and Vice Versa. Do not use an ACL to accomplish this task. ----- R1 ----- no route-map O2E router eigrp 100 no redistribute ospf 1 route-map O2E route-map O2E set tag 111 ! router eigrp 100 redistribute ospf 1 route-map O2E ------- route-map E2O deny 10 match tag 222 route-map E2O permit 20 ! router ospf 1 redistribute eigrp 100 route-map E2O ----- R5 ----- route-map E2O deny 10 match tag 111 route-map E2O permit 20 ! router ospf 1 redistribute eigrp 200 route-map E2O ------ route-map O2E set tag 222 ! router eigrp KBITS ! address-family ipv4 unicast autonomous-system 200 ! topology base redistribute ospf 1 route-map O2E metric 10 10 10 10 10 ***************************************************************** Lab 9 - Multi-point Mutual Redistribution between OSPF & EIGRP ***************************************************************** ----- R6 ----- route-map E2O deny 10 match tag 104 route-map E2O permit 20 set tag 101 ! route-map O2E deny 10 match tag 102 route-map O2E permit 20 set tag 103 ! router eigrp KBITS ! address-family ipv4 unicast autonomous-system 200 ! topology base redistribute ospf 1 route-map O2E metric 10 10 10 10 10 ! router ospf 1 redistribute eigrp 200 route-map E2O ----- R7 ----- route-map O2E deny 10 match tag 101 route-map O2E permit 20 set tag 104 ! route-map E2O deny 10 match tag 103 route-map E2O permit 20 set tag 102 ! router eigrp KBITS ! address-family ipv4 unicast autonomous-system 200 ! topology base redistribute ospf 1 route-map O2E metric 10 10 10 10 10 ! router ospf 1 redistribute eigrp 200 route-map E2O ***************************************************************** Lab 10 - Configuring BFD ***************************************************************** ----- R3 ----- Interface E0/1 bfd interval 300 min_rx 300 multiplier 3 ! Interface E0/2 bfd interval 300 min_rx 300 multiplier 3 ! router eigrp KBITS ! address-family ipv4 unicast autonomous-system 200 ! af-interface E0/1 bfd ! af-interface E0/2 bfd ----- R4 ----- Interface E0/0 bfd interval 300 min_rx 300 multiplier 3 ! Interface E0/1 bfd interval 300 min_rx 300 multiplier 3 ! router eigrp KBITS ! address-family ipv4 unicast autonomous-system 200 ! af-interface E0/0 bfd ! af-interface E0/1 bfd ----- R5 ----- Interface E0/0 bfd interval 300 min_rx 300 multiplier 3 ! Interface E0/3 bfd interval 300 min_rx 300 multiplier 3 ! router eigrp KBITS ! address-family ipv4 unicast autonomous-system 200 ! af-interface E0/0 bfd ! af-interface E0/3 bfd