• Enhanced Interior Gateway Routing Protocol (EIGRP) is classified as an advanced distance-vector routing protocol.
    However, it incorporates characteristics commonly associated with link-state protocols.

    As you may already know, RIP is one of the simplest distance-vector protocols.
    EIGRP was designed to improve the limitations of RIP.

    To understand why EIGRP is more powerful, let’s compare both.

    EIGRP vs RIP

    Imagine a topology where links between routers do not have the same bandwidth.
    If you run RIP in this network, routing decisions are based only on hop count.

    RIP routing protocol diagram showing hop count based path selection toward network 10.0.23.0/24 with a 100 Mbps link ignored.

    Figure 1 – RIP Path Selection Based on Hop Count

    That means:

    • RIP does not evaluate bandwidth.

    • RIP does not evaluate delay.

    • RIP does not evaluate link performance.

    It only counts how many routers are in the path.
    So in this scenario, R1 will choose the direct path through R3 to reach 10.0.23.0/24, simply because it has fewer hops.

    This is the main limitation of RIP:
    It assumes that fewer hops always means better performance.

    But in real networks, that is not necessarily true.

    Answer the question below

    Which metric does RIP use to select the best path?

    How EIGRP Improves Path Selection

    Now, this is where EIGRP changes the game.

    Unlike RIP, EIGRP does not just count routers.
    It evaluates the quality of the entire path before making a decision.

    By default, EIGRP considers:

    • The minimum bandwidth along the path

    • The total delay across the path

    EIGRP routing diagram showing path selection based on link bandwidth toward network 10.0.23.0/24.

    Figure 2 – EIGRP Path Selection Based on Link Quality

    This means that when you run EIGRP in the same topology, R1 will not automatically choose the path with fewer hops.
    Instead, it will calculate which path offers better overall performance.

    In this case, R1 selects the path:
    R1 → R2 → R3 → 10.0.23.0/24

    because it provides better link quality, even if it has more hops.

    Answer the question below

    By default, EIGRP calculates its metric using bandwidth and what?