Video summary

Free CCNA | Dynamic Routing | Day 24 | CCNA 200-301 Complete Course

Main summary

Key takeaways

Technology

Summary of the video (CCNA 200-301: Dynamic Routing Day 24)

Course context / what this day covers

  • The instructor revisits Layer 3 concepts after earlier work on VLANs, DTP, VTP, Spanning Tree, and EtherChannel.
  • This video begins a new section on Dynamic Routing, contrasting it with Static Routing (previously covered on Day 11).
  • It targets CCNA exam topic 3.0 IP Connectivity (~25%), covering most of it here, while leaving some subtopics (specifically 3.5) for later.

Static vs dynamic routing (core idea)

  • Static routing: manually configure routes using ip route for each destination.
  • Dynamic routing: configure a dynamic routing protocol; routers automatically learn best paths and react to changes.

Dynamic routing is preferred because:

  • When a new LAN appears, routers automatically advertise reachability.
  • If a path fails, routers remove or replace invalid routes with the next-best option.

Route table concepts (exam-relevant definitions)

  • Network routes: route to a subnet (prefix length < /32), e.g., /24.
  • Host routes: route to a single IP address, explicitly using /32.
  • Static host routes use ip route <host> 255.255.255.255 (as described).

Demonstration / behavior during failure

Using a topology with routers R1–R4 and LAN 192.168.4.0/24:

  • With dynamic routing enabled:

    • R4 advertises 192.168.4.0/24 to R2.
    • R2 advertises it onward to R1, and R1 may propagate it to R3.
    • If R4’s link goes down, routers automatically adapt:
      • The route via the failed path is removed.
      • If an alternate path exists, the route is replaced with the next-best path.
  • With static routing (no dynamic protocol):

    • R1 keeps forwarding traffic toward the old next hop even after failure, because it has no automatic knowledge of route invalidation.

Additional points:

  • Preferred path selection is driven by routing “cost”/metric (example: a FastEthernet link being higher cost than Gigabit).

Key dynamic routing principles

  • Routers form adjacencies (neighbor relationships) to exchange routing information.
  • If multiple paths exist to the same destination, the router installs the best route(s) based on:
    • Metric (within the same routing protocol)
    • Administrative Distance (AD) (between different routing protocols)
  • If equal-cost paths exist, traffic can be load-balanced.

Types of dynamic routing protocols (big categories)

  1. IGP (Interior Gateway Protocol)
    • Within a single Autonomous System (AS)/organization (e.g., a company).
  2. EGP (Exterior Gateway Protocol)
    • Between different autonomous systems (inter-organization, internet).

Only one EGP is emphasized as used in modern networks:

  • BGP (Border Gateway Protocol) (path-vector type)

Algorithm types (how protocols compute best paths)

  • EGP: Path Vector (BGP only)
  • IGP has two algorithm types:
    • Distance Vector: RIP, EIGRP
    • Link State: OSPF, IS-IS

Distance vector vs link state (conceptual comparison)

Distance vector (RIP/EIGRP)

  • Routers share:
    • Known destination networks
    • Metric to reach them
  • Routing by rumor”:
    • Each router only knows what neighbors tell it.
  • More limited network view, typically slower to react.

Link state (OSPF/IS-IS)

  • Each router builds a connectivity map of the network (the same map exists across all routers).
  • Routers advertise interface/network-state info; the map is flooded and synchronized.
  • Uses more CPU/memory, but faster convergence than distance vector.

Metric (best route selection within a protocol)

  • Lower metric = better route.
  • Examples:
    • RIP: hop count
    • EIGRP: uses bandwidth and delay (bandwidth from the slowest link; delay accumulates)
    • OSPF: cost based on bandwidth
    • IS-IS: cost; default behavior similar to hop-count unless configured

Equal-Cost MultiPath (ECMP)

  • If multiple routes to the same exact destination prefix have the same metric, both can be installed.
  • Called ECMP load balancing.
  • Example shown with OSPF routes to 192.168.4.0/24 where both paths had equal metric (traffic is load-balanced over both).

Administrative Distance (AD) (route preference across protocols)

  • AD selects which routing protocol’s route wins when different protocols offer routes to the same destination.
  • Metric cannot be compared across different protocols (e.g., OSPF cost vs EIGRP metric units differ).
  • Rules emphasized:
    • Lower AD is more preferred
    • AD values are Cisco-specific and important for the CCNA exam

AD ordering mentioned:

  • Connected: 0 (often not displayed in show ip route)
  • Static: 1
  • eBGP: 20
  • EIGRP: 90
  • IGRP (older): 100
  • OSPF: 110
  • IS-IS: 115
  • RIP: 120
  • iBGP: 200
  • 255: unusable (route not installed)

Floating static routes

  • You can raise a static route’s AD using ip route ... <distance> (as described).
  • This can make it inactive unless dynamic routes are removed—used as backup.

Tutorial-style review / takeaway

  • Dynamic routing protocols allow routers to:
    • Exchange reachability automatically
    • Remove/replace routes upon failure
  • Protocol categories:
    • IGP vs EGP
    • Distance vector vs link state vs path vector
  • Decision logic:
    • AD wins across protocols
    • Metric wins within the same protocol
    • ECMP possible when metric ties

Quiz / practice questions included in the video

  1. Route selection across multiple protocols

    • If R1 learns the same destination via RIP, EIGRP, OSPF, IS-IS, only the EIGRP route is installed because EIGRP has the lowest AD among them.
  2. “Routing by rumor” identification

    • The answer is Distance Vector (RIP/EIGRP), not link-state or path-vector.
  3. ECMP within a routing protocol

    • Two RIP-learned routes to the same destination with the same hop count (metric) → both routes installed and load-balanced.
  4. Boson ExSim bonus question (route selection with prefix-length differences)

    • Routes have different prefix lengths (static routes /22, /24, /26, /28 and dynamic routes to other prefixes).
    • Result: the router uses longest prefix match (most specific route) when destinations differ.

Main speaker(s) / sources

  • Main speaker: Jeremy (speaker credited as “Jeremy’s IT Lab”)
  • Course materials / references:
    • Boson ExSim for CCNA (used for quiz/bonus questions)
    • Mention of Cisco documentation (“Route selection in Cisco routers”)

Original video