A router has learned three possible routes that could be used to reach a destination network One route is from EIGRP and has a composite metric of 07104371.

A router has learned three possible routes that could be used to reach a destination network One route is from EIGRP and has a composite metric of 07104371.
Another route is from OSPF with a metric of 782 The last is from RIPv2 and has a metric of 4 Which route or routes will the router install in the routing table?
A. the EIGRP route
B. the OSPF route
C. the RIPv2 route
D. all three routes
E. the OSPF and RIPv2 routes

cisco-exams

3 thoughts on “A router has learned three possible routes that could be used to reach a destination network One route is from EIGRP and has a composite metric of 07104371.

  1. It’s the administative distance that is relevant here:

    EIGRP = 90
    OSPF = 110
    RIP = 120

    The route with the lowest metric is placed in the routing table.

    show run:

    router eigrp 10
    network 192.168.1.254 0.0.0.0
    network 192.168.2.1 0.0.0.0
    !
    router ospf 10
    network 192.168.1.254 0.0.0.0 area 0
    network 192.168.2.1 0.0.0.0 area 0
    !
    router rip
    version 2
    network 192.168.1.0
    network 192.168.2.0
    no auto-summary

    show ip route
    !
    192.168.1.0/24 is variably subnetted, 2 subnets, 2 masks
    C 192.168.1.0/24 is directly connected, GigabitEthernet0/0
    L 192.168.1.254/32 is directly connected, GigabitEthernet0/0
    192.168.2.0/24 is variably subnetted, 2 subnets, 2 masks
    C 192.168.2.0/24 is directly connected, GigabitEthernet0/1
    L 192.168.2.1/32 is directly connected, GigabitEthernet0/1
    D 192.168.3.0/24 [90/3072] via 192.168.2.2, 00:01:48, GigabitEthernet0/1
    D 192.168.4.0/24 [90/3328] via 192.168.2.2, 00:01:48, GigabitEthernet0/1

    As you can see from the output, only D (EIGRP) routes are in the routing table hence A is correct.

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.