• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.
Xin chào ! Nếu đây là lần đầu tiên bạn đến với diễn đàn, xin vui lòng danh ra một phút bấm vào đây để đăng kí và tham gia thảo luận cùng VnPro.

Announcement

Collapse
No announcement yet.

ROUTE (642-902): EIGRP Questions

Collapse
This is a sticky topic.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • ROUTE (642-902): EIGRP Questions

    Question 1

    Which three statements about the EIGRP routing protocol are true? (Choose three)
    A – EIGRP sends periodic hello packets to the multicast IP address 224.0.0.9
    B – EIGRP sends periodic hello packets to the multicast IP address 224.0.0.10
    C – EIGRP supports five generic packet types. including hello, update, query, reply, and ACK packets
    D – EIGRP supports five generic packet types, including hello, database description (DBD), link-state request (LSR), link-state update (LSU), and LSAck
    E – E. EIGRP will form a neighbor relationship with another peer even when their K values are mismatched
    F – A. EIGRP will not form a neighbor relationship with another peer when their K values are mismatched

    Answer: B, C, F


    Question 2

    After DUAL calculations, a router has identified a successor route, but no routes have qualified as a feasible successor. In the event that the current successor goes down, what process will EIGRP use in the selection of a new successor?
    A – EIGRP will find the interface with the lowest MAC address
    B – The route will transition to the active state
    C – The route will transition to the passive state
    D – EIGRP will automatically use the route with the lowest feasible distance (FD)
    E – EIGRP will automatically use the route with the lowest advertised distance (AD)

    Answer: B

    Explanation

    When a route (current successor) goes down, the router first checks its topology table for a feasible successor but it can’t find one. So it goes active on the that route to find a new successor by sending queries out to its neighbors requesting a path to the lost route.

    Question 3

    Refer to the exhibit. Routers R1 and R2 have established a neighbor relationship and are exchanging routing information. The network design requires that R1 receive routing updates from R2, but not advertise any routes to R2. Which configuration command sequence will successfully accomplish this task?

    A – R1(config)# router eigrp 1
    R1(config-router)# passive-interface serial 0
    B – R2(config)# router eigrp 1
    R2(config-router)# passive-interface serial 0
    C – R1(config)# access-list 20 deny any
    R1(config)# router eigrp 1
    R1(config-router)# distribute-list 20 out serial 0
    D – R2(config)# access-list 20 deny any
    R2(config)# router eigrp 1
    R2(config-router)# distribute-list 20 out serial 0
    E – R1(config)# access-list 20 permit any
    R1(config)# router eigrp 1
    R1(config-router)# distribute-list 20 in serial 0
    F – R2(config)# access-list 20 permit any
    R2(config)# router eigrp 1
    R2(config-router)# distribute-list 20 in serial 0

    Answer: C

    Explanation

    We can not use passive-interface to accomplish this task because the “passive-interface…” command (in EIGRP or OSPF) will shut down the neighbor relationship of these two routers (no hello packets are exchanged). And to filter routing updates we should configure a distribute list on R1 with an access list that deny all and apply it to the outbound direction so that R1 can receive but can not send routing updates.

    Question 4

    EIGRP has been configured to operate over Frame Relay multipoint connections. What should the bandwidth command be set to?
    A – the CIR rate of the lowest speed connection multiplied by the number of circuits
    B – the CIR rate of the lowest speed connection
    C – the CIR rate of the highest speed connection
    D – the sum of all the CIRs divided by the number of connections


    Answer: A

    Explanation

    If the multipoint network has different speeds allocated to the VCs, take the lowest CIR and simply multiply it by the number of circuits. This is because in Frame-relay all neighbors share the bandwidth equally, regardless of the actual CIR of each individual PVC, so we have to get the lowest speed CIR rate and multiply it by the number of circuits. This result will be applied on the main interface (or multipoint connection interface).

    Question 5


    Refer to the exhibit. EIGRP is configured on all routers in the network. On a basis of the show ip eigrp topology output provided, what conclusion can be derived?
    A – Router R1 can send traffic destined for network 10.6.1.0/24 out of interface FastEthernet0/0
    B – Router R1 is waiting for a reply from the neighbor 10.1.2.1 to the hello message sent out before it declares the neighbor unreachable
    C – Router R1 is waiting for a reply from the neighbor 10.1.2.1 to the hello message sent out inquiring for a second successor to network 10.6.1.0/24
    D – Router R1 is waiting for a reply from the neighbor 10.1.2.1 in response to the query sent out about network 10.6.1.0/24



    Answer: D

    Explanation

    From the output, we notice that there is an active route (A) and the reply status flag (r) was set. An active EIGRP route is the state when a network change occurs and a feasible successor is not found by a EIGRP router for a given route (10.6.1.0/24); and the reply status flag (r) means that R1′s queries were sent out to the neighbors asking for routing information to the 10.6.1.0/24 network but hasn’t received a reply yet. Therefore the answer A – router R1 can send traffic destined for network 10.6.1.0/24 is not correct because router R1 can’t find a path to that network. Answers B and C are not correct because R1 doesn’t send a hello message but a query asking for routing information to the desired network.


    Question 6


    Refer to the exhibit. EIGRP has been configured on all routers in the network. What additional configuration statement should be included on router R4 to advertise a default route to its neighbors?
    A. R4(config)#ip default-network 10.0.0.0
    B. R4(config)#ip route 0.0.0.0 0.0.0.0 10.1.1.1
    C. R4(config)#ip route 10.0.0.0 255.0.0.0 10.1.1.1
    D. R4(config-router)# default-information originate

    Answer: A

    Explanation

    The “ip default-network ” command will direct other routers to send its unknown traffic to this network. Other router (R1,R2,R3) will indicate this network as the “Gateway of last resort”.
    There is another way to route unknown traffic to 10.1.1.0/24 network: create a static route using “ip route 0.0.0.0 0.0.0.0 10.1.1.2″ command then inject this route using the “network 0.0.0.0″ command, or using “redistribute static” command.
    Note: In EIGRP, default routes cannot be directly injected (as they can in OSPF with the default-information originate command. Also, EIGRP does not have the “default-information originate” command).

    Question 7

    Refer to the exhibit. Router RTA is the hub router for routers RTB and RTC. The Frame Relay network is configured with EIGRP, and the entire network is in autonomous system 1. However, router RTB and RTC are not receiving each other’s routes. What is the solution?
    A. Configure the auto summary command under router eigrp 1 on router RTA.
    B. Issue the no ip split horizon command on router RTA.
    C. Configure subinterfaces on the spoke routers and assign different IP address subnets for each subinterface.
    D. Check and change the access lists on router RTA.
    E. Issue the no ip split horizon eigrp 1 command on router RTA.

    Answer: E

    Explanation

    RTB and RTC cannot see each other because of the split horizon rule: “A router never sends information about a route back in same direction which is original information came”. To overcome this problem we can configure subinterfaces or disable split horizon with the command “no ip split horizon eigrp 1″ on RTA.

    Question 8

    When troubleshooting an EIGRP connectivity problem, you notice that two connected EIGRP routers are not becoming EIGRP neighbors. A ping between the two routers was successful. What is the next thing that should be checked?
    A. Verify that the EIGRP hello and hold timers match exactly.
    B. Verify that EIGRP broadcast packets are not being dropped between the two routers with the show ip EIGRP peer command.
    C. Verify that EIGRP broadcast packets are not being dropped between the two routers with the show ip EIGRP traffic command.
    D. Verify that EIGRP is enabled for the appropriate networks on the local and neighboring router.

    Answer: D


    Question 9


    Refer to the exhibit. You are the network administrator of the Route.com company. You have been tasked to implement a hub and spoke EIGRP topology over Frame Relay to provide connectivity between the networks at headquarters and all 300 spokes.
    Before you begin the actual implementation, which three pieces of information are more important to know than the others? (Choose three)
    A. the Committed Information Rate of all the Frame Relay PVCs
    B. the Cisco IOS version running on all the routers
    C. the router model number of all the spoke routers
    D. the number of HQ networks connected behind the headquarter routers
    E. the routing policy, such as whether or not the spokes can be used as backup transient point between the two headquarter routers

    Answer: A B E


    Question 10

    Refer to the exhibit. The Route.com company is running EIGRP between all the routers. Currently, if one of the LAN links (LAN1 or LAN2) at the headquarters flaps (goes up and down), the HQ-RTR1 and HQ-RTR2 routers will experience high CPU usage and have a long EIGRP convergence time. As the new network administrator, you are asked to investigate this situation and determine if there is a quick way to resolve this issue.

    Which is the most important thing that you can quickly verify first to resolve this issue?
    A. Verify that the bandwidth setting on all WAN links is correct.
    B. Verify that the HQ-RTR1 and HQ-RTR2 routers are configured to send only a default route to all the spoke routers.
    C. Verify that the HQ-RTR1 and HQ-RTR2 routers are configured for EIGRP Nonstop Forwarding.
    D. Verify that all the spoke routers are configured for autosummarization.
    E. Verify that all the spoke routers are configured as EIGRP stub.

    Answer: E


    Question 11

    Refer to the exhibit. When you examine the routing table of R1 and R4, you are not able to see the R1 Ethernet subnet on the R4 routing table. You are also not able to see the R4 Ethernet subnet on the R1 routing table.

    Which configuration change should be made to resolve this issue? Select the routers where the configuration change will be required, and select the required EIGRP configuration command(s). (Choose two)
    A. R1 and R4
    B. R2 and R3
    C. ip summary-address eigrp 1 10.1.1.0 255.255.255.0 and ip summary-address eigrp 1
    D. variance 2
    E. eigrp stub connected
    F. no auto-summary

    Answer: B F


    Question 12

    Refer to the exhibit. The actual speed of the serial links between R2 and R3 are 256 kb/s and 512 kb/s respectively. When configuring EIGRP on routers R2 and R3, the network administrator configured the bandwidth of both serial interfaces to 512 kb/s. What will be the effect?
    A. EIGRP will overutilize the 512 kb/s link.
    B. The interface “delay” value used in the EIGRP metric calculation will be inaccurate on the 256 kb/s serial interface.
    C. The amount of bandwidth used for EIGRP routing protocol traffic on the 256 kb/s link can become excessive.
    D. EIGRP can load balance between the two serial links only if the variance is set to 2 or higher.
    E. Unequal cost load balancing will be disabled.

    Answer: C


    Question 13

    Refer to the exhibit. ROUTE.com has just implemented this EIGRP network. A network administrator came to you for advice while trying to implement load balancing across part of their EIGRP network.
    If the variance value is configured as 2 on all routers and all other metric and K values are configured to their default values, traffic from the Internet to the data center will be load balanced across how many paths?
    A. 1
    B. 2
    C. 3
    D. 4

    Answer: C

    Explanation

    First we should list all the paths from the Internet to the data center:

    + A-B-C-H with a metric of 70 (40 + 15 + 15)
    + A-B-E-H with a metric of 60 (40+10+10)
    + A-D-E-H with a metric of 30 (10+10+10)
    + A-D-E-B-C-H with a metric of 60 (10+10+10+15+15)
    + A-D-E-F-G-H with a metric of 70 (10+10+10+20+20)
    + A-F-G-H with a metric of 60 (20+20+20)
    + A-F-E-H with a metric of 40 (20+10+10)
    So the path A-D-E-H will be chosen because it has the best metric. But EIGRP can support unequal cost path load balancing. By configuring the variance value of 2, the minimum metric is increased to 60 (30 * 2) and all the routes that have a metric of less than or equal to 60 and satisfy the feasibility condition will be used to send traffic.
    Besides the main path A-D-E-H we have 4 more paths that have the metric of less than or equal to 60 (we also include the Advertised Distances of these routes for later comparison):
    + A-B-E-H with an AD of 20
    + A-D-E-B-C-H with an AD of 50
    + A-F-G-H with an AD of 40
    + A-F-E-H with an AD of 20
    Now the last thing we need to consider is the feasible condition. The feasible condition states:
    “To qualify as a feasible successor, a router must have an AD less than the FD of the current successor route”
    The FD of the current successor route here is 30 (notice that the variance number is not calculated here). Therefore there are only 2 paths that can satisfy this conditions: the path A-B-E-H & A-F-E-H.
    In conclusion, traffic from the Internet to the data center will be load balanced across 3 paths, including the main path (successor path) -> C is correct.

    Question 14

    Which condition must be satisfied before an EIGRP neighbor can be considered a feasible successor?
    A. The neighbor’s advertised distance must be less than or equal to the feasible distance of the current successor.
    B. The neighbor’s advertised distance must be less than the feasible distance of the current successor.
    C. The neighbor’s advertised distance must be greater than the feasible distance of the current successor.
    D. The neighbor’s advertised distance must be equal to the feasible distance of the current successor.
    E. The neighbor’s advertised distance must be greater than or equal to the feasible distance of the current successor.

    Answer: B

    Explanation

    As explained in question 1, this is called the feasible condition.

    Question 15

    Which statement about a non-zero value for the load metric (k2) for EIGRP is true?
    A. A change in the load on an interface will cause EIGRP to recalculate the routing metrics and send a corresponding update out to each of its neighbors.
    B. EIGRP calculates interface load as a 5-minute exponentially weighted average that is updated every 5 minutes.
    C. EIGRP considers the load of an interface only when sending an update for some other reason.
    D. A change in the load on an interface will cause EIGRP to recalculate and update the administrative distance for all routes learned on that interface.

    Answer: C

    Explanation

    The load metric (k2) represents the worst load on a link between source and destination.
    EIGRP routing updates are triggered only by a change in network topology (like links, interfaces go up/down, router added/removed), and not by change in interface load or reliability -> A & D are not correct.
    The load is a five minute exponentially weighted average that is updated every five seconds (not five minutes) -> B is not correct.
    EIGRP considers the load of an interface only when sending an update for some other reason (like a link failure, topology change). Updates are not sent out each time the load changes -> C is correct.
    Note: To learn how to calculate EIGRP metric, please read my EIGRP tutorial – Part 3.

    Question 16

    Your network consists of a large hub-and-spoke Frame Relay network with a CIR of 56 kb/s for each spoke.
    Which statement about the selection of a dynamic protocol is true?
    A. EIGRP would be appropriate if LMI type ANSI is NOT used.
    B. EIGRP would be appropriate, because the Frame Relay spokes could be segmented into their own areas.
    C. EIGRP would be appropriate, because by default, queries are not propagated across the slow speed Frame Relay links.
    D. EIGRP would be appropriate, because you can manage how much bandwidth is consumed over the Frame Relay interface.

    Answer: D
    Explanation

    By default, EIGRP will limit itself to using no more than 50% of the interface bandwidth. The primary benefit of controlling EIGRP’s bandwidth usage is to avoid losing EIGRP packets, which could occur when EIGRP generates data faster than the interface line can absorb it. This is of particular benefit on Frame Relay networks, where the access interface bandwidth and the PVC capacity may be very different.
    For example, in our Frame Relay topology a Hub is connected with 4 Spoke routers. The main Frame Relay interface on Hub router is 512Kpbs which is not enough to use for 6 links of 128 Kbps ( = 768 Kbps).
    The solution here is we can use 512 / 6 = 85 Kbps on each subinterface of Hub by using “bandwidth 85″ command. For example:
    Hub(config)#interface Serial0/0.1 point-to-point
    Hub(config-subif)#bandwidth 85

    Also on Spoke routers we need to set this value. For example on Spoke1:
    Spoke1(config)#interface Serial0/1.0 point-to-point
    Spoke1(config-subif)#bandwidth 85

    Notice that by default, EIGRP limits itself to use no more than 50% of the configured interface bandwidth. In this case EIGRP will not use more than 42.5 Kbps (50% of 85 Kbps).


    Question 17

    When an EIGRP topology change is detected, what is the correct order of events when there is a FS?
    A.
    The neighbor adjacency is deleted.
    The feasible route is used.
    DUAL is notified.
    Remove all topology entries learned from that neighbor.
    B.
    DUAL is notified.
    Remove all topology entries learned from that neighbor.
    The neighbor adjacency is deleted.
    Routes enter the Active state and the feasible route is used.
    C.
    The neighbor adjacency is deleted.
    Routes enter the Active state and the feasible route is used.
    DUAL is notified.
    Remove all topology entries learned from that neighbor.
    D.
    DUAL is notified.
    The neighbor adjacency is deleted.
    Remove all topology entries learned from that neighbor.
    The feasible route is used.

    Answer: D


    Question 18

    Refer to the exhibit. You want to use all the routes in the EIGRP topology for IP load balancing.

    Which two EIGRP subcommands would you use to accomplish this goal? (Choose two)
    A. traffic-share balanced
    B. distance
    C. maximum-paths
    D. default-network
    E. variance

    Answer: C E

    Explanation

    Notice that the “maximum-paths” command is used to share traffic to equal cost path while the “variance” command can share traffic to unequal cost path.
    In the output above we learn that EIGRP is using 2 successors to send traffic. By using the “variance 2″ command we can share traffic to other feasible successor routes. But by default, EIGRP only shares traffic to 4 paths. So we need to use the “maximum-paths 6″ to make sure all of these routes are used.


    Question 19

    Refer to the exhibit. R1 accesses the Internet using E0/0. You have been asked to configure R1 so that a default route is generated to its downstream devices (191.0.0.1 and 192.0.0.1). Which commands would create this configuration?

    A.
    router eigrp 190
    redistribute static
    !
    ip route 0.0.0.0 0.0.0.0 Null0
    B. ip default-network 20.0.0.0
    C.
    router eigrp 190
    redistribute static
    !
    ip route 0.0.0.0 255.255.255.255 Null0
    D. ip default-network 20.20.20.0

    Answer: A


    Question 20

    Which command will display EIGRP packets sent and received, as well as statistics on hello packets, updates, queries, replies, and acknowledgments?
    A. debug eigrp packets
    B. show ip eigrp traffic
    C. debug ip eigrp
    D. show ip eigrp interfaces


    Answer: B

    Explanation

    Below is the output of the “show ip eigrp traffic” command:



    Question 21

    Which three statements are true about EIGRP operation? (Choose three)
    A. When summarization is configured, the router will also create a route to null 0.
    B. The summary route remains in the route table, even if there are no more specific routes to the network.
    C. Summarization is configured on a per-interface level.
    D. The maximum metric for the specific routes is used as the metric for the summary route.
    E. Automatic summarization across major network boundaries is enabled by default.


    Answer: A C E


    Question 22

    Which two statements about the EIGRP DUAL process are correct? (Choose two)
    A. An EIGRP route will go active if there are no successors or feasible successors in the EIGRP topology table.
    B. An EIGRP route will go passive if there are no successors in the EIGRP topology table.
    C. DUAL will trigger an EIGRP query process while placing the flapping routes in the holddown state.
    D. A feasible successor in the EIGRP topology table can become the successor only after all the query requests have been replied to.
    E. The stuck in active state is caused when the wait for the query replies have timed out.
    F. EIGRP queries are sent during the loading state in the EIGRP neighbor establishment process.

    Answer: A E


    Question 23

    What are three key concepts that apply when configuring the EIGRP stub routing feature in a hub and spoke network? (Choose three)
    A. A hub router prevents routes from being advertised to the remote router.
    B. Only remote routers are configured as stubs.
    C. Stub routers are not queried for routes.
    D. Spoke routers connected to hub routers answer the route queries for the stub router.
    E. A stub router should have only EIGRP hub routers as neighbors.
    F. EIGRP stub routing should be used on hub routers only.


    Answer: B C E


    Question 24

    Which three statements are true about EIGRP route summarization? (Choose three)
    A. Manual route summarization is configured in router configuration mode when the router is configured for EIGRP routing.
    B. Manual route summarization is configured on the interface.
    C. When manual summarization is configured, the summary route will use the metric of the largest specific metric of the summary routes.
    D. The ip summary-address eigrp command generates a default route with an administrative distance of 90.
    E. The ip summary-address eigrp command generates a default route with an administrative distance of 5.
    F. When manual summarization is configured, the router immediately creates a route that points to null0 interface

    Answer: B E F

    Explanation

    The ip summary-address eigrp {AS number} {address mask} command is used to configure a summary aggregate address for a specified interface. For example with the topology below:

    R2 has 5 loopback interfaces but instead of advertising all these interfaces we can only advertise its summarized subnet. In this case the best summarized subnet should be 1.1.1.0/29 which includes all these 5 loopback interfaces.
    R2(config)#interface fa0/0
    R2(config-if)#ip summary-address eigrp 1 1.1.1.0 255.255.255.248

    This configuration causes EIGRP to summarize network 1.1.1.0 and sends out Fa0/0 interface
    After configuring manual EIGRP summary, the routing table of the local router will have a route to Null0:

    So why is this route inserted in the routing table when doing summarization? Well, you may notice that although our summarized subnet is 1.1.1.0/29 but we don’t have all IP addresses in this subnet. Assignable IP addresses of subnet 1.1.1.0/29 are from 1.1.1.1 to 1.1.1.6. Imagine what happens if R1 sends a packet to 1.1.1.6. Because R1 do believe R2 is connected with this IP so it will send this packet to R2. But R2 does not have this IP so if R2 has a default-route to R1 (for example R1 is connected to the Internet and R2 routes all unknown destination IP packets to R1) then a loop will occur.
    To solve this problem, some routing protocols automatically add a route to Null0. A packet is sent to “Null0″ means that packet is dropped. Suppose that R1 sends a packet to 1.1.1.6 through R2, even R2 does not have a specific route for that IP, it does have a general route pointing to Null0 which the packet sent to 1.1.1.6 can be matched -> That packet is dropped at R2 without causing a routing loop!
    By default, EIGRP summary routes are given an administrative distance value of 5. Notice that this value is only shown on the local router doing the summarization. On other routers we can still see an administrative distance of 90 in their routing table.


    Question 25

    After implementing EIGRP on your network, you issue the show ip eigrp traffic command on router C. The following output is shown:
    RouterC#show ip eigrp traffic
    IF-EIGRP Traffic Statistics for process 1
    Hellos sent/received: 481/444
    Updates sent/received: 41/32
    Queries sent/received: 5/1
    Replies sent/received: 1/4
    Acks sent/received: 21/25
    Input queue high water mark 2, 0 drops
    SIA-Queries sent/received: 0/0
    SIA-Replies sent/received: 0/0

    Approximately 25 minutes later, you issue the same command again. The following output is shown:
    RouterC#show ip eigrp traffic
    IP-EIGRP Traffic Statistics for process 1
    Hellos sent/received: 1057/1020
    Updates sent/received: 41/32
    Queries sent/received: 5/1
    Replies sent/received: 1/4
    Acks sent/received: 21/25
    Input queue high water mark 2, 0 drops
    SIA-Queries sent/received: 0/0
    SIA-Replies sent/received: 0/0
    Approximately 25 minutes later, you issue the same command a third time. The following output is shown:
    RouterC#show ip eigrp traffic
    IP-EIGRP Traffic Statistics for process 1
    Hellos sent/received: 1754/1717
    Updates sent/received: 41/32
    Queries sent/received: 5/1
    Replies sent/received: 1/4
    Acks sent/received: 21/25
    Input queue high water mark 2, 0 drops
    SIA-Queries sent/received: 0/0
    SIA-Replies sent/received: 0/0
    What can you conclude about this network?
    A. The network has been stable for at least the last 45 minutes.
    B. There is a flapping link or interface, and router C knows an alternate path to the network.
    C. There is a flapping link or interface, and router A does not know an alternate path to the network.
    D. EIGRP is not working correctly on router C.
    E. There is not enough information to make a determination.

    Answer: A

    Explanation

    In three times using the command, the “Queries sent/received” & “Replies sent/received” are still the same -> the network is stable.

    Question 26

    After implementing EIGRP on your network, you issue the show ip eigrp traffic command on router C. The following output is shown:
    RouterC#show ip eigrp traffic
    IP-EIGRP Traffic Statistics for process 1
    Hellos sent/received: 2112/2076
    Updates sent/received: 47/38
    Queries sent/received: 5/3
    Replies sent/received: 3/4
    Acks sent/received: 29/33
    Input queue high water mark 2, 0 drops
    SIA-Queries sent/received: 0/0
    SIA-Replies sent/received: 0/0
    Moments later, you issue the same command a second time and the following output is shown:
    RouterC#show ip eigrp traffic
    IP-EIGRP Traffic Statistics for process 1
    Hellos sent/received: 2139/2104
    Updates sent/received: 50/39
    Queries sent/received: 5/4
    Replies sent/received: 4/4
    Acks sent/received: 31/37
    Input queue high water mark 2, 0 drops
    SIA-Queries sent/received: 0/0
    SIA-Replies sent/received: 0/0
    Moments later, you issue the same command a third time and the following output is shown:
    RouterC#show ip eigrp traffic
    IP-EIGRP Traffic Statistics for process 1
    Hellos sent/received: 2162/2126
    Updates sent/received: 53/42
    Queries sent/received: 5/5
    Replies sent/received: 5/4
    Acks sent/received: 35/41
    Input queue high water mark 2, 0 drops
    SIA-Queries sent/received: 0/0
    SIA-Replies sent/received: 0/0
    What information can you determine about this network?
    A. The network is stable.
    B. There is a flapping link or interface, and router C knows an alternate path to the network.
    C. There is a flapping link or interface, and router C does not know an alternate path to the network.
    D. EIGRP is not working correctly on router C.
    E. There is not enough information to make a determination.

    Answer: B

    Explanation

    We notice that the “Queries received” number is increased so router C has been asked for a route. The “Replies sent” number is also increased -> router C knows an alternate path to the network.

    Question 27


    R1 and R2 are connected and are running EIGRP on all their interfaces, R1 has four interfaces, with IP address 172.16.1.1/24, 172.16.2.3/24,172.16.5.1/24, and 10.1.1.1/24. R2 has two interfaces, with IP address 172.16.1.2/24 and 192.168.1.1/24. There are other routers in the network that are connected on each of the interfaces of these two routers that are also running EIGRP. Which summary routes does R1 generate automatically (assuming auto-summarization is enable)? (choose two)
    A. 192.168.1.0/24
    B. 10.0.0.0/8
    C. 172.16.1.0/22
    D. 172.16.0.0/16
    E. 10.1.1.0/24

    Answer: B D

    Question 28

    There was an exhibit, 172.16.1.0/24 to 172.16.2.0/24 with the 4 paths with mentions of eigrp metric and asked if the variance is put to 2 in exhibit then what 2 paths are not used by eigrp routing table? (Choose two)
    A. R1—R2—R6
    B. R1—R3—R6
    C. R1—R4—R6
    D. R1—R5—R6

    Answer: C D


    Question 29

    What does the default value of the EIGRP variance command of 1 mean?
    A. Load balancing is disabled on this router.
    B. The router performs equal-cost load balancing.
    C. Only the path that is the feasible successor should be used.
    D. The router only performs equal-cost load balancing on all paths that have a metric greater than 1.

    Answer: B


    Question 30

    Refer to the exhibit. EIGRP has been configured on all routers in the network. The command metric weights 0 0 1 0 0 has been added to the EIGRP process so that only the delay metric is used in the path calculations. Which router will R1 select as the successor and feasible successor for Network A?
    A. R4 becomes the successor for Network A and will be placed in the routing table. R2 becomes the feasible successor for Network A.
    B. R4 becomes the successor for Network A and will be included in the routing table. No feasible successor will be selected as the advertised distance from R2 is higher than the feasible distance.
    C. R2 becomes the successor and will be placed in the routing table. R4 becomes the feasible successor for Network A.
    D. R2 becomes the successor and will be placed in the routing table. No feasible successor will be selected as the reported distance from R4 is lower than the feasible distance.

    Answer: B


    Question 31

    Based on the exhibited output, which three statements are true? (Choose three)

    A. R1 is in AS 200.
    B. R1 will load balance between three paths to reach the 192.168.1.48/28 prefix because all three paths have the same advertised distance (AD) of 40512000.
    C. The best path for R1 to reach the 192.168.1.48/28 prefix is via 192.168.1.66.
    D. 40512000 is the advertised distance (AD) via 192.168.1.66 to reach the 192.168.1.48/28 prefix.
    E. All the routes are in the passive mode because these routes are in the hold-down state.
    F. All the routes are in the passive mode because R1 is in the query process for those routes.

    Answer: A C D

    Explanation

    In the statement “IP-EIGRP Topology Table for process 200″, process 200 here means AS 200 -> A is correct.
    There are 3 paths to reach network 192.168.1.48/28 but there is only 1 path in the routing table (because there is only 1 successor) so the path with least FD will be chosen -> path via 192.168.1.66 with a FD of 40537600 will be chosen -> C is correct.
    The other parameter, 40512000, is the AD of that route -> D is correct.

    Question 32

    Characteristics of the routing protocol EIGRP? (choose two)
    A. Updates are sent as broadcast.
    B. Updates are sent as multicast.
    C. LSAs are sent to adjacent neighbors.
    D. Metric values are represented in a 32-bit format for granularity.

    Answer: B D

    Explanation

    EIGRP updates are sent as multicast to address 224.0.0.10 -> B is correct.
    EIGRP metric values, for example an entry in the “show ip route” command:
    D 10.1.21.128/27 [90/156160] via 10.1.4.5, 00:00:21, FastEthernet1/0/1
    EIGRP metric here is 156160 and it is a 32-bit value.


    Question 33

    Which EIGRP packet statement is true?
    A. On high-speed links, hello packets are broadcast every 5 seconds for neighbor discovery.
    B. On low-speed links, hello packets are broadcast every 15 seconds for neighbor discovery.
    C. Reply packets are multicast to IP address 224.0.0.10 using RTP.
    D. Update packets route reliable change information only to the affected routers.
    E. Reply packets are used to send routing updates.

    Answer: D


    Question 34


    Which three descriptions are correct based on the exhibited output? (Choose three)
    A. R1 is configured with the variance command.
    B. The route to 10.2.0.0/16 was redistributed into EIGRP.
    C. A default route has been redistributed into the EIGRP autonomous system.
    D. R1 is configured with the ip summary-address command.

    Answer: A C D

    Explanation

    From the routing table above, we see that network 172.16.1. can be reached via 2 unequal paths (with FD of 23072000 & 20640000) so surely R1 has been configured with the “variance” command -> A is correct.
    By configuring a default route and redistribute it into EIGRP you will get the line “D *EX 0.0.0.0/0 …” line in the routing table of that router -> C is correct.
    From the line “10.2.0.0/16 is a summary, 00:16:18, Null0″ we know that this network has been summarized with the “ip summaray-address” command (notice that 10.2.0.0 is not the major network of net-> D is correct.


    Question 35

    Refer to the exhibit. Which two statements are true? (Choose two)
    A. The eigrp stub command prevents queries from being sent from R2 to R1.
    B. The eigrp stub command will automatically enable summarization of routes on R2.
    C. The eigrp stub command prevents all routes except a default route from being advertised to R1.
    D. Router R1 will advertise connected and summary routes only.
    E. Router R1 will advertise connected and static routes. The sending of summary routes will not be permitted.
    F. Router R1 is configured as a receive-only neighbor and will not send any connected, static or summary routes.

    Answer: A D

    Explanation

    The command “eigrp stub” turns R1 into a stub router so R2 will never send any query to R1 because R2 knows that a stub router will only route packets for networks it has explicitly advertised -> A is correct.

    The command “eigrp stub” is same as “eigrp stub connected summary” command because connected and summarized routes are advertised by default -> D is correct.
    Note: Because the network 192.168.50.0 is not advertised by “network” statement, it is necessary to redistribute connected route with the “redistribute connected” command.

    Question 36

    Refer to the exhibits. Router B should advertise the network connected to the E0/0/0 interface to router A and block all other network advertisements. The IP routing table on router A indicates that it is not receiving this prefix from router B.
    What is the probable cause of the problem?
    A. An access list on router B is causing the 192.168.3.16/28 network to be denied.
    B. An access list on router B is causing the 192.168.3.32/28 network to be denied.
    C. The distribute list on router B is referencing a numbered access list that does not exist on router B.
    D. The distribute list on router B is referencing the wrong interface.

    Answer: A

    Explanation

    This is an unclear question. The question says “Router B should advertise the network connected to the E0/0/0 interface to router A and block all other network advertisements. The IP routing table on router A indicates that it is not receiving this prefix from router B.” That means the network 192.168.3.16/28 (including the IP 192.168.3.21/28) is not received on router A -> A is the most suitable answer.
    Note: Distribute list are used to filter routing updates and they are based on access lists.

    Question 37


    Study the exhibit carefully. What must be done on router A in order to make EIGRP work effectively in a Frame Relay multipoint environment?
    A. Issue the command bandwidth 56 on the physical interface.
    B. Issue the command bandwidth 56 on each subinterface.
    C. Issue the command bandwidth 224 on each subinterface.
    D. Issue the command bandwidth 224 on the physical interface.


    Answer: D

    Explanation

    In Frame Relay, all neighbors share the same bandwidth, regardless of the actual CIR of each individual PVC. In this case the CIR of each PVC is the same so we can find the bandwidth of the main interface (multipoint connection interface) by 56 x 4 = 224.
    Notice that if the bandwidth on each PVC is not equal then we get the lowest bandwidth to multiply.

    Question 38

    Refer to the exhibit. ROUTE Enterprises has many stub networks in their enterprise network, such as router B and its associated network. EIGRP is to be implemented on router A so that neither the prefix for the S/0/0/0 interface nor the prefixes from router B appear in the routing tables for the router in the enterprise network.
    Which action will accomplish this goal?
    A. Declare router B a stub router using the eigrp stub command.
    B. Use the passive-interface command for interface Serial0/0/0.
    C. Use a mask with the network command to exclude interface Serial0/0/0.
    D. Implement a distribute list to exclude the link prefix from the routing updates.

    Answer: C

    Explanation

    If we declare router B a stub router then the routers in Enterprise Network still learn about the network for S0/0/0 interface and the network behind router B -> A is not correct.
    If we use the passive-interface command on s0/0/0 interface then router A & B can not become neighbor because they don’t exchange hello messages -> A can not send traffic to the network behind B -> B is not correct.
    Theoretically, we can use a distribute list to exclude both the link prefix and the prefix from router B but it is not efficient because:
    + We have many stub networks so we will need a “long” distribute list.
    + We declare networks in stub routers (like router B) while filter them out at router A -> it is a waste.
    I am not totally sure about answer C because if we “use a mask with the network command to exclude interface Serial0/0/0″ then router A and B can not become neighbors and the situation is same as answer B. But from many discussions about this question, maybe C is the best answer.

    Question 39

    Refer to the exhibit. EIGRP is configured with the default configuration on all routers. Autosummarization is enabled on routers R2 and R3, but it is disabled on router R1. Which two EIGRP routes will be seen in the routing table of router R3? (Choose two)
    A. 10.0.0.0/8
    B. 10.10.0.0/16
    C. 10.10.10.0/24
    D. 172.16.0.0/16
    E. 172.16.0.0/24
    F. 172.16.10.0/24

    Answer: C D

    Explanation

    EIGRP performs an auto-summarization each time it crosses a border between two different major networks. In this case all different networks are in different major networks so EIGRP will perform auto-summarization when it exits an interface. But R1 has been configured with “no auto-summary” command so EIGRP will not summarize on S0 interface of R1. So the routing table of R2 will have the network 10.10.10.0/24 (not be summarized).
    When exiting S1 interface of R2, EIGRP summarizes network 172.16.10.0/24 into the major 172.16.0.0/16 network but it does not summarize network 10.10.10.0/24 because it is not directly connected with this network. Therefore in the routing table of R3 there will have:
    + Network 10.10.10.0/24 ( not summarized)
    + Network 172.16.0.0/16 (summarized)
    -> C and D are correct.
    Note: I simulated this question on GNS3, you can see the final outputs of the “show ip route” commands on these routers (I connected these routers via FastEthernet, not Serial interfaces so the outputs are slightly different but the main points are not changed).




    Question 40

    Refer to the exhibit. In a redundant hub-and-spoke deployment using EIGRP, what feature can be used to ensure that routers C through F are not used as transit routers for data traveling from router B to network 10.1.1.0?

    A. Use address summarization at routers C, D. E, and F.
    B. Use the EIGRP Stub feature on routers C, D, E, and F.
    C. Use passive-interface on the spoke links in routers A and B.
    D. Change the administrative distance in routers A and B for routes learned from routers Cr D. E, and F.

    Answer: B

    Explanation

    By configuring “stub” feature on routers C D E and F, routers A and B will not try to transit traffic through these routers. For example, if the network connecting from routers A and B is down, router B will not send to network 10.1.1.0/24 from router B -> routerC/D/E/F -> router A -> network 10.1.1.0/24.

    Question 41

    Refer to the exhibit. How would you confirm on R1 that load balancing is actually occurring on the default-network (0.0.0.0)?


    A. Use ping and the show ip route command to confirm the timers for each default network resets to 0.
    B. Load balancing does not occur over default networks; the second route will only be used for failover.
    C. Use an extended ping along with repeated show ip route commands to confirm the gateway of last resort address toggles back and forth.
    D. Use the traceroute command to an address that is not explicitly in the routing table.

    Answer: D

    Explanation

    The most simple method to test load balancing is to use the “traceroute” command. If load balancing is working correctly, we will see different paths to reach the destination each time we use that command.
    Unknown address will be routed via the default-network 0.0.0.0 so we must use an address that is not explicitly in the routing table.


    Question 42

    Refer to the exhibit. ROUTE.com is planning to implement load balancing for traffic between host on the 172.16.10.0/24 and 172.16.20./24 networks. You have been asked to review the implementation plan for this project. Which statement about the plan is true?
    A. It is complete as written.
    B. It should include a task to configure EIGRP multipath equal to 2 on R1 and R4.
    C. It should include a task to implement OSPF because it handles unequal cost load balancing most efficiently using variance.
    D. It should include a task that establishes a baseline before and after the configuration has been changed.

    Answer: D

    Explanation

    A complete implementation plan should be:
    1. Configure variance on R1 and R4
    2. Use traceroute to validate load balancing has been activated
    3. Document configuration changes
    4. Establish a new traffic throughput baseline
    5. Compare the new and old baselines and verify that load balancing is implemented as desired.

    Question 43

    Refer to the exhibit. ROUTE.com is planning to implement load balancing for traffic between host on the 172.16.10.0/24 and 172.16.20./24 networks. You have been asked to review the implementation plan for this project. Which statement about the plan is true?
    A. It is complete as written.
    B. It should include a task to configure multipath to equal a value of 2 on R1 and R4.
    C. It should use a ping instead of a traceroute to validate that load balancing has been activated.
    D. It should contain a task that documents the changes made to the configurations.

    Answer: D


    Question 44

    Refer to the exhibit. EIGRP had converged in AS 1 when the link between router R1 and R2 went down. The console on router R2 generated the following messages:
*Mar 20 12:12:06: %DUAL-5-NBRCHANGE: IP-EIGRP 1: Neighbor 10.1.4.3 (Serial0) is down: stuck in active
*Mar 20 12:15:23: %DUAL-3-SIA: Route 10.1.1.0/24 stuck-in-active state in IP-EIGRP 1.
Cleaning up
The network administrator issued the show ip eigrp topology active command on R2 to check the status of the EIGRP network. Which statement best describes the reason for the error messages?

A. Incorrect bandwidth configuration on router R3 prevents R2 from establishing neighbor adjacency.
B. Incorrect bandwidth configuration on router R5 prevents R2 from establishing neighbor adjacency.
C. Router R3 did not reply to the query about network 10.1.1.0/24 sent by router R2.
D. Router R5 did not reply to the query about network 10.1.1.0/24 sent by router R2.

Answer: C

Explanation

When the link between R1 and R2 is down, R2 loses its successor for the network 10.1.1.0/24. R2 checks its topology table for a feasible successor but it can’t find one. So R2 goes active on the that route to find a new successor by sending queries out to its neighbors (R3 and R5) requesting a path to the lost route. Both R3 and R5 also go “active” for the that route. But R5 doesn’t have any neighbor to ask besides R2 so it will send an “unreachable message” to indicate it has no alternative path for that route and has no other neighbor to query. R3 also checks its EIRGP topology table for a feasible successor but it has none, too. Unlike R5, R3 has a neighbor (R4) so it continues to query this router.
Now suppose there is a problem on the link between R3 and R4 so R4 never receives the query from R3 and of course, R3 also never receives a reply back from R4. Therefore, R3 can’t reply back to R2. After about 3 minutes, the “Stuck in active” (SIA) timer on R2 expires and R2 marks the route 10.1.1.0/24 as “stuck in active” route.
The output line “via 10.1.3.3 (Infinity/Infinity), r, Seiral0, serno 1232″ indicates R2 has sent a query to 10.1.3.3 and is waiting for a reply (the lowercase r) -> C is correct.



Question 45

Refer to the exhibit. EIGRP has been configured on routers R1 and R2. However, R1 does not show R2 as a neighbor and does not accept routing updates from R2. What could be the cause of the problem?
A. The no auto-summary command has not been issued under the EIGRP process on both routers.
B. Interface E0 on router R1 has not been configured with a secondary IP address of 10.1.2.1/24.
C. EIGRP cannot exchange routing updates with a neighbor’s router interface that is configured with two IP addresses.
D. EIGRP cannot form neighbor relationship and exchange routing updates with a secondary address.

Answer: D

Explanation

EIGRP updates always use the primary IP address of the outgoing interface as the source address. In this case R2 will use the 10.1.2.2/24 address, which is not in the same subnet of R1, to send EIGRP update to R1. Therefore R1 does not accept this update and generates the “not on common subnet” error message.
Answer D is a bit unclear. It should state that “EIGRP cannot form neighbor relationship and exchange routing updates if the two primary addresses on two routers are not in the same subnet”.
Notice that although R1 does not accept R2 as its EIGRP neighbors but R2 accepts R1 as its EIGRP neighbor accepts R1 hello packets..


Question 46

Refer to the exhibit. A Boston company bought the assets of a New York company and is trying to route traffic between the two data networks using EIGRP over EoMPLS. As a network consultant, you were asked to verify the interoperability of the two networks.

From the show ip route command output, what can you tell the customer about the traffic flow between the subnet in New York (172.16.8.0/24) and the subnets in Boston (172.16.16.0/24 and 10.10.16.0/24)?
A. Traffic is flowing between the 172.16.8.0 subnet and subnets 172.16.16.0 and 10.10.16.0 and no configuration changes are needed.
B. Auto-summary must be disabled on N1 and B1 before traffic can flow between the 172.16.8.0 subnet and subnets 172.16.16.0 and 10.10.16.0.
C. Traffic will flow between the 172.16.8.0 subnet and 172.16.16.0 without any further configuration changes. However, auto-summary must be disabled on N1 and B1 before traffic can flow between the 172.16.8.0 subnet and the 10.10.16.0 subnet.
D. Auto-summary must be disabled on N1 and B1 before traffic can flow between the 172.16.8.0 subnet and the 172.16.16.0 subnet. However, traffic will flow between the 172.16.8.0 subnet and 10.10.16.0 without any further configuration changes.

Answer: B


Question 47

Refer to the exhibit. A Boston company bought the assets of a New York company and is trying to route traffic between the two data networks using EIGRP. The show command output shows that traffic will not flow between the networks. As a network consultant, you were asked to modify the configuration and certify the interoperability of the two networks. For traffic to flow from subnet 172.16.8.0/24 to the 172.16.16.0/24 subnet, which configuration change do you recommend?
A. Turn off autosummarization on routers N1 and B1.
B. Add IP summary addresses to the Internet-pointing interfaces of routers N1 and B1.
C. Turn off autosummarization on routers N2 and B2.
D. Add wildcard masks to the network commands on routers N2 and B2.

Answer: A
Tags:


  • #2
    Question 48

    Which two statements are true about EIGRP manual summarization? (Choose two)

    A. Manual summarization is configured on a per interface basis.
    B. Manual summaries can be configured with the classful mask only.
    C. When manual summarization is configured, autosummarization is automatically disabled by default.
    D. The summary address is assigned an administrative distance of 10 by default.
    E. The summary address is entered into the routing table and is shown to be sourced from the Null0 interface.

    Answer: A E

    Explanation

    EIGRP allows you to summarize internal and external routes on virtually any bit boundary using manual summarization. And the manual summarization is configured under interface mode.
    An example of manual summarization is shown below:
    interface Serial0
    ip address 10.1.50.1 255.255.255.0
    ip summary-address eigrp 2000 192.1.0.0 255.255.252.0


    Question 49

    Which is the correct command format to configure EIGRP summary route?

    A. ip auto-summary as-number address mask
    B. ip summary-address as-number address mask
    C. ip auto-summary eigrp as-number address mask
    D. ip summary-route eigrp as-number address mask
    E. ip summary-address eigrp as-number address mask

    Answer: E


    Question 50

    Which is the most effective technique to contain EIGRP queries?
    A. route summarization
    B. configuring route filters
    C. using a hierarchical addressing scheme
    D. establishing separate autonomous systems


    Answer: A


    Question 51

    Identify three characteristics of EIGRP feasible successors? (Choose three)
    A. A feasible successor is selected by comparing the advertised distance of a non-successor route to the feasible distance of the best route.
    B. If the advertised distance of the non-successor route is less than the feasible distance of best route, then that route is identified as a feasible successor.
    C. If the successor becomes unavailable, then the feasible successor can be used immediately without recalculating for a lost route.
    D. The feasible successor can be found in the routing table.
    E. Traffic will be load balanced between feasible successors with the same advertised distance.

    Answer: A B C


    Question 52

    Which two routing protocols require a metric to be configured when redistributing routes from other protocols? (Choose two)
    A. RIP
    B. OSPF
    C. EIGRP
    D. IS-IS
    E. BGP

    Answer: A C

    Explanation

    (RIP) metric is based on hop count, but Interior Gateway Routing Protocol (IGRP) and Enhanced Interior Gateway Routing Protocol (EIGRP) use a composite metric based on bandwidth, delay, reliability, load, and maximum transmission unit (MTU), where bandwidth and delay are the only parameters used by default. When we redistribute other routing protocols into RIP or IGRP/EIGRP, we must specify the seed metric for that route.
    Note: When redistributing into OSPF, all routes are assigned a default metric of 20.

    Question 53

    Based on the need to limit processing and bandwidth utilization due to dynamic routing protocol operation, the following routing requirements have been specified for your network.

    - partial and incremental routing updates
    – only the devices affected by a topology change perform route recomputation
    – route recomputation only occurs for routes that were affected
    Which dynamic routing protocol should be deployed in your network to best meet these requirements?
    A. BGP
    B. OSPF
    C. IS-IS
    D. EIGRP
    E. RIPv2

    Answer: D

    Explanation

    For link-state protocols (like OSPF) when a change in topology is detected, a link-state advertisement (LSA) is sent to all routers in that OSPF area to inform the change. This causes all routers within that OSPF area to recalculate all of their routes using Dijkstra algorithm. For large networks, this is a CPU intensive task and could cause a CPU overload.

    Also incremental routing update is also a unique feature of EIGRP.

    Question 54

    ACME Rocket Sleds is growing, and so is their network. They have determined that they can no longer continue using static routes and must implement a dynamic routing protocol. They want to have data use multiple paths to the destinations, even if the paths are not equal cost. Which routing protocol has the ability to do this?

    A. EIGRP
    B. OSPF
    C. RIPv1
    D. RIPv2
    E. BGP
    F. IS-IS

    Answer: A

    Explanation

    An advantage of EIGRP is the use of unequal cost path to load balance traffic. This cannot be done in OSPF or RIP. BGP should only be used between ISPs. But notice that EIGRP is a Cisco proprietary protocol so it is not as popular as OSPF.


    Question 55

    Which command displays statistics on EIGRP hello, updates, queries, replies, and acknowledgments?
    A. debug eigrp packets
    B. show ip eigrp traffic
    C. show ip eigrp topology
    D. show ip eigrp neighbors


    Answer: B

    Explanation

    The “show ip eigrp traffic” command displays the number of Enhanced Interior Gateway Routing Protocol (EIGRP) packets sent and received:


    Question 56

    Refer to the exhibit. EIGRP is enabled on all routers on the network. What additional configuration is required for the routers connected over the Frame Relay multipoint interfaces to compensate for a low-speed NBMA connection?

    A. Configure the EIGRP hello interval on all Frame Relay interfaces to 5 seconds.
    B. Configure the EIGRP hello interval on all Frame Relay interfaces to 60 seconds.
    C. Configure the EIGRP hold time on all Frame Relay interfaces to 16 seconds.
    D. Configure the EIGRP hold time on all Frame Relay interfaces to 180 seconds.
    E. Configure the bandwidth on all EIGRP Frame Relay interfaces to the committed information rate (CIR).
    F. Configure the bandwidth on all EIGRP Frame Relay interfaces to the lowest CIR multiplied by the number of PVCs for the multipoint connection.

    Answer: F

    Explanation

    If the multipoint network has different speeds allocated to the VCs, take the lowest CIR and simply multiply it by the number of circuits. This is because in Frame-relay all neighbors share the bandwidth equally, regardless of the actual CIR of each individual PVC, so we have to get the lowest speed CIR rate and multiply it by the number of circuits. This result will be applied on the main interface (or multipoint connection interface).


    Question 57

    Refer to the exhibit. If the configuration shown below is added to RTA, which three route entries will EIGRP advertise to neighboring routers?(Choose three.)
    router eigrp 10
    network 10.0.0.0
    eigrp stub

    A. 10.1.3.0/24
    B. 10.1.2.0/24
    C. 10.0.0.0/8
    D. 10.1.1.0/24
    E. 192.168.20.0/24

    Answer: A C D

    Explanation

    The “eigrp stub” command is equivalent to the “eigrp stub connected summary” command which only advertises directly connected and summarized routes to other routers.


    Question 58

    What action does an EIGRP router take when it cannot find a feasible successor for a network?
    A. It examines the routing and neighbor tables for the next best path.
    B. It transitions from passive to active state for that network and queries its neighbors.
    C. It examines the topology table for a next best path.
    D. It transitions from active to passive state for that network and queries its neighbors.

    Answer: B


    Question 59


    Based on the exhibited command output, which two statements are true? (Choose two)

    A. The EIGRP network is stable.
    B. The router at 10.1.1.3 has not replied to the R1 query packet.
    C. The route to 172.19.0.0/16 is undergoing recomputation.
    D. The route to 172.19.0.0/16 is stuck-in-active.
    E. R1 has sent a query packet to 10.1.1.2.

    Answer: C E

    Explanation

    The route to 172.19.0.0/16 is in Active state (letter “A”). The route is in Active state when a router is undergoing a route recomputation -> C is correct.
    Also, the lower letter “r” in “via 10.1.12, r, Serial0/0″ indicates R1 has sent a query to 10.1.1.2 and is waiting for a reply -> E is correct.


    Question 60

    A network administrator would like to configure an EIGRP router as a stub router that advertises directly connected and summary routes only. What command must the administrator issue to accomplish this?
    A. eigrp stub
    B. eigrp stub connected
    C. eigrp stub summary
    D. eigrp stub connected static
    E. eigrp stub receive-only


    Answer: A

    Explanation

    The command “eigrp stub” is equivalent to the command “eigrp stub connected summary” because the connected and summary options are enabled by default.

    Question 61

    Which two among the following are used to indicate external type of route in routing table? (Choose two)

    A. D EX
    B. IA
    C. E2
    D. R E2
    E. i L2


    Answer: A C


    Question 62

    Which show command will display the two values used in the calculation of the EIGRP metric?

    A. show protocol
    B. show ip eigrp interface
    C. show interface
    D. show ip eigrp neighbor

    Answer: C

    Explanation

    First, recall the formula of calculating EIGRP metric:
    metric = [K1 * bandwidth + (K2 * bandwidth)/(256 - load) + K3 * delay] * [K5/(reliability + K4)]
    The four outputs of the above commands are shown below:
    + show protocols: this command does not show any information about 4 values of EIGRP metric.

    + show interfaces: this command has all 4 values of metric. This is the most suitable answer.

    + show ip eigrp interfaces: no information about values of metric.

    + show ip eigrp neighbor: this command does not have any values of metric.

    Note: As you remember, we have to specify 5 values when redistributing into EIGRP. But notice that these are not the five “K” values.

    Question 63

    A network administrator is troubleshooting an EIGRP configuration across a discontiguous network. What must the administrator do to ensure the routers have the correct routing information?

    A. Nothing, EIGRP supports discontiguous networks by default.
    B. The administrator must disable automatic summarization with the command no auto-summary.
    C. The administrator must enable manual summarization with the command ip summary-address.
    D. The administrator must enable classless routing with the command ip classless.
    E. The administrator must specify a default network with the command ip default-network.

    Answer: B


    Question 64


    What is the purpose of the eigrp stub configuration command?
    A. to increase scalability by limiting the EIGRP query range
    B. to reduce the size of the routing table by blocking the D EX (External EIGRP) routes into the EIGRP stub router
    C. to reduce the convergence time by enabling the EIGRP stub router to propagate the EIGRP queries from the EIGRP hub router
    D. to reduce the convergence time by enabling the EIGRP stub router to also perform query requests to the EIGRP hub router

    Answer: A

    Explanation
    Stub router provides network architects with greater flexibility for designing EIGRP networks by enabling improved control over traffic flows and limitations of query flooding.

    Question 65

    Which EIGRP packet statement is true?
    A. On high-speed links, hello packets are broadcast every 5 seconds for neighbor discovery.
    B. On low-speed links, hello packets are broadcast every 15 seconds for neighbor discovery.
    C. Reply packets are multicast to IP address 224.0.0.10 using RTP.
    D. Update packets route reliable change information only to the affected routers.
    E. Reply packets are used to send routing updates.

    Answer: D

    Explanation

    The default hello timer for a high-speed broadcast network link is 5 seconds and the hold-down timer is 15 seconds whereas the default timers for slow-speed NBMA link are 60 seconds hello and 180 seconds dead. A slow-speed NBMA link is classified as any NBMA link with speeds equal to or less than 1544Kbps (A single T1) -> A and B are not correct.
    EIGRP sends update packets using multicast address 224.0.0.10 but it acknowledges updates using unicast hello packets with no data (also uses RTP) -> C is not correct.
    Unlike OSPF which requires calculation of all routes when the topology changes, EIGRP only sends routing updates to affected routers -> D is correct.
    Reply packets (for hello packets) are just used to acknowledge the hello packets with no data -> E is not correct.

    Question 66

    Refer to the exhibit. What happens when the router stops receiving advertisements for the 10.1.2.0/24 network?
    Router# show ip route
    C 10.1.3.0/24 is directly connected, Serial2
    D 10.1.2.0/24 [90/10537472] via 10.1.1.2, 00:23:24, Serial1
    D 10.0.0.0/8 is a summary, 00:23:20, Null0
    C 10.1.1.0/24 is directly connected, Serial1
    S 192.168.20.0/24 is directly connected, Ethernet0
    A. The summary route will be removed from the table.
    B. The summary route will remain in the table.
    C. The more specific routes will be advertised from the table.
    D. 10.1.2.0/24 will still be advertised but packets destined for it will be dropped when they reach this router.

    Answer: B

    Explanation

    There are two cases for the line “D 10.0.0.0/8 is a summary, 00:23:20, Null0″ to appear in the routing table:
    + By the “auto-summary” command under EIGRP mode.
    + By the “ip summary-address eigrp AS-number 10.0.0.0 255.0.0.0″ under interface mode.
    When we create a summary route, one summary route will be created automatically pointing towards Null0 interface. This is a loop prevention mechanism.
    Even when the router stops receiving advertisements for the 10.1.2.0/24 network, other networks that belong to 10.0.0.0/8 still exist so the summary route will still remain in the routing table. The summary route only disappears only when all of its related networks are turned off.


    Question 67

    Refer to the exhibit. EIGRP is configured on all routers in the network. On the basis of the output provided, which statement is true?

    A. Because the key chain names do not match, router R1 will not be able to ping routers R2 and R3.
    B. Because the key strings do not match, router R1 will not be able to ping routers R2 and R3.
    C. Because authentication is misconfigured on interfaces Gi0/0 and Gi0/1 on router R2, router R1 will not be able to ping routers R2 and R3.
    D. Because autosummarization needs to be turned on for EIGRP on all routers, router R1 will not be able to ping routers R2 and R3.
    E. Router R1 will be able to ping routers R2 and R3.

    Answer: E


    Question 68

    Which of the below mentioned conditions form a neighbor relation in EIGRP?(Choose three)
    A. Hello or ACK received
    B. AS number match
    C. Hello timer match
    D. Identical metric (k values)
    E. Dead Timer Match
    F. Network Time Match

    Answer: A B D

    Explanation

    To become a neighbor, the following conditions must be met:
    + The router must hear a Hello packet from a neighbor.
    + The EIGRP autonomous system (AS) must be the same.
    + K-values must be the same.

    Question 69

    Which command should you issue first to configure EIGRP for IP?
    A. ip eigrp routing
    B. router eigrp process-id
    C. ip eigrp autonomous-system-number
    D. router eigrp autonomous-system-number

    Answer: D


    Question 70

    Based on the topology shown in the network diagram, what optional EIGRP configurations will be required in order to achieve full connectivity within AS 100?

    A. Use the EIGRP no auto-summary command on R1 and R2.
    B. Use the EIGRP no auto-summary command on R3 and R4.
    C. Use the passive interface on the R1 and R2 interface that connects to the 10.1.1.0/24 and 10.1.2.0/24 subnet respectively.
    D. Use the passive interface command between the R3 and R1 connection and between the R3 and R2 connection.
    E. Use the variance command on R3.

    Answer: A

    Explanation

    When routing updates are sent to another major network (in this case 192.168.1.0/24 & 192.168.2.0/24), EIGRP will summarize the advertised networks automatically by default -> we have to use the EIGRP no auto-summary command on R1 and R2.

    Question 71

    A network administrator is managing a hub-and-spoke network with EIGRP routing that has been enabled. The hub router is trying to query a remote router. However, delays are occurring that are caused by certain paths being stuck in active (SIA). How should the administrator configure EIGRP in order to limit the scope of the query range and prevent SIA from occurring?

    A. Configure the hub router with a scope limit of 1.
    B. Configure the remote router with a scope limit of 1.
    C. Configure the hub to indicate that the remote router is a stub router,
    D. Configure the hub and remote router as stub routers.
    E. Configure the remote router as a stub router.
    F. Disable the SIA feature of EIGRP on the remote router.


    Answer: E


    Question 72

    What are two possible causes for EIGRP Stuck-ln-Active routers? (Choose two)
    A. Some query or reply packets are lost between the routers.
    B. The neighboring router starts receiving route updates from this router.
    C. A failure causes traffic on a link between two neighboring routers to flow in only one direction (unidirectional link).
    D. The neighboring router stops receiving ACK packets from this router.

    Answer: A C


    Question 73

    When configuring EIGRP to run across a 56 Kbps serial PPP link, what command do you need to put under the serial interface ensure proper convergence of EIGRP routes?
    A. bandwidth 56
    B. bandwidth 56000
    C. ip bandwidth-percent eigrp 1 56
    D. ip bandwidth-percent eigrp 1 56000

    Answer: A


    Question 74

    The following command was issued on RouterA. Given the above output, which statement is true?
    RouterA# show ip route

    C 10.1.1.0 is directly connected, FastEthernet0/0
    D 172.16.0.0/16 [90/156160] via 10.1.1.1, 00:07:46, FastEthernet0/0
    D EX 192.168.1.10/24 [170/1308160] via 10.1.1.1, 00:00:11, FastEthernet0/0
    A. 192.168.1.0 is a static route.
    B. 192.168.1.0 is a summarized route.
    C. 192.168.1.0 is a redistributed route into EIGRP.
    D. 192.168.1.0 is equal path load balancing with 172.16.1.0.

    Answer: C


    Question 75


    If the primary path goes down, what will EIGRP use to reach a destination?
    A. administrative distance
    B. advertised successor
    C. successor
    D. feasible successor

    Answer: D


    Question 76

    A stub area is typically created using what kind of topology?
    A. Broadcast
    B. Point-to-point
    C. Hub and spoke
    D. Full Mesh


    Answer: C


    Question 77

    In EIGRP, when the IP default-network command is configured on a router, what is generated in the router’s configuration?
    A. A static route
    B. A directly connected route
    C. An EIGRP route
    D. A default route


    Answer: D


    Question 78

    Which of the following are methods EIGRP uses to initially populate (seed) its EIGRP topology table, before learning topology data from neighbors? (Choose two)
    A. By adding all subnets listed by the show ip route connected command
    B. By adding the subnets of working interfaces over which static neighbors have been defined
    C. By adding subnets redistributed on the local router from another routing source
    D. By adding all subnets listed by the show ip route static command

    Answer: B C


    Question 79

    Which three statements are true regarding EIGRP? (Choose three)
    A. By default, EIGRP performs auto-summarization across classful network boundaries.
    B. EIGRP uses an area hierarchy to increase network scalability.
    C. To speed convergence, EIGRP attempts to maintain a successor and feasible successor path for each destination.
    D. EIGRP uses hellos to establish neighbor relationships.
    E. By default, EIGRP uses the Dijkstra algorithm to determine the best path to a destination network based on bandwidth and delay.

    Answer: A C D


    Question 80

    Which of the following settings could prevent two potential EIGRP neighbors from becoming neighbors? (Choose two)
    A. The interface used by one router to connect to the other router is passive in the EIGRP process
    B. Duplicate EIGRP router IDs
    C. Mismatched Hold Timers
    D. IP addresses of 10.1.1.1/24 and 10.2.2.2/24, respectively

    Answer: A D

    Question 81

    Refer to the following.
    Router# sh ip route eigrp
    13.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
    D 13.0.0.0/8 is a summary, 00:00:32, Null0
    What happens to packets that are forwarded from the 13.0.0.0/8 network to the Null0 interface?
    A. Flagged
    B. Accepted
    C. Summarized
    D. Dropped

    Answer: D


    Question 82

    An engineer has added the following configuration snippet to an implementation planning document. The configuration will be added to Router R1, whose Fa0/0 interface connects to a LAN to which Routers R2 and R3 also connect. R2 and R3 are already EIGRP neighbors with each other. Assuming the snippet shows all commands on R1 related to EIGRP authentication, which answer lists an appropriate comment to be made during the implementation plan peer review?
    key chain fred
    key 3
    key-string whehew
    interface fa0/0
    ip authentication key-chain eigrp 9 fred
    A. The configuration is missing one authentication-related configuration command.
    B. The configuration is missing two authentication-related configuration commands.
    C. Authentication type 9 is not supported; type 5 should be used instead.
    D. The key numbers must begin with key 1, so change the key 3 command to key 1.

    Answer: A


    Question 83

    Which two types of routes will be advertised with the EIGRP configuration as shown? (Choose two)

    router eigrp 100
    network 10.0.0.0
    eigrp stub
    A. static
    B. receive-only
    C. summary
    D. stub
    E. connected
    F. dynamic

    Answer: C E


    Question 84

    What administrative distance is given to EIGRP summary routes?
    A. 0
    B. 1
    C. 5
    D. 90
    E. 95
    F. 170

    Answer: C


    Question 85

    Which configuration command is used to enable EIGRP unequal-cost path load balancing?
    A. maximum-paths
    B. distance
    C. metric
    D. variance
    E. default-metric

    Answer: D


    Question 86

    Which two statements are EIGRP characteristics? (Choose two)
    A. Updates are sent as multicast.
    B. Updates are sent as broadcast.
    C. Metric values are represented in a 32-bit format for granularity.
    D. LSAs are sent to adjacent neighbors.

    Answer: A C


    Question 87

    Which three features are related to EIGRP? (Choose three)
    A. Fast Convergence
    B. External Administrative distance is 100
    C. Partial routing updates.
    D. used by other vendors than Cisco.
    E. Link-state protocol.
    F. Support VLSM and discontiguous subnets

    Answer: A C F


    Question 88

    Refer to the exhibit. Network administrators have set up a hub and spoke topology with redundant connections using EIGRP. However, they are concerned that a network outage between Router R1 and Router R2 will cause traffic from the 10.1.1.x network to the 10.1.2.x network to traverse the remote office links and overwhelm them. What command should be used to configure the spoke routers as EIGRP stub routers that will not advertise connected networks, static routes, or summary addresses?

    A. eigrp stub
    B. eigrp stub receive-only
    C. eigrp stub connected static
    D. no eigrp stub connected static
    E. No additional command is needed beyond a default EIGRP configuration.

    Answer: B


    Question 88

    A network administrator is troubleshooting an EIGRP connection between RouterA, IP address 10.1.2.1, and RouterB, IP address 10.1.2.2. Given the debug output on RouterA, which two statements are true?
    RouterA#debug eigrp packets

    01:39:13: EIGRP: Received HELLO on Serial0/0 nbr 10.1.2.2
    01:39:13: AS 100, Flags 0×0, Seq idbQ 0/0 iidbQ un/rely 0/0 peerQ un/rely 0/0
    01:39:13: K-value mismatch
    A. RouterA received a hello packet with mismatched autonomous system numbers.
    B. RouterA received a hello packet with mismatched hello timers.
    C. RouterA received a hello packet with mismatched authentication parameters.
    D. RouterA received a hello packet with mismatched metric-calculation mechanisms.
    E. RouterA will form an adjacency with RouterB.
    F. RouterA will not form an adjacency with RouterB.

    Answer: D F


    Question 89

    Observe the exhibit. If the command variance 3 were added to RTE, which path or paths would be chosen to route traffic to network X?

    A. E-B-A
    B. E-B-A and E-C-A
    C. E-C-A and E-D-A
    D. E-B-A, E-C-A and E-D-A

    Answer: B

    Explanation

    Please notice that routes must first satisfy the feasible condition to be considered for “variance” command:
    The feasible condition states:
    “To qualify as a feasible successor, a router must have an AD less than the FD of the current successor route”.
    In this case, the current successor route is E -> C -> A and the FD of this successor route is 20. But the AD of route E-D-A is 25 which is bigger than the FD of the successor route -> It will not be put into the routing table even if the “variance 3″ command is used.

    Question 90

    Router E is configured with the EIGRP variance 2 command. What path will Router E take to reach Router A?


    A. only E-D-A
    B. only E-B-A
    C. only E-C-A
    D. both E-B-A and E-C-A
    E. both E-B-A and E-D-A
    F. all available paths.

    Answer: D


    Question 91

    Refer to the exhibit. Which router configuration command can be given that will restrict router RTB from sharing its routing information with router RTA?

    A. The eigrp stub command on router RTA.
    B. The eigrp stub command on router RTB.
    C. The eigrp stub connected command on router RTA
    D. The eigrp stub connected command on router RTB
    E. The eigrp stub receive-only command on router RTA
    F. The eigrp stub receive-only command on router RTB

    Answer: F

    Explanation

    The receive-only keyword will restrict the router from sharing any of its routes with any other router in that EIGRP autonomous system, and the receive-only keyword will not permit any other option to be specified because it prevents any type of route from being sent. The three other optional keywords (connected, static, and summary) can be used in any combination but cannot be used with the receive-only keyword.


    Question 92

    Refer to the exhibit. On all routers in the network, EIGRP has been configured for load balancing across the three links. However, traffic destined for Network B from R1 is only load balanced over paths R1-R2-R5 and R1-R3-R5. What is the cause of the problem?

    A. EIGRP will not select more than two links for unequal cost path load balancing.
    B. Because the path has a different link type, EIGRP will not select path R1-R4-R5 for load balancing.
    C. Because Router R4 is not a feasible successor, EIGRP will not select path R1-R4-R5 for load balancing.
    D. EIGRP will not select path R1-R4-R5 for load balancing unless the value of the variance parameter is increased.

    Answer: C

    Explanation

    The feasible condition states:
    “To qualify as a feasible successor, a route must have an AD less than the FD of the current successor route”. In this case the AD of R4 is 25 (to network B, which is larger than the FD of the current successor R2 (its FD is 10 + 10 = 20) -> R4 is not a feasible successor.

    Question 93

    Refer to the exhibit. Which statement about dynamic routing protocols for this network is true?


    A. No dynamic interior routing protocol can summarize as shown.
    B. Unless configured otherwise, EIGRP would automatically summarize the prefixes as shown in the exhibit.
    C. With this IP addressing scheme, EIGRP can be manually configured to summarize prefixes at the specified summarization points.
    D. The IP address design lends itself to OSPF. Each summarizing router would be an ABR, summarizing to the next area in the address hierarchy.

    Answer: C


    Question 94

    Refer to the topology diagram R2 is redistributing the EIGRP routers into OSPF. What will the EIGRP routes appear in the routing table of R1?

    A. O
    B. O IA
    C. O E2
    D. D
    E. D EX

    Answer: C

    Explanation

    By default, routes redistributed into OSPF will be considered External route – Type 2 (E2) with the default metric of 20. For E2 route, the cost is only from the ASBR to the final destination.

    Question 95

    Refer to the Exhibit. Routers in the Diagram are configured with EIGRP. If RB and RC fail, which action will RA take with respect to the HQ network?

    A. RA will automatically route packets via RD to the HQ network.
    B. RA will place the route via RD into the hold down state.
    C. RA will go into the active state for all routes.
    D. RA will go into the active state for the route to HQ network.

    Answer: D

    Explanation

    The cost advertised from RD is too big (100) so it cannot be a feasible successor -> RA will go to the active state if both RB and RC fail.

    Comment

    • Working...
      X