Video summary

Free CCNA | Configuring EIGRP | Day 25 Lab | CCNA 200-301 Complete Course

Main summary

Key takeaways

Educational

Main ideas / lessons conveyed

Purpose and exam framing (EIGRP)

  • The instructor introduces basic EIGRP configuration in a CCNA lab.
  • While EIGRP configuration commands are not the primary focus of the CCNA exam, the video highlights exam-relevant concepts:
    • EIGRP metric
    • Path selection
    • Unequal-cost load-balancing

Lab methodology / step-by-step procedure (what to configure and how)

Step 1 — Basic device setup

Configure, for each router:

  • Hostnames
  • IP addresses
  • Enable router interfaces

Ensure all routers are in the same EIGRP Autonomous System (AS), otherwise they:

  • won’t form neighbors
  • won’t exchange routes

Topology note:

  • The link between R1 and R2 uses GigabitEthernet
  • Other router-to-router links use FastEthernet

Step 2 — Configure Loopback interfaces (one per router)

Create a loopback interface on each router:

  • R1: Loopback0 = 1.1.1.1/32
  • R2: Loopback0 = 2.2.2.2/32
  • R3: Loopback0 = 3.3.3.3/32
  • R4: Loopback0 = 4.4.4.4/32

Key loopback concept:

  • Loopback interfaces are virtual and typically always up/up unless explicitly shut down.

Step 3 — Enable EIGRP and make appropriate interface choices

On R4 (lab method / commands)

  • Enter EIGRP mode:
    • router eigrp 100 (AS number is 100)
  • Enable EIGRP on interfaces:
    • Uses a lab shortcut: network 0.0.0.0 255.255.255.255 (matches everything /0)
    • Note: the instructor warns enabling on all interfaces is not recommended for real networks
  • Disable auto-summary:
    • no auto-summary
  • Set passive interfaces to avoid sending EIGRP updates on non-neighbor segments:
    • passive-interface G0/0
    • passive-interface L0 (loopback)
  • Verification:
    • Use show ip protocols to confirm:
      • auto-summary status
      • passive interfaces

On R3 (more precise enabling)

  • Enter EIGRP:
    • router eigrp 100
  • Enable EIGRP using exact interface/prefix matching (with wildcard masks):
    • network 10.0.13.0 0.0.0.3 (link subnet)
    • network 10.0.34.0 0.0.0.3 (link subnet)
    • network 3.3.3.3 0.0.0.0 (loopback advertisement as /32)
  • Disable auto-summary:
    • no auto-summary
  • Make loopback passive:
    • passive-interface L0
  • Verification via:
    • show ip protocols

On R2

  • Enter EIGRP:
    • router eigrp 100
  • Enable EIGRP with more specific network statements:
    • network 10.0.12.0 0.0.0.3
    • network 10.0.24.0 0.0.0.3
    • network 2.2.2.2 0.0.0.0 (loopback /32)
  • Disable auto-summary:
    • no auto-summary
  • Make loopback passive:
    • passive-interface L0
  • Verification:
    • show ip protocols

On R1 (includes neighbor/path checking)

  • Enter EIGRP:
    • router eigrp 100
  • Enable EIGRP for relevant link networks:
    • network 10.0.12.0 0.0.0.3
    • network 10.0.13.0 0.0.0.3
  • Advertise R1 loopback:
    • network 1.1.1.1 0.0.0.0
  • Disable auto-summary:
    • no auto-summary
  • Make loopback passive:
    • passive-interface L0
  • Verification:
    • show ip protocols
    • show ip eigrp neighbors (neighbors and interfaces)
    • show ip route / show ip route eigrp (confirm EIGRP routes installed)

EIGRP concepts explained (lecture component)

1) EIGRP metric (how EIGRP “cost” is computed)

  • Default EIGRP metric uses:
    • bandwidth and delay
    • (Uses K-values in the formula; defaults are mentioned, but the key takeaway is conceptual.)
  • Instructor’s test-friendly simplification:
    • EIGRP metric ≈
      • bandwidth of the slowest link in the path
      • + delay of all links in the path
  • Important detail:
    • Delay is typically derived from interface bandwidth (not by actively pinging).

2) Key EIGRP terminology: feasible distance, reported distance, successor, feasible successor

  • Feasible distance (FD):
    • The metric from the local router to the destination network (best-known metric via a path).
  • Reported distance (RD) / advertised distance:
    • The metric advertised by the neighbor router for reaching the destination.
  • Successor:
    • The best route (lowest metric) to the destination.
  • Feasible successor:
    • A backup route that is guaranteed loop-free if it meets the feasibility condition.

3) Feasibility condition (loop prevention)

A route becomes a feasible successor if:

  • Reported distance < successor’s feasible distance

4) Unequal-cost load-balancing (EIGRP-specific)

  • Default behavior:
    • EIGRP has maximum metric variance = 1
    • With variance 1, EIGRP performs equal-cost load-balancing (ECMP) only.
  • To enable unequal-cost load-balancing:
    • Configure variance 2 (or other values)
    • Meaning:
      • feasible successor routes with FD up to (variance × successor FD) can be used for load-balancing
  • Critical rule:
    • Only feasible successor routes are eligible.
    • If the feasibility condition is not met, EIGRP will never use that route for load-balancing (regardless of variance).

Summary of the four terms (as emphasized in the video)

  • Feasible distance: local router’s best metric to the destination.
  • Reported distance (advertised distance): neighbor router’s metric to the destination.
  • Successor: lowest-metric (best) route; multiple successors possible if equal metric.
  • Feasible successor: alternate route meeting feasibility condition (loop-free guarantee).

ExSim practice integration (learning reinforcement)

  • The instructor uses a Boson ExSim simulator question to match terms to definitions.
  • Terms tested:
    • Advertised distance (reported distance)
    • Feasible distance
    • Feasible successor
    • Successor
  • The video emphasizes that some wording differs from the instructor’s phrasing, so learners must map concepts carefully.

Router verification commands used (implicit checklist of what to look for)

  • show ip protocols
    • auto-summary state, passive interfaces, EIGRP enabled networks
  • show ip eigrp neighbors
    • adjacency formation
  • show ip route eigrp
    • EIGRP routes installed
  • show ip eigrp topology
    • FD/RD and multiple paths
  • show ip route variations such as:
    • show ip route connected
    • show ip route static (mentioned as related examples)

Speakers / sources featured

Speakers

  • Jeremy (host of “Jeremy’s IT Lab”; author of the course/lab)

Sources / brands referenced

  • BosonNetSim and ExSim for CCNA practice
  • Cisco documentation — referenced as “Introduction to EIGRP”
  • Packet Tracer — mentioned as the simulator used for trying labs
  • Brave — mentioned for receiving tips via BAT (Basic Attention Token)

People acknowledged (channel member names, credited at end)

Ed, Tillman, Value, Magrathea, Justin, John, Funnydart, Scott, Hassan, Gerrard, Tibi, Vikram, Joyce, Marek, Velvijaykum, C Mohd, Johan, Mark, Miguel, Yousif, Sidi, Boson Software, Charlesetta, Devin, Aleksander, Lito, Mike, Yonatan, Vance

Original video