EIGRP Configuration Tasks
EIGRP Configuration Tasks
EIGRP Configuration Tasks
Topology
Task 1 Configure EIGRP on R1,R2,R3 with AS no 1 and advertise directly connected interfaces. Make sure you can ping R3 loopback from R1 after this task?
Solution: On R1,R2,R3,R4 configure as below Rx(config)#router eigrp 1 Rx(config-router)#network 10.x.x.x (network IDs of interfaces) Rx(config-router)#network x.x.x.x (loopback interface ip address) Rx(config-router)#no auto-summary
Task 2 Configure EIGRP on R4 with AS no 1 and advertise on Fast Ethernet 1/0 and Fast Ethernet 1/1. Run EIGRP with AS 2 on R4 and advertise its Loopback interface in the EIGRP AS2?
Solution: On R4 configure as below Rx(config)#router eigrp 1 Rx(config-router)#network 10.x.x.0 Rx(config-router)#no auto-summary
Configuring AS2 Rx(config)#router eigrp 2 Rx(config-router)#network (loopback interface IP address) Rx(config-router)#no auto-summary
Task 3 Redistribute EIGRP AS2 into EIGRP AS1 , and make sure the topology is complete now and you can ping loopback of R4 from all other routers?
Solution R4(config)#router eigrp 1 R4(config-router)#redistribute eigrp 2 metric 1 1 1 1 1* *These are the K values, you learned during the lecture. This is compulsory in EIGRP otherwise it will not be redistributed into EIGRP
Solution
Task 5 Configure following null Static routes on R1 and generate a summary address for these routes.
20.1.1.0/24 20.1.2.0/24 20.1.3.0/24 20.1.4.0/24 20.1.5.0/24 Verify on other routes that it can receive the summary address.
Solution: R1(config)#ip route 20.1.1.0 255.255.255.0 null 0 R1(config)#ip route 20.1.1.0 255.255.255.0 null 0
R1(config)#ip route 20.1.2.0 255.255.255.0 null 0 R1(config)#ip route 20.1.3.0 255.255.255.0 null 0 R1(config)#ip route 20.1.4.0 255.255.255.0 null 0 R1(config)#ip route 20.1.5.0 255.255.255.0 null 0
R1(config-router)#inter fas 1/0 and 1/1 R1(config-if)#ip summary-address eigrp 1 20.1.1.0 255.255.248.0 After generating summary address
Task 6 Configure R2 in such a way that no other routers receive routes from R2 but R2 must have its routing table complete.
Solution R2(config-router)#eigrp 1 R2(config-router)#eigrp stub receive-only Verification Check on R1 it should not be receiving R2 loopback interface in its routing table
Task 8 Change Hello interval in between R3 and R4 to 2 seconds and dead interval 6 seconds.
Solution Configure on R3 and R4 Rx(config-if)#router eigrp 1 Rx(config-if)#ip hello-interval eigrp 1 2
Solution
Task 10 Change by default maximum path on R1 from 4 to 16 and verify after task
Solution R1(config-router)#router eigrp 1 R1(config-router)#maximum-paths 16