EIGRP Scenerio 1

11/27/2013

 
TASKS
1. Configure IP Addresses on each link.
2. Configure Loopback address 100.100.100.1 on AS1Destination, 20.20.20.1 on A2, 70.70.70.1 on R7, 80.80.80.1 on R8 and 90.90.90.1 on R9.
3. Configure eigrp 50 on network 1.1.1.0/24, 2.2.2.0, 3.3.3.0, 4.4.4.0
4. Configure eigrp 100 for network 6.6.6.0 and 5.5.5.0.
5. Configure RIP on 7.7.7.0.
6. R6 should reach R8 loopbacks without any dynamic routing protocol.
7. Configure un-equal load balancing for AS1Destination on A2. Network 1.1.1.0 is a successor route. Put Feasable successor in the routing table too.
8. full network should reach each other with only exception of network 8.8.8.0; It should only be seen in R6 routing table only. Don't filter network 8.8.8.0 anywhere in network.
9. Eigrp shoul use only 30% bandwidth btw R7 and R6
10. R6 should Send summary route of network 1.1.1.0/24 to R7. Try to on output as summary network has different AD then non-summary network.
11. See Routing table and topology table on A3 and find equal-cost LB for net 20.20.20.1.
12. Debug all kind of packets. See Ack packet by shutting/no-shut an interface
13. Manipulate Eigrp Metric ( metric weight TOS value, K1, K2, K3, K4, K5). Change value other then 0 and 1 and see results
14. Change Administratice distance (distane Internal-AD   External-AD)
15. Change bandwidth and Delay on interfaces
16. Change Eigrp utilization on interface via (ip band-perc eigrp 50 20)
17. Make sure that Eigrp uses 246 Kbps on R7 F0/0 but without using ip band-percentage command. [hint: Make actual bandwidth 1024 as by default Eigrp uses 50% bandwidth]
18. change Max hops of Eigrp (Metric Max-hop number)
19. Calculate EIGRP Metric by yourself
hostname AS1Destination
interface Loopback0
 ip address 100.100.100.1 255.255.255.255
!
interface FastEthernet0/0
 ip address 1.1.1.5 255.255.255.252
no shut
!
interface FastEthernet0/1
 ip address 1.1.1.1 255.255.255.252
no shut
!
interface FastEthernet1/0
 ip address 1.1.1.13 255.255.255.252
no shut
!
router eigrp 50
 network 1.0.0.0
 network 100.0.0.0
 no auto-summary


hostname A1
interface FastEthernet0/0
 ip address 1.1.1.6 255.255.255.252
no shut
!
interface FastEthernet0/1
 ip address 1.1.1.21 255.255.255.252
no shut
!
router eigrp 50
 network 1.0.0.0
 no auto-summary


hostname A2
interface Loopback0
 ip address 20.20.20.1 255.255.255.255
!
interface FastEthernet0/0
 ip address 1.1.1.2 255.255.255.252
no shut
!
interface FastEthernet0/1
 ip address 2.2.2.1 255.255.255.252
no shut
!
router eigrp 50
 variance 2
 network 1.0.0.0
 network 2.0.0.0
 network 20.0.0.0
 no auto-summary


hostname A3
interface FastEthernet0/0
 ip address 1.1.1.14 255.255.255.252
 speed 100
 full-duplex
interface FastEthernet1/0
 ip address 3.3.3.1 255.255.255.252
no shut
router eigrp 50
 network 1.0.0.0
 network 3.0.0.0
 no auto-summary


hostname A4
interface FastEthernet0/0
 ip address 3.3.3.2 255.255.255.252
 speed 100
 full-duplex
no shut
!
interface FastEthernet0/1
 ip address 2.2.2.2 255.255.255.252
no shut
!
interface FastEthernet1/0
 ip address 5.5.5.1 255.255.255.252
no shut
!
interface FastEthernet2/0
 ip address 4.4.4.2 255.255.255.252
no shut
!
router eigrp 50
 redistribute eigrp 100 metric 100 100 100 100 100
 network 2.0.0.0
 network 3.0.0.0
 network 4.0.0.0
 no auto-summary
!
router eigrp 100
 redistribute eigrp 50 metric 100 100 100 100 100
 network 5.0.0.0
 no auto-summary


hostname R10
interface FastEthernet0/0
 ip address 4.4.4.1 255.255.255.252
 speed 100
 full-duplex
no shut

interface FastEthernet0/1
 ip address 1.1.1.22 255.255.255.252
no shut

router eigrp 50
 network 1.0.0.0
 network 4.0.0.0
 no auto-summary


hostname R6
interface FastEthernet0/0
 ip address 6.6.6.1 255.255.255.252
 ip summary-address eigrp 100 1.1.1.0 255.255.255.0 5
no shut
!
interface FastEthernet0/1
 ip address 5.5.5.2 255.255.255.252
 speed 100
 full-duplex
no shut
!
interface FastEthernet1/0
 ip address 8.8.8.1 255.255.255.252
no shut
!
interface FastEthernet2/0
 ip address 7.7.7.1 255.255.255.252
no shut
!
router eigrp 100
 redistribute static metric 100 100 100 100 100
 redistribute rip metric 100 100 100 100 100
 network 5.0.0.0
 network 6.0.0.0
 no auto-summary
!
router rip
 version 2
 redistribute static metric 4
 redistribute eigrp 100 metric 3
 network 7.0.0.0
 no auto-summary
!
ip route 80.80.80.1 255.255.255.255 8.8.8.2



hostname R7
interface Loopback0
 ip address 70.70.70.1 255.255.255.255
!
interface FastEthernet0/0
 ip address 6.6.6.2 255.255.255.252
no shut
!
router eigrp 100
 network 6.0.0.0
 network 70.0.0.0
 no auto-summary


hostname R8
interface Loopback0
 ip address 80.80.80.1 255.255.255.255
!
interface FastEthernet0/0
 ip address 8.8.8.2 255.255.255.252
 speed 100
 full-duplex
no shut
!
ip route 0.0.0.0 0.0.0.0 8.8.8.1


hostname R9
interface Loopback0
 ip address 90.90.90.1 255.255.255.255
!
interface FastEthernet0/0
 ip address 7.7.7.2 255.255.255.252
 speed 100
 full-duplex
no shut
!
router rip
 version 2
 network 7.0.0.0
 network 90.0.0.0
 no auto-summary

Explanation



























































Comments are closed.