• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/34

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

34 Cards in this Set

  • Front
  • Back

EIGRP Configuration Overview

  1. Neighboring routers' router eigrp asn commands must be configured with the same ASN parameter to become neighbors.
  2. Cisco IOS enables only EIGRP on interfaces matched by an EIGRP network command. When enabled the router will attempt to discover EIGRP neighbors on that interface by sending multicast EIGRP Hello messages and Advertise to other neighbors about the subnet connected to the interface.
  3. If no wild card mask is configured on the EIGRP network command, the command's single parameter should be a classful network number.
  4. If no wildcard mask is configured on the EIGRP network command, the command enables EIGRP on all of that router's interfaces directly connected to the configured network.
  5. If the network command includes a wildcard mask, the router performs access control list logic when comparing the net-id configured in the network command with each interface's IP address, using the configured wildcard mask as an ACL wildcard mask.

List the working interfaces on which EIGRP is enabled (based on the network commands); it omits passive interfaces.

show ip eigrp interfaces

Lists the contents of the network configuration commands for each routing process, and a list of neighbor IP addresses.

show ip protocols

Lists known neighbors; does not list neighbors for which some mismatched parameter is preventing a valid EIGRP neighbor relationship.

show ip eigrp neighbors

Lists all successor and feasible successor routes known to this router. It does not list all known topology details.

show ip eigrp topology

Lists the contents of the IP routing table, listing EIGRP-learned routes with a code of D on the left side of the output.

show ip route

EIGRP Neighbor Discovery

EIGRP routers send Hello messages to discover potential neighboring EIGRP routers and perform basic parameter checks to determine which routers should become neighbors.

EIGRP Topology Exchange

Neighbors exchange full topology updates when the neighbor relationship comes up, and then only partial updates as needed based on changes to the network topology.

EIGRP Choosing Routes

Each router analyzes its respective EIGRP topology table, choosing the lowest-metric route to reach each subnet.

EIGRP Multicast Address

224.0.0.10

EIGRP Metric Calculation (Default K-Values)

Metric = ((10^7/least-bandwidth) + cumulative-delay)*256

EIGRP Feature - Transport

IP, protocol type 88 (does not use UDP or TCP).

EIGRP Feature - Metric

Based on constrained bandwidth and cumulative delay by default, and optionally load and reliability.

EIGRP Feature - Hello Interval

Interval at which a router sends EIGRP Hello messages on an interface.

EIGRP Feature - Hold Timer

Timer used to determine when a neighboring router has failed, based on a router not receiving any EIGRP messages, including Hellos, in this timer period.

EIGRP Feature - Update Destination Address

Normally sent to 224.0.0.10, with retransmissios being sent to each neighbor's unicast IP address. Can also be sent to the neighbor's unicast IP address.

EIGRP Feature - Full or Partial Updates

Full updates are used when new neighbors are discovered; otherwise, partial updates are used.

EIGRP Feature - Authentication

Supports MD5 authentication only.

EIGRP Feature - VLSM/classless

EIGRP includes the mask with each route, also allowing it to support discontiguous networks and VLSM.

EIGRP Feature - Route Tags

Allows EIGRP to tag routes as they are redistributed into EIGRP.

EIGRP Feature - Next-hop field

Supports the advertisement of routes with different next-hop router than the advertising router.

EIGRP Feature - Manual Route Summarization

Allows route summarization at any point in the EIGRP network.

EIGRP Feature - Automatic Summarization

EIGRP supports, and defaults to use, automatic route summarization at classful network boundaries.

EIGRP Feature - Multiprotocol

Supports the advertisement of IPX, AppleTalk, IPv4, and IPv6 routes.

Configure EIGRP Hello and Hold Timers

  • To configure EIGRP Hello Timer use the interface command - ip hello-interval eigrp asn timer
  • To configure EIGRP Hold Timer use the interface command - ip hold-interval eigrp asn timer

Verify EIGRP Hello/Hold Timers

  • Verify using either the show running-config command or - show ip eigrp interfaces detail type number command

How to advertise subnet while disallowing EIGRP neighborships on interface (2)

  • Enable EIGRP on the interface using the EIGRP network command, but tell the router to not send any EIGRP messages on the interface by making the interface passive using the passive-interface router command.
  • Do not enable EIGRP on the interface, and advertise the connected route using route redistribution (and the redistribute connected configuration command). This can cause problems because it will advertise the route as an external EIGRP route.

EIGRP - Verify Passive Interfaces

show ip protocols

Configure EIGRP Static Neighbors

  • Configure the static neighbor using the following router subcommand
  • neighbor ip-address outgoing-interface
  • This command will disable multicast packets from be processed on the configured outgoing interface.

Verify EIGRP Static Neighbor

  • show ip eigrp neighbors will show the neighbor but not identify it as static.
  • show ip eigrp neighbors detail will identify a neighbor as static

Neighbor Requirements for EIGRP

  • Routers must be able to send/receive IP packets to one another
  • Interfaces' primary IP addresses must be in the same subnet.
  • Must not be passive on the connected interface.
  • Must use the same ASN in the router configuration command
  • Must pass neighbor authentication
  • K-values must match

Configure K-Values

  • Use the following router sub command to configure k-values
  • metric weights tos(0) k1 k2 k3 k4 k5

Verify K-Values

show ip protocols

EIGRP Router ID Determination Process

  1. Use the configured value (using the eigrp router-id a.b.c.d EIGRP subcommand).
  2. Use the highest IPv4 address on an up/up loopback interface.
  3. Use the highest IPv4 address on an up/up nonloopback interface.