0% found this document useful (0 votes)
19 views7 pages

Lab 10

The document provides instructions for a laboratory exercise on configuring dynamic routing protocols IGRP and EIGRP. It includes background information on EIGRP and two sample exercises for configuring EIGRP routing between networks and verifying connectivity and routes.

Uploaded by

Afaq Hussain
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views7 pages

Lab 10

The document provides instructions for a laboratory exercise on configuring dynamic routing protocols IGRP and EIGRP. It includes background information on EIGRP and two sample exercises for configuring EIGRP routing between networks and verifying connectivity and routes.

Uploaded by

Afaq Hussain
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 7

Data Communication and Network

(EL-317)
LABORATORY MANUAL
Fall 2015

(LAB# 10)
Dynamic Routing Protocols (IGRP & EIGRP)
Engr. Aamir Ullah Khan

Student Name: ___________________________

Roll No: _____________ Section: ___________

Date performed: _____________________, 2015

Manual Submission Date: ______________, 2015

_______________________________
LAB ENGINEER SIGNATURE & DATE

MARKS AWARDED: /10

NATIONAL UNIVERSITY OF COMPUTER AND EMERGING SCIENCES, ISLAMABAD

Prepared by: Engr. Aamir Ullah Khan Version: 2.0


Verified by: Mr. Shahid Qureshi
LAB: 10 Dynamic Routing Protocols (IGRP & EIGRP)

Objective
To understand what is EIGRP protocol and its associated parameters. To deploy a fully
Functional network using EIGRP.
Equipment Required
A working computer having Cisco packet tracer installed.
Introduction
Enhanced Interior Gateway Routing Protocol (EIGRP) is an advanced distance-vector
routing protocol that is used on a computer network to help automate routing decisions and
configuration. The protocol was designed by Cisco Systems as a proprietary protocol,
available only on Cisco routers, but Cisco converted it to an open standard in 2013.
EIGRP is used on a router to share routes with other routers within the same autonomous
system.
Unlike other well-known routing protocols, such as RIP, EIGRP only sends incremental
updates, reducing the workload on the router and the amount of data that needs to be
transmitted.
Features
EIGRP supports the following features:
 Support for Classless Inter-Domain Routing (CIDR) and variable length subnet
masking.
 Routes are not summarized at the class-full network boundary unless auto summary is
enabled.
 Support for load balancing on parallel links between sites.
 The ability to use different authentication passwords at different times.
 MD5 authentication between two routers.
 Sends topology changes, rather than sending the entire routing table when a route is
changed.
 Periodically checks if a route is available and propagates routing changes to
neighboring
 Routers if any changes have occurred.
 Runs separate routing processes for Internet Protocol (IP), IPv6, IPX and AppleTalk
through
 The use of protocol-dependent modules (PDMs).
 Backwards compatibility with the IGRP routing protocols.

Cisco IOS example


Example of setting up EIGRP on a Cisco IOS router for a private network. The 0.0.15.255
wildcard in this example indicates a subnet work with a maximum of 4094 hosts—it is the bit
wise complement of the subnet mask 255.255.240.0. The no auto-summary command
prevents automatic route summarization on classful boundaries, which would otherwise result
in routing loops in discontinuous networks.
EIGRP composite and vector metrics
EIGRP associates six different vector metrics with each route and considers only four of the
vector metrics in computing the Composite metric:
Bandwidth
Minimum Bandwidth (in kilobits per second) along the path from router to destination
network.

DCN LAB NUCES, ISLAMABAD Page 2 of 7


Load
Number in range 1 to 255; 255 being saturated
Total Delay
Delay, in 10s of microseconds, along the path from router to destination network
Reliability
Number in range 1 to 255; 255 being the most reliable
MTU
Minimum path Maximum Transmission Unit (MTU) (never used in the metric calculation)
Hop Count
Number of routers a packet passes through when routing to a remote network, used to limit
the EIGRP AS. EIGRP maintains a hop count for every route, however, the hop count is not
used in metric calculation. It is only verified against a predefined maximum on an EIGRP
router (by default it is set to 100 and can be changed to any value between (1 and 255).
Routes having a hop count higher than the maximum will be advertised as unreachable by an
EIGRP router.

EXAMPLE 1:
In this example we will configure dynamic routing protocol RIP (v1 & v2) and ensure
connectivity.

Router 0 : Network ID 192.168.1.0


Fast Ethernet 0/0 192.168.1.1
Serial Interface 0/1/0 192.168.4.1

Router 1: Network ID 192.168.2.0


Serial Interface 0/1/0 192.168.4.2
Fast Ethernet 0/0 192.168.2.1
Serial Interface 0/1/1 192.168.5.1
Router 2: Network ID 192.168.3.0
Fast Ethernet 0/0 192.168.3.1
Serial Interface 0/1/0 192.168.5.2

192.168.1.2
PC 0
GW: 192.168.1.1
192.168.2.2
PC1
GW: 192.168.2.1
192.168.3.2
PC 2
GW: 192.168.3.1

DCN LAB NUCES, ISLAMABAD Page 3 of 7


Router Configurations:
Router 0:
Router>en
Router# configure terminal
Router(config)#interface fastEthernet 0/0
Router(config-if)#ip address 192.168.1.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface serial 0/1/0
Router(config-if)#ip address 192.168.4.1 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#bandwidth 64
Router(config-if)#no shutdown
Router(config-if)#exit

Router 1:
Router>en
Router# configure terminal
Router(config)#interface fastEthernet 0/0
Router(config-if)#ip address 192.168.2.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface serial 0/1/0
Router(config-if)#ip address 192.168.4.2 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#bandwidth 128
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface serial 0/1/1

DCN LAB NUCES, ISLAMABAD Page 4 of 7


Router(config-if)#ip address 192.168.5.1 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#bandwidth 256
Router(config-if)#no shutdown
Router(config-if)#exit

Router 2:
Router>en
Router# configure terminal
Router(config)#interface fastEthernet 0/0
Router(config-if)#ip address 192.168.3.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface serial 0/1/0
Router(config-if)#ip address 192.168.5.2 255.255.255.0
Router(config-if)#clock rate 64000
Router(config-if)#bandwidth 512
Router(config-if)#no shutdown
Router(config-if)#exit

Confirmation: After successful configuration of routers, we configure EIGRP on all routers.


Router 0:

Router(config)# router eigrp


Router(config-router)#network 192.168.1.0
Router(config-router)#network 192.168.4.0
Router 1:

Router (config) # router eigrp


Router (config-router) #network 192.168.2.0
Router (config-router) #network 192.168.4.0
Router (config-router) #network 192.168.5.0

Router 2:
Router (config) # router eigrp
Router (config-router) # network 192.168.3.0
Router (config-router) # network 192.168.5.0
Confirmation After successfully creating the topology, you can check the connectivity of
the network by selecting a packet from the right window and sending it from PC to another as
shown below:
Finally, you can see that the packet transmission is successful as shown by the message
window:

DCN LAB NUCES, ISLAMABAD Page 5 of 7


LAB EXERCISE:
Exercise 01:
Design the following network using Packet Tracer. Configure EIGRP Protocol and ensure the
connectivity of the system. Show the output of the following commands:
1) show ip eigrp neighbor 2) show ip eigrp topology 2) show ip eigrp interfaces
4) show ip eigrp traffic 5) show ip protocols 6) show ip route

Exercise 02:
Design the following network using Packet Tracer. Configure EIGRP Protocol and ensure the
connectivity of the system. . Show the output of the following commands:
1) show ip eigrp neighbor 2) show ip eigrp topology 2) show ip eigrp interfaces
4) show ip eigrp traffic 5) show ip protocols 6) show ip route

DCN LAB NUCES, ISLAMABAD Page 6 of 7


Student's feedback: Purpose of feedback is to know the strengths and weaknesses of the
system for future improvements. This feedback is for the 'current lab session'. Circle your
choice:
[-3 = Extremely Poor, -2 = Very Poor, -1 = Poor, 0 = Average, 1 = Good, 2 = Very Good, 3 = Excellent]:
The following table should describe your experience with:

S# Field Rating Describe your experience in words


1 Overall Session -3 -2 -1 0 1 2 3
2 Lab Instructor -3 -2 -1 0 1 2 3
3 Lab Staff -3 -2 -1 0 1 2 3
4 Equipment -3 -2 -1 0 1 2 3
5 Atmosphere -3 -2 -1 0 1 2 3

Any other valuable feedback:


__________________________________________________________________________
__________________________________________________________________________
__________________________________________________________________________

Student's Signature: ______________________________

DCN LAB NUCES, ISLAMABAD Page 7 of 7

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy