SlideShare uma empresa Scribd logo
1 de 65
EIGRP

Routing Protocols and
Concepts – Chapter 9

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

1
Objectives


Describe the background and history of Enhanced
Interior Gateway Routing Protocol (EIGRP).



Examine the basic EIGRP configuration commands
and identify their purposes.



Calculate the composite metric used by EIGRP.



Describe the concepts and operation of DUAL.



Describe the uses of additional configuration
commands in EIGRP.

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

2
Introduction

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

3
EIGRP
 Roots of EIGRP: IGRP
-Developed in 1985 to overcome RIPv1’s
limited hop count
-Distance vector routing protocol
-Metrics used by IGRP
bandwidth (used by default)
Delay (used by default)
reliability
load
-Discontinued support starting with IOS
12.2(13)T & 12.2(R1s4)S

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

4
EIGRP
EIGRP Message Format
 EIGRP Header
Data link frame header - contains source and destination MAC
address
IP packet header - contains source & destination IP address
EIGRP packet header - contains AS number
Type/Length/Field - data portion of EIGRP message

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

5
EIGRP

 EIGRP packet header
contains
–Opcode field
–Autonomous System number

 EIGRP Parameters contains
–Weights
–Hold time

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

6
EIGRP

 TLV: IP internal contains
–Metric field
–Subnet mask field
–Destination field

 TLV: IP external contains
–Fields used when external
routes are imported into
EIGRP routing process

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

7
EIGRP
Protocol Dependent
Modules (PDM)
 EIGRP uses PDM to route
several different protocols i.e.
IP, IPX & AppleTalk
 PDMs are responsible for the
specific routing task for each
network layer protocol

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

8
EIGRP
Reliable Transport Protocol (RTP)
 Purpose of RTP
–Used by EIGRP to transmit and receive
EIGRP packets

 Characteristics of RTP
–Involves both reliable & unreliable delivery of
EIGRP packet
Reliable delivery requires
acknowledgment from destination
Unreliable delivery does not require an
acknowledgement from destination
–Packets can be sent
Unicast
Multicast
–Using address 224.0.0.10
ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

9
EIGRP
EIGRP’s 5 Packet Types
 Hello packets
–Used to discover & form adjacencies with neighbors

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

10
EIGRP
 Update packets
–Used to propagate routing
information

 Acknowledgement
packets
–Used to acknowledge
receipt of update, query &
reply packets

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

11
EIGRP
 Query & Reply packets
Used by DUAL for
searching for networks
Query packets
-Can use
Unicast
Multicast
Reply packet
-Use only
unicast

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

12
EIGRP
 Purpose of Hello Protocol
–To discover & establish adjacencies with neighbor routers

 Characteristics of hello protocol
–Time interval for sending hello packet
Most networks it is every 5 seconds
Multipoint non broadcast multi-access networks
–Unicast every 60 seconds
-Holdtime
This is the maximum time
router should wait before
declaring a neighbor down
Default holdtime
–3 times hello interval

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

13
EIGRP
EIGRP Bounded Updates
 EIGRP only sends update when there is a change in
route status
 Partial update
–A partial update includes only the route information that has
changed – the whole routing table is NOT sent

 Bounded update
–When a route changes, only those devices that are impacted
will be notified of the change

 EIGRP’s use of partial bounded updates minimizes use
of bandwidth

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

14
EIGRP
Diffusing Update Algorithm (DUAL)
–Purpose
•EIGRP’s primary method for preventing routing loops
–Advantage of using DUAL
•Provides for fast convergence time by keeping a list of loopfree backup routes

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

15
EIGRP
 Administrative Distance (AD)
–Defined as the trustworthiness of the source route

 EIGRP default administrative distances
–Summary routes = 5
–Internal routes

= 90

–Imported routes = 170

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

16
EIGRP
Authentication


EIGRP can
– Encrypt routing information
– Authenticate routing information

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

17
EIGRP
Network Topology
 Topology used is the same as previous chapters with
the addition of an ISP router

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

18
EIGRP
 EIGRP will automatically
summarize routes at
classful boundaries

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

19
Basic EIGRP Configuration
 Autonomous System (AS) & Process IDs
–This is a collection of networks under the control of a single
authority (reference RFC 1930)
–AS Numbers are assigned by IANA
–Entities needing AS numbers
ISP
Internet Backbone prodiers
Institutions connecting to other institutions using AS
numbers

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

20
Basic EIGRP Configuration
 EIGRP autonomous system
number actually functions as
a process ID
 Process ID represents an
instance of the routing
protocol running on a router
 Example
Router(config)#router
eigrp autonomous-system

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

21
Basic EIGRP Configuration
The router eigrp command
 The global command that enables eigrp is
router eigrp autonomous-system
-All routers in the EIGRP routing domain must use
the same process ID number (autonomous-system
number)

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

22
Basic EIGRP Configuration
The Network Command
 Functions of the network command
–Enables interfaces to transmit & receive EIGRP
updates
–Includes network or subnet in EIGRP updates

 Example
–Router(config-router)#network network-address

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

23
Basic EIGRP Configuration
 The network Command with a Wildcard Mask
-This option is used when you want to configure EIGRP
to advertise specific subnets
-Example
Router(config-router)#network network-address [wildcard-mask]

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

24
Basic EIGRP Configuration
Verifying EIGRP
 EIGRP routers must establish adjacencies with their
neighbors before any updates can be sent or received
 Command used to view neighbor table and verify that
EIGRP has established adjacencies with neighbors is
show ip eigrp neighbors

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

25
EIGRP
 The show ip protocols
command is also used to
verify that EIGRP is enabled

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

26
Basic EIGRP Configuration
Examining the Routing
Table
 The show ip route
command is also used to
verify EIGRP
 EIGRP routes are denoted
in a routing table by the
letter “D”
 By default , EIGRP
automatically summarizes
routes at major network
boundary

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

27
Basic EIGRP Configuration
 Introducing the Null0 Summary Route
–Null0 is not a physical interface
–In the routing table summary routes are sourced from Null0
Reason: routes are used for advertisement purposes
–EIGRP will automatically include a null0 summary route as child
route when 2 conditions are met
At least one subnet is learned via EIGRP
Automatic summarization is enabled

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

28
Basic EIGRP Configuration
 R3’s routing table shows
that the 172.16.0.0/16
network is automatically
summarized by R1 & R3

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

29
EIGRP Metric Calculation
EIGRP Composite Metric & the K Values
 EIGRP uses the following values in its composite
metric
-Bandwidth, delay, reliability, and load

 The composite metric used by EIGRP
– formula used has values K1 K5
K1 & K3
=1
all other K values

ITE PC v4.0
Chapter 1

=0

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

30
EIGRP Metric Calculation
 Use the sh ip protocols command to verify the K
values

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

31
EIGRP Metric Calculation
EIGRP Metrics
 Use the show
interfaces command to
view metrics
 EIGRP Metrics
Bandwidth – EIGRP
uses a static bandwidth
to calculate metric
Most serial interfaces use
a default bandwidth value
of 1.544Mbos (T1)

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

32
EIGRP Metric Calculation
EIGRP Metrics
 Delay is the defined as the measure of time it takes for
a packet to traverse a route
-it is a static value based on link type to which
interface is connected

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

33
EIGRP Metric Calculation
 Reliability (not a default EIGRP metric)
-A measure of the likelihood that a link will fail
-Measure dynamically & expressed as a fraction of 255
the higher the fraction the better the reliability

 Load (not a default EIGRP metric)
– A number that reflects how much traffic is using a link
– Number is determined dynamically and is expressed as a
fraction of 255
The lower the fraction the less the load on the link

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

34
EIGRP Metric Calculation
Using the Bandwidth Command
 Modifying the interface bandwidth
-Use the bandwidth command
-Example
Router(config-if)#bandwidth kilobits

 Verifying bandwidth
–Use the show interface command

 Note – bandwidth command
does not change the
link’s physical
bandwidth
ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

35
EIGRP Metric Calculation
 The EIGRP metric can be determined by examining the
bandwidth delay

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

36
EIGRP Metric Calculation
 EIGRP uses the lowest bandwidth (BW)in its metric
calculation
Calculated BW = reference BW / lowest BW(kbps)
 Delay – EIGRP uses the cumulative sum of all outgoing
interfaces
Calculated Delay = the sum of outgoing interface delays
 EIGRP Metric = calculated BW + calculated delay

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

37
EIGRP Metric Calculation

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

38
DUAL Concepts
 The Diffusing Update Algorithm (DUAL) is used to
prevent looping

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

39
DUAL Concepts
 Successor
The best least cost
route to a destination
found in the routing
table

 Feasible distance
The lowest
calculated metric
along a path to a
destination network

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

40
DUAL Concepts
Feasible Successors, Feasibility Condition & Reported
Distance
 Feasible
Successor
-This is a loop
free backup
route to same
destination as
successor route

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

41
DUAL Concepts
Feasible Successors, Feasibility Condition & Reported
Distance
 Reported distance
(RD)
-The metric that a
router reports to a
neighbor about its
own cost to that
network

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

42
DUAL Concepts
 Feasibility
Condition (FC)
-Met when a
neighbor’s RD
is less than
the local
router’s FD to
the same
destination
network

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

43
DUAL Concepts
 Topology Table: Successor
& Feasible Successor
 EIGRP Topology table
–Viewed using the show ip
eigrp topology command
Contents of table include:
– all successor routes
– all feasible successor
routes

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

44
DUAL Concepts
 EIGRP
Topology
Table
dissected

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

45
DUAL Concepts
Topology Table: No
Feasible Successor
 A feasible successor may
not be present because
the feasibility condition
may not be met
-In other words, the
reported distance of
the neighbor is greater
than or equal to the
current feasible
distance

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

46
DUAL Concepts
 Finite Sate Machine (FSM)
–An abstract machine that defines a set of possible
states something can go through, what event
causes those states and what events result form
those states
–FSMs are used to describe how a device, computer
program, or routing algorithm will react to a set of
input events

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

47
DUAL Concepts
 DUAL FSM
–Selects a best loopfree path to a
destination
–Selects alternate
routes by using
information in EIGRP
tables

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

48
DUAL Concepts
Finite State Machines (FSM)
 To examine output from EIGRP’s finite state machine
us the debug eigrp fsm command

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

49
More EIGRP Configurations
The Null0 Summary Route
 By default, EIGRP uses the Null0 interface to discard
any packets that match the parent route but do not
match any of the child routes
 EIGRP automatically includes a null0 summary route as
a child route whenever both of the following conditions
exist
–One or subnets exists that was learned via EIGRP
–Automatic summarization is enabled

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

50
More EIGRP Configurations
The Null0 Summary Route

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

51
More EIGRP Configurations
Disabling Automatic Summarization
 The auto-summary command permits EIGRP to
automatically summarize at major network boundaries
 The no auto-summary command is used to disable
automatic summarization
–This causes all EIGRP neighbors to send updates
that will not be automatically summarized
this will cause changes to appear in both
-routing tables
-topology tables

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

52
More EIGRP Configurations
Manual Summarization
 Manual summarization can include supernets
Reason: EIGRP is a classless routing protocol & include subnet
mask in update

 Command used to configure manual summarization
–Router(config-if)#ip summary-address eigrp as-number
network-address subnet-mask

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

53
More EIGRP Configurations
 Configuring a summary route in EIGRP

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

54
More EIGRP Configurations
EIGRP Default Routes
 “quad zero” static default route
-Can be used with any currently supported routing
protocol
-Is usually configured on a router that is connected a
network outside the EIGRP domain
 EIGRP & the “Quad zero” static default route
–Requires the use of the redistribute static command
to disseminate default route in EIGRP updates

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

55
More EIGRP Configurations
Fine-Tuning EIGRP
 EIGRP bandwidth utilization
-By default, EIGRP uses only up to 50% of interface bandwidth
for EIGRP information
-The command to change the percentage of bandwidth used by
EIGRP is
Router(config-if)#ip bandwidth-percent eigrp asnumber percent

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

56
More EIGRP Configurations
 Configuring Hello Intervals and Hold Times
-Hello intervals and hold times are configurable on a per-interface
basis
-The command to configure hello interval is
Router(config-if)#ip hello-interval eigrp as-number seconds

 Changing the hello interval also requires changing the hold
time to a value greater than or equal to the hello interval
-The command to configure hold time value is
Router(config-if)#ip hold-time eigrp as-number seconds

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

57
Summary
 Background & History
–EIGRP is a derivative of IGRP
EIGRP is a Cisco proprietary distance vector routing
protocol released in 1994

 EIGRP terms and characteristics
–EIGPR uses RTP to transmit & receive EIGRP packets
–EIGRP has 5 packet type:
Hello packets
Update packets
Acknowledgement packets
Query packets
Reply packets
–Supports VLSM & CIDR
ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

58
Summary
 EIGRP terms and characteristics
–EIGRP uses a hello protocol
Purpose of hello protocol is to discover & establish
adjacencies
–EIGRP routing updates
Aperiodic
Partial and bounded
Fast convergence

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

59
Summary
 EIGRP commands
–The following commands are used for EIGRP
configuration
RtrA(config)#router eigrp [autonomous-system #]
RtrA(config-router)#network network-number
–The following commands can be used to verify EIGRP
Show ip protocols
Show ip eigrp neighbors
Show ip route

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

60
Summary
 EIGRP metrics include
–Bandwidth (default)
–Delay (default)
–Reliability
–Load

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

61
Summary
 DUAL
–Purpose of DUAL
To prevent routing loops
–Successor
Primary route to a destination
–Feasible successor
Backup route to a destination
–Feasible distance
Lowest calculated metric to a destination
–Reported distance
The distance towards a destination as advertised
by an upstream neighbor
ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

62
Summary
 Choosing the best route
–After router has received all updates from directly
connected neighbors, it can calculate its DUAL
1st metric is calculated for each route
2nd route with lowest metric is designated
successor & is placed in routing table
3rd feasible successor is found
–Criteria for feasible successor: it must have
lower reported distance to the destination than
the installed route’s feasible distance
–Feasible routes are maintained in topology
table
ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

63
Summary
 Automatic summarization
–On by default
–Summarizes routes on classful boundary
–Summarization can be disabled using the following
command
RtrA(config-if)#no auto-summary

ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

64
ITE PC v4.0
Chapter 1

© 2007 Cisco Systems, Inc. All rights reserved.

Cisco Public

65

Mais conteúdo relacionado

Mais procurados

CCNA Exploration 2 - Chapter 11
CCNA Exploration 2 - Chapter 11CCNA Exploration 2 - Chapter 11
CCNA Exploration 2 - Chapter 11
Irsandi Hasan
 
CCNA Exploration 2 - Chapter 4
CCNA Exploration 2 - Chapter 4CCNA Exploration 2 - Chapter 4
CCNA Exploration 2 - Chapter 4
Irsandi Hasan
 
Exploration routing chapter_2
Exploration routing chapter_2Exploration routing chapter_2
Exploration routing chapter_2
Joshua Torres
 
CCNA Exploration 2 - Chapter 9
CCNA Exploration 2 - Chapter 9CCNA Exploration 2 - Chapter 9
CCNA Exploration 2 - Chapter 9
Irsandi Hasan
 
CCNA Exploration 2 - Chapter 5
CCNA Exploration 2 - Chapter 5CCNA Exploration 2 - Chapter 5
CCNA Exploration 2 - Chapter 5
Irsandi Hasan
 
CCNA Exploration 2 - Chapter 6
CCNA Exploration 2 - Chapter 6CCNA Exploration 2 - Chapter 6
CCNA Exploration 2 - Chapter 6
Irsandi Hasan
 
CCNA Exploration 2 - Chapter 10
CCNA Exploration 2 - Chapter 10CCNA Exploration 2 - Chapter 10
CCNA Exploration 2 - Chapter 10
Irsandi Hasan
 
Exploration routing chapter 10 & 11
Exploration routing chapter 10 & 11Exploration routing chapter 10 & 11
Exploration routing chapter 10 & 11
Sachii Dosti
 
CCNA Exploration 2 - Chapter 2
CCNA Exploration 2 - Chapter 2CCNA Exploration 2 - Chapter 2
CCNA Exploration 2 - Chapter 2
Irsandi Hasan
 
Exploration routing chapter_7
Exploration routing chapter_7Exploration routing chapter_7
Exploration routing chapter_7
Joshua Torres
 

Mais procurados (20)

CCNA Exploration 2 - Chapter 11
CCNA Exploration 2 - Chapter 11CCNA Exploration 2 - Chapter 11
CCNA Exploration 2 - Chapter 11
 
CCNA Exploration 2 - Chapter 4
CCNA Exploration 2 - Chapter 4CCNA Exploration 2 - Chapter 4
CCNA Exploration 2 - Chapter 4
 
Exploration routing chapter_2
Exploration routing chapter_2Exploration routing chapter_2
Exploration routing chapter_2
 
CCNA Exploration 2 - Chapter 9
CCNA Exploration 2 - Chapter 9CCNA Exploration 2 - Chapter 9
CCNA Exploration 2 - Chapter 9
 
CCNA Exploration 2 - Chapter 5
CCNA Exploration 2 - Chapter 5CCNA Exploration 2 - Chapter 5
CCNA Exploration 2 - Chapter 5
 
CCNA Exploration 2 - Chapter 6
CCNA Exploration 2 - Chapter 6CCNA Exploration 2 - Chapter 6
CCNA Exploration 2 - Chapter 6
 
CCNA Exploration 2 - Chapter 10
CCNA Exploration 2 - Chapter 10CCNA Exploration 2 - Chapter 10
CCNA Exploration 2 - Chapter 10
 
Exploration routing chapter 4
Exploration routing chapter 4Exploration routing chapter 4
Exploration routing chapter 4
 
Exploration Routing Chapter 7
Exploration Routing Chapter 7Exploration Routing Chapter 7
Exploration Routing Chapter 7
 
CCNA3 Verson6 Chapter7
CCNA3 Verson6 Chapter7CCNA3 Verson6 Chapter7
CCNA3 Verson6 Chapter7
 
Exploration routing chapter 10 & 11
Exploration routing chapter 10 & 11Exploration routing chapter 10 & 11
Exploration routing chapter 10 & 11
 
1
11
1
 
CCNA Exploration 2 - Chapter 2
CCNA Exploration 2 - Chapter 2CCNA Exploration 2 - Chapter 2
CCNA Exploration 2 - Chapter 2
 
Exploration routing chapter_7
Exploration routing chapter_7Exploration routing chapter_7
Exploration routing chapter_7
 
Chapter 17 : static routing
Chapter 17 : static routingChapter 17 : static routing
Chapter 17 : static routing
 
CCNAv5 - S2: Chapter 6 Static Routing
CCNAv5 - S2: Chapter 6 Static RoutingCCNAv5 - S2: Chapter 6 Static Routing
CCNAv5 - S2: Chapter 6 Static Routing
 
CCNA2 Verson6 Chapter3
CCNA2 Verson6 Chapter3CCNA2 Verson6 Chapter3
CCNA2 Verson6 Chapter3
 
CCNA4 Verson6 Chapter3
CCNA4 Verson6 Chapter3CCNA4 Verson6 Chapter3
CCNA4 Verson6 Chapter3
 
CCNA3 Verson6 Chapter5
CCNA3 Verson6 Chapter5CCNA3 Verson6 Chapter5
CCNA3 Verson6 Chapter5
 
Eigrp.ppt
Eigrp.pptEigrp.ppt
Eigrp.ppt
 

Destaque

20140222_iodd_in_takizawa
20140222_iodd_in_takizawa20140222_iodd_in_takizawa
20140222_iodd_in_takizawa
Hiroshi Usui
 
Exploration routing chapter_1
Exploration routing chapter_1Exploration routing chapter_1
Exploration routing chapter_1
Joshua Torres
 
Change Management Brochure
Change Management BrochureChange Management Brochure
Change Management Brochure
Adriano Lino
 

Destaque (14)

20140222_iodd_in_takizawa
20140222_iodd_in_takizawa20140222_iodd_in_takizawa
20140222_iodd_in_takizawa
 
Unidad 3
Unidad 3Unidad 3
Unidad 3
 
M6.2
M6.2M6.2
M6.2
 
Tarea 7
Tarea 7Tarea 7
Tarea 7
 
Exploration routing chapter_1
Exploration routing chapter_1Exploration routing chapter_1
Exploration routing chapter_1
 
Resume pritam
Resume  pritamResume  pritam
Resume pritam
 
Methods of sharing
Methods of sharingMethods of sharing
Methods of sharing
 
Next 11 countries
Next 11 countriesNext 11 countries
Next 11 countries
 
LI-FI
LI-FILI-FI
LI-FI
 
Ajil mergejil
Ajil mergejilAjil mergejil
Ajil mergejil
 
MX Fund 01 - Hackers/Founders Co-op Mexico Pitch Deck
MX Fund 01 - Hackers/Founders Co-op Mexico Pitch DeckMX Fund 01 - Hackers/Founders Co-op Mexico Pitch Deck
MX Fund 01 - Hackers/Founders Co-op Mexico Pitch Deck
 
Week11 1st draft
Week11 1st draftWeek11 1st draft
Week11 1st draft
 
Change Management Brochure
Change Management BrochureChange Management Brochure
Change Management Brochure
 
Project gt tire cutting rsa
Project gt tire cutting rsaProject gt tire cutting rsa
Project gt tire cutting rsa
 

Semelhante a Exploration routing chapter_9

CCNA Exploration 2 - Chapter 3
CCNA Exploration 2 - Chapter 3CCNA Exploration 2 - Chapter 3
CCNA Exploration 2 - Chapter 3
Irsandi Hasan
 
CCNA Exploration 2 - Chapter 1
CCNA Exploration 2 - Chapter 1CCNA Exploration 2 - Chapter 1
CCNA Exploration 2 - Chapter 1
Irsandi Hasan
 

Semelhante a Exploration routing chapter_9 (20)

CCNAv5 - S3: Chapter8 EIGRP Advanced Configurations and Troubleshooting
CCNAv5 - S3: Chapter8 EIGRP Advanced Configurations and TroubleshootingCCNAv5 - S3: Chapter8 EIGRP Advanced Configurations and Troubleshooting
CCNAv5 - S3: Chapter8 EIGRP Advanced Configurations and Troubleshooting
 
CCNAv5 - S3: Chapter 7 EIGRP
CCNAv5 - S3: Chapter 7 EIGRPCCNAv5 - S3: Chapter 7 EIGRP
CCNAv5 - S3: Chapter 7 EIGRP
 
Distance Vector Routing Protocols.ppt
Distance Vector Routing Protocols.pptDistance Vector Routing Protocols.ppt
Distance Vector Routing Protocols.ppt
 
CCNA3 Verson6 Chapter6
CCNA3 Verson6 Chapter6CCNA3 Verson6 Chapter6
CCNA3 Verson6 Chapter6
 
CCNP ROUTE V7 CH2
CCNP ROUTE V7 CH2CCNP ROUTE V7 CH2
CCNP ROUTE V7 CH2
 
Day 11.2 enablingeigrp
Day 11.2 enablingeigrpDay 11.2 enablingeigrp
Day 11.2 enablingeigrp
 
CCNP v6 Route: Implementing IP Routing Chapter 2
CCNP v6 Route: Implementing IP Routing Chapter 2CCNP v6 Route: Implementing IP Routing Chapter 2
CCNP v6 Route: Implementing IP Routing Chapter 2
 
CCNP Route EIGRP Overview
CCNP Route  EIGRP OverviewCCNP Route  EIGRP Overview
CCNP Route EIGRP Overview
 
CCCNP ROUTE v6_ch02
CCCNP ROUTE v6_ch02CCCNP ROUTE v6_ch02
CCCNP ROUTE v6_ch02
 
CCNA Exploration 2 - Chapter 3
CCNA Exploration 2 - Chapter 3CCNA Exploration 2 - Chapter 3
CCNA Exploration 2 - Chapter 3
 
Day 10.2 igrp
Day 10.2 igrpDay 10.2 igrp
Day 10.2 igrp
 
Eigrp authentication
Eigrp authenticationEigrp authentication
Eigrp authentication
 
EIGRP (enhanced interior gateway routing protocol)
EIGRP (enhanced interior gateway routing protocol)EIGRP (enhanced interior gateway routing protocol)
EIGRP (enhanced interior gateway routing protocol)
 
Day 11 eigrp
Day 11 eigrpDay 11 eigrp
Day 11 eigrp
 
Ccnav5.org ccna 3-v50_final_exam_2014
Ccnav5.org ccna 3-v50_final_exam_2014Ccnav5.org ccna 3-v50_final_exam_2014
Ccnav5.org ccna 3-v50_final_exam_2014
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 3
CCNA (R & S) Module 02 - Connecting Networks - Chapter 3CCNA (R & S) Module 02 - Connecting Networks - Chapter 3
CCNA (R & S) Module 02 - Connecting Networks - Chapter 3
 
CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4
 
Eigrp Summary (Ccna4.Com)
Eigrp Summary  (Ccna4.Com)Eigrp Summary  (Ccna4.Com)
Eigrp Summary (Ccna4.Com)
 
CCNA Exploration 2 - Chapter 1
CCNA Exploration 2 - Chapter 1CCNA Exploration 2 - Chapter 1
CCNA Exploration 2 - Chapter 1
 
Week3 part 2
Week3  part 2Week3  part 2
Week3 part 2
 

Último

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Último (20)

Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 

Exploration routing chapter_9

  • 1. EIGRP Routing Protocols and Concepts – Chapter 9 ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 1
  • 2. Objectives  Describe the background and history of Enhanced Interior Gateway Routing Protocol (EIGRP).  Examine the basic EIGRP configuration commands and identify their purposes.  Calculate the composite metric used by EIGRP.  Describe the concepts and operation of DUAL.  Describe the uses of additional configuration commands in EIGRP. ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 2
  • 3. Introduction ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 3
  • 4. EIGRP  Roots of EIGRP: IGRP -Developed in 1985 to overcome RIPv1’s limited hop count -Distance vector routing protocol -Metrics used by IGRP bandwidth (used by default) Delay (used by default) reliability load -Discontinued support starting with IOS 12.2(13)T & 12.2(R1s4)S ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 4
  • 5. EIGRP EIGRP Message Format  EIGRP Header Data link frame header - contains source and destination MAC address IP packet header - contains source & destination IP address EIGRP packet header - contains AS number Type/Length/Field - data portion of EIGRP message ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 5
  • 6. EIGRP  EIGRP packet header contains –Opcode field –Autonomous System number  EIGRP Parameters contains –Weights –Hold time ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 6
  • 7. EIGRP  TLV: IP internal contains –Metric field –Subnet mask field –Destination field  TLV: IP external contains –Fields used when external routes are imported into EIGRP routing process ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 7
  • 8. EIGRP Protocol Dependent Modules (PDM)  EIGRP uses PDM to route several different protocols i.e. IP, IPX & AppleTalk  PDMs are responsible for the specific routing task for each network layer protocol ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 8
  • 9. EIGRP Reliable Transport Protocol (RTP)  Purpose of RTP –Used by EIGRP to transmit and receive EIGRP packets  Characteristics of RTP –Involves both reliable & unreliable delivery of EIGRP packet Reliable delivery requires acknowledgment from destination Unreliable delivery does not require an acknowledgement from destination –Packets can be sent Unicast Multicast –Using address 224.0.0.10 ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 9
  • 10. EIGRP EIGRP’s 5 Packet Types  Hello packets –Used to discover & form adjacencies with neighbors ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 10
  • 11. EIGRP  Update packets –Used to propagate routing information  Acknowledgement packets –Used to acknowledge receipt of update, query & reply packets ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 11
  • 12. EIGRP  Query & Reply packets Used by DUAL for searching for networks Query packets -Can use Unicast Multicast Reply packet -Use only unicast ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 12
  • 13. EIGRP  Purpose of Hello Protocol –To discover & establish adjacencies with neighbor routers  Characteristics of hello protocol –Time interval for sending hello packet Most networks it is every 5 seconds Multipoint non broadcast multi-access networks –Unicast every 60 seconds -Holdtime This is the maximum time router should wait before declaring a neighbor down Default holdtime –3 times hello interval ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 13
  • 14. EIGRP EIGRP Bounded Updates  EIGRP only sends update when there is a change in route status  Partial update –A partial update includes only the route information that has changed – the whole routing table is NOT sent  Bounded update –When a route changes, only those devices that are impacted will be notified of the change  EIGRP’s use of partial bounded updates minimizes use of bandwidth ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 14
  • 15. EIGRP Diffusing Update Algorithm (DUAL) –Purpose •EIGRP’s primary method for preventing routing loops –Advantage of using DUAL •Provides for fast convergence time by keeping a list of loopfree backup routes ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 15
  • 16. EIGRP  Administrative Distance (AD) –Defined as the trustworthiness of the source route  EIGRP default administrative distances –Summary routes = 5 –Internal routes = 90 –Imported routes = 170 ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 16
  • 17. EIGRP Authentication  EIGRP can – Encrypt routing information – Authenticate routing information ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 17
  • 18. EIGRP Network Topology  Topology used is the same as previous chapters with the addition of an ISP router ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 18
  • 19. EIGRP  EIGRP will automatically summarize routes at classful boundaries ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 19
  • 20. Basic EIGRP Configuration  Autonomous System (AS) & Process IDs –This is a collection of networks under the control of a single authority (reference RFC 1930) –AS Numbers are assigned by IANA –Entities needing AS numbers ISP Internet Backbone prodiers Institutions connecting to other institutions using AS numbers ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 20
  • 21. Basic EIGRP Configuration  EIGRP autonomous system number actually functions as a process ID  Process ID represents an instance of the routing protocol running on a router  Example Router(config)#router eigrp autonomous-system ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 21
  • 22. Basic EIGRP Configuration The router eigrp command  The global command that enables eigrp is router eigrp autonomous-system -All routers in the EIGRP routing domain must use the same process ID number (autonomous-system number) ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 22
  • 23. Basic EIGRP Configuration The Network Command  Functions of the network command –Enables interfaces to transmit & receive EIGRP updates –Includes network or subnet in EIGRP updates  Example –Router(config-router)#network network-address ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 23
  • 24. Basic EIGRP Configuration  The network Command with a Wildcard Mask -This option is used when you want to configure EIGRP to advertise specific subnets -Example Router(config-router)#network network-address [wildcard-mask] ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 24
  • 25. Basic EIGRP Configuration Verifying EIGRP  EIGRP routers must establish adjacencies with their neighbors before any updates can be sent or received  Command used to view neighbor table and verify that EIGRP has established adjacencies with neighbors is show ip eigrp neighbors ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 25
  • 26. EIGRP  The show ip protocols command is also used to verify that EIGRP is enabled ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 26
  • 27. Basic EIGRP Configuration Examining the Routing Table  The show ip route command is also used to verify EIGRP  EIGRP routes are denoted in a routing table by the letter “D”  By default , EIGRP automatically summarizes routes at major network boundary ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 27
  • 28. Basic EIGRP Configuration  Introducing the Null0 Summary Route –Null0 is not a physical interface –In the routing table summary routes are sourced from Null0 Reason: routes are used for advertisement purposes –EIGRP will automatically include a null0 summary route as child route when 2 conditions are met At least one subnet is learned via EIGRP Automatic summarization is enabled ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 28
  • 29. Basic EIGRP Configuration  R3’s routing table shows that the 172.16.0.0/16 network is automatically summarized by R1 & R3 ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 29
  • 30. EIGRP Metric Calculation EIGRP Composite Metric & the K Values  EIGRP uses the following values in its composite metric -Bandwidth, delay, reliability, and load  The composite metric used by EIGRP – formula used has values K1 K5 K1 & K3 =1 all other K values ITE PC v4.0 Chapter 1 =0 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 30
  • 31. EIGRP Metric Calculation  Use the sh ip protocols command to verify the K values ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 31
  • 32. EIGRP Metric Calculation EIGRP Metrics  Use the show interfaces command to view metrics  EIGRP Metrics Bandwidth – EIGRP uses a static bandwidth to calculate metric Most serial interfaces use a default bandwidth value of 1.544Mbos (T1) ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 32
  • 33. EIGRP Metric Calculation EIGRP Metrics  Delay is the defined as the measure of time it takes for a packet to traverse a route -it is a static value based on link type to which interface is connected ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 33
  • 34. EIGRP Metric Calculation  Reliability (not a default EIGRP metric) -A measure of the likelihood that a link will fail -Measure dynamically & expressed as a fraction of 255 the higher the fraction the better the reliability  Load (not a default EIGRP metric) – A number that reflects how much traffic is using a link – Number is determined dynamically and is expressed as a fraction of 255 The lower the fraction the less the load on the link ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 34
  • 35. EIGRP Metric Calculation Using the Bandwidth Command  Modifying the interface bandwidth -Use the bandwidth command -Example Router(config-if)#bandwidth kilobits  Verifying bandwidth –Use the show interface command  Note – bandwidth command does not change the link’s physical bandwidth ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 35
  • 36. EIGRP Metric Calculation  The EIGRP metric can be determined by examining the bandwidth delay ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 36
  • 37. EIGRP Metric Calculation  EIGRP uses the lowest bandwidth (BW)in its metric calculation Calculated BW = reference BW / lowest BW(kbps)  Delay – EIGRP uses the cumulative sum of all outgoing interfaces Calculated Delay = the sum of outgoing interface delays  EIGRP Metric = calculated BW + calculated delay ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 37
  • 38. EIGRP Metric Calculation ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 38
  • 39. DUAL Concepts  The Diffusing Update Algorithm (DUAL) is used to prevent looping ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 39
  • 40. DUAL Concepts  Successor The best least cost route to a destination found in the routing table  Feasible distance The lowest calculated metric along a path to a destination network ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 40
  • 41. DUAL Concepts Feasible Successors, Feasibility Condition & Reported Distance  Feasible Successor -This is a loop free backup route to same destination as successor route ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 41
  • 42. DUAL Concepts Feasible Successors, Feasibility Condition & Reported Distance  Reported distance (RD) -The metric that a router reports to a neighbor about its own cost to that network ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 42
  • 43. DUAL Concepts  Feasibility Condition (FC) -Met when a neighbor’s RD is less than the local router’s FD to the same destination network ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 43
  • 44. DUAL Concepts  Topology Table: Successor & Feasible Successor  EIGRP Topology table –Viewed using the show ip eigrp topology command Contents of table include: – all successor routes – all feasible successor routes ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 44
  • 45. DUAL Concepts  EIGRP Topology Table dissected ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 45
  • 46. DUAL Concepts Topology Table: No Feasible Successor  A feasible successor may not be present because the feasibility condition may not be met -In other words, the reported distance of the neighbor is greater than or equal to the current feasible distance ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 46
  • 47. DUAL Concepts  Finite Sate Machine (FSM) –An abstract machine that defines a set of possible states something can go through, what event causes those states and what events result form those states –FSMs are used to describe how a device, computer program, or routing algorithm will react to a set of input events ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 47
  • 48. DUAL Concepts  DUAL FSM –Selects a best loopfree path to a destination –Selects alternate routes by using information in EIGRP tables ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 48
  • 49. DUAL Concepts Finite State Machines (FSM)  To examine output from EIGRP’s finite state machine us the debug eigrp fsm command ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 49
  • 50. More EIGRP Configurations The Null0 Summary Route  By default, EIGRP uses the Null0 interface to discard any packets that match the parent route but do not match any of the child routes  EIGRP automatically includes a null0 summary route as a child route whenever both of the following conditions exist –One or subnets exists that was learned via EIGRP –Automatic summarization is enabled ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 50
  • 51. More EIGRP Configurations The Null0 Summary Route ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 51
  • 52. More EIGRP Configurations Disabling Automatic Summarization  The auto-summary command permits EIGRP to automatically summarize at major network boundaries  The no auto-summary command is used to disable automatic summarization –This causes all EIGRP neighbors to send updates that will not be automatically summarized this will cause changes to appear in both -routing tables -topology tables ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 52
  • 53. More EIGRP Configurations Manual Summarization  Manual summarization can include supernets Reason: EIGRP is a classless routing protocol & include subnet mask in update  Command used to configure manual summarization –Router(config-if)#ip summary-address eigrp as-number network-address subnet-mask ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 53
  • 54. More EIGRP Configurations  Configuring a summary route in EIGRP ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 54
  • 55. More EIGRP Configurations EIGRP Default Routes  “quad zero” static default route -Can be used with any currently supported routing protocol -Is usually configured on a router that is connected a network outside the EIGRP domain  EIGRP & the “Quad zero” static default route –Requires the use of the redistribute static command to disseminate default route in EIGRP updates ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 55
  • 56. More EIGRP Configurations Fine-Tuning EIGRP  EIGRP bandwidth utilization -By default, EIGRP uses only up to 50% of interface bandwidth for EIGRP information -The command to change the percentage of bandwidth used by EIGRP is Router(config-if)#ip bandwidth-percent eigrp asnumber percent ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 56
  • 57. More EIGRP Configurations  Configuring Hello Intervals and Hold Times -Hello intervals and hold times are configurable on a per-interface basis -The command to configure hello interval is Router(config-if)#ip hello-interval eigrp as-number seconds  Changing the hello interval also requires changing the hold time to a value greater than or equal to the hello interval -The command to configure hold time value is Router(config-if)#ip hold-time eigrp as-number seconds ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 57
  • 58. Summary  Background & History –EIGRP is a derivative of IGRP EIGRP is a Cisco proprietary distance vector routing protocol released in 1994  EIGRP terms and characteristics –EIGPR uses RTP to transmit & receive EIGRP packets –EIGRP has 5 packet type: Hello packets Update packets Acknowledgement packets Query packets Reply packets –Supports VLSM & CIDR ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 58
  • 59. Summary  EIGRP terms and characteristics –EIGRP uses a hello protocol Purpose of hello protocol is to discover & establish adjacencies –EIGRP routing updates Aperiodic Partial and bounded Fast convergence ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 59
  • 60. Summary  EIGRP commands –The following commands are used for EIGRP configuration RtrA(config)#router eigrp [autonomous-system #] RtrA(config-router)#network network-number –The following commands can be used to verify EIGRP Show ip protocols Show ip eigrp neighbors Show ip route ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 60
  • 61. Summary  EIGRP metrics include –Bandwidth (default) –Delay (default) –Reliability –Load ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 61
  • 62. Summary  DUAL –Purpose of DUAL To prevent routing loops –Successor Primary route to a destination –Feasible successor Backup route to a destination –Feasible distance Lowest calculated metric to a destination –Reported distance The distance towards a destination as advertised by an upstream neighbor ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 62
  • 63. Summary  Choosing the best route –After router has received all updates from directly connected neighbors, it can calculate its DUAL 1st metric is calculated for each route 2nd route with lowest metric is designated successor & is placed in routing table 3rd feasible successor is found –Criteria for feasible successor: it must have lower reported distance to the destination than the installed route’s feasible distance –Feasible routes are maintained in topology table ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 63
  • 64. Summary  Automatic summarization –On by default –Summarizes routes on classful boundary –Summarization can be disabled using the following command RtrA(config-if)#no auto-summary ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 64
  • 65. ITE PC v4.0 Chapter 1 © 2007 Cisco Systems, Inc. All rights reserved. Cisco Public 65