CiscoProfessional level300-440

300-440 exam dumps: 293 free Cisco ENCC (Cloud Connectivity) practice questions

Free 300-440 practice questions for the Designing and Implementing Cloud Connectivity exam, with the correct answer and a full explanation for every option. Read the first 10 below, browse all 293 by number, or take a timed practice exam.

Question bank last updated February 2025

Free 300-440 practice questions

Questions 1 to 10 of 293

Pick an answer before you open the explanation. Each question also has its own page with a permalink.

300-440 Question 1

Single answer

An enterprise network engineer is configuring OSPF in a multi-area environment. The network consists of several areas, including Area 0 (backbone) and Area 1. The engineer needs to ensure that routes from Area 1 are summarized when advertised into Area 0 to reduce the size of the routing table. Which OSPF configuration step achieves this goal?

  1. A

    Configure a summary address on the Area 1 ABR using the 'area range' command.

  2. B

    Use the 'summary-address' command on Area 0 routers.

  3. C

    Enable OSPF route summarization on all routers in Area 1 using the 'auto-summary' command.

  4. D

    Configure the 'default-information originate' command on the Area 0 ABR.

Show answer and explanation

Correct answer: A

Explanation

To summarize routes between OSPF areas, the 'area range' command must be configured on the Area Border Router (ABR) for the area where the summarization is needed. In this scenario, the engineer needs to summarize routes from Area 1 when they are advertised into Area 0. The other options refer to commands that are not applicable or are used for different purposes, such as external route summarization or default route advertisement.

  • A. Correct.

    Correct. The 'area range' command is used on an ABR to summarize routes from one area before advertising them to another area. This reduces the number of specific routes advertised and minimizes the routing table size in other areas.

  • B. Incorrect.

    Incorrect. The 'summary-address' command is used for redistributing external routes into OSPF, not for summarizing inter-area routes.

  • C. Incorrect.

    Incorrect. OSPF does not use the 'auto-summary' command, as it is specific to distance-vector protocols like RIP or EIGRP. OSPF requires manual configuration for summarization.

  • D. Incorrect.

    Incorrect. The 'default-information originate' command is used to advertise a default route into the OSPF domain, not for summarizing routes between areas.

300-440 Question 2

Select 2

A network engineer is configuring OSPF between two routers, R1 and R2, in the same area (Area 0). After completing the configuration, the OSPF neighbor relationship does not form. Upon reviewing the configuration and network setup, the engineer notices the following:

  1. The IP addresses of the interfaces on both routers are correctly assigned and can ping each other.
  2. Both routers are using the same OSPF area.
  3. The MTU sizes of the interfaces are mismatched between R1 and R2.
  4. Authentication is enabled on R1 but not on R2.

Which two issues must the engineer resolve to establish the OSPF neighbor relationship?

  1. A

    Ensure the MTU sizes match on both router interfaces.

  2. B

    Disable authentication on both routers.

  3. C

    Configure OSPF authentication on R2 to match R1.

  4. D

    Reassign the OSPF area to a different area on R1.

  5. E

    Enable OSPF on additional interfaces on R2.

Show answer and explanation

Correct answers: A, C

Explanation

To establish an OSPF neighbor relationship, several parameters must match, including MTU sizes and authentication settings. In this scenario, the mismatched MTU sizes and inconsistent authentication configurations are the primary issues preventing the OSPF adjacency. Resolving these two issues will allow the routers to form the OSPF neighbor relationship properly.

  • A. Correct.

    OSPF requires the MTU sizes to match on both interfaces to form a neighbor relationship. Mismatched MTU sizes will prevent the adjacency from being established.

  • B. Incorrect.

    Disabling authentication on both routers is not necessary. Instead, authentication should be properly configured on both routers if it is enabled.

  • C. Correct.

    OSPF authentication must be configured consistently on both routers. In this case, R2 needs to be configured to match the authentication settings of R1.

  • D. Incorrect.

    Changing the OSPF area on one router would prevent the neighbor relationship because both routers need to be in the same area for OSPF adjacency.

  • E. Incorrect.

    Enabling OSPF on additional interfaces is not related to the problem described. The issue lies with the interfaces already configured for OSPF, not unconfigured ones.

300-440 Question 3

Single answer

You are configuring OSPF on a network with multiple routers. Router R1 has two interfaces: GigabitEthernet0/0 (10.1.1.1/24) and GigabitEthernet0/1 (192.168.1.1/24). GigabitEthernet0/0 connects to Router R2, while GigabitEthernet0/1 connects to a LAN network. You want to minimize OSPF database size and avoid advertising the LAN network to other routers in the OSPF area. Which configuration should you apply to achieve this?

  1. A

    Mark GigabitEthernet0/1 as a passive interface in OSPF.

  2. B

    Use the 'default-information originate' command on R1.

  3. C

    Configure OSPF area 0 as a stub area.

  4. D

    Use a distribute-list to filter LAN routes in OSPF.

Show answer and explanation

Correct answer: A

Explanation

Marking an interface as passive in OSPF ensures that the interface does not participate in OSPF adjacency formation or route advertisement. This is the recommended approach when you want to prevent a connected network, such as the LAN in this scenario, from being advertised into the OSPF domain while still allowing the interface to remain operational for local traffic.

  • A. Correct.

    Marking GigabitEthernet0/1 as a passive interface prevents OSPF from forming adjacencies or advertising routes on that interface, achieving the goal of minimizing the OSPF database and preventing LAN advertisement.

  • B. Incorrect.

    The 'default-information originate' command is used to advertise a default route into OSPF, which does not solve the requirement to avoid advertising the LAN network.

  • C. Incorrect.

    Configuring OSPF area 0 as a stub area reduces the size of LSAs in the area but does not specifically prevent the LAN network from being advertised.

  • D. Incorrect.

    A distribute-list can filter routes, but it is used for controlling routing table updates, not OSPF LSA advertisements.

300-440 Question 4

Single answer

An enterprise network is running OSPF as its routing protocol. The network administrator notices that a specific router in Area 0 is advertising incorrect route information, which is impacting connectivity. To address this, the administrator wants to filter the incorrect routes at the OSPF ASBR level. Which method should the administrator use?

  1. A

    Configure a distribute-list on the ASBR to filter routes in OSPF.

  2. B

    Use a route-map applied to the OSPF process to filter routes.

  3. C

    Apply an access-list directly to the OSPF process on the ASBR.

  4. D

    Use a prefix-list applied as an inbound policy on the ASBR.

Show answer and explanation

Correct answer: B

Explanation

To filter routes in OSPF at the ASBR level, a route-map should be used. Route-maps are versatile and allow the administrator to apply granular policies for route filtering, making them the preferred method in this scenario. Distribute-lists and access-lists are not applicable for OSPF route filtering, and prefix-lists alone are insufficient without being part of a route-map.

  • A. Incorrect.

    A distribute-list cannot directly filter routes in OSPF because distribute-lists are used for filtering routes in protocols like EIGRP and RIP, not OSPF.

  • B. Correct.

    Using a route-map applied to the OSPF process is the correct method to filter routes at the ASBR level. Route-maps provide the flexibility to match and filter routes based on specific criteria.

  • C. Incorrect.

    Access-lists cannot be applied directly to the OSPF process for route filtering. They can be used in conjunction with route-maps but not as a standalone method.

  • D. Incorrect.

    Prefix-lists cannot be applied directly as inbound policies on the ASBR in OSPF. They are typically used to permit or deny specific prefixes but must be combined with other mechanisms like route-maps.

300-440 Question 5

Single answer

A network administrator is tasked with implementing a new routing protocol in a multi-vendor environment. The network contains routers from different vendors, and the administrator needs to ensure that the routing protocol supports scalability, fast convergence, and is standards-based to maintain interoperability. Which routing protocol should the administrator choose?

  1. A

    OSPF

  2. B

    EIGRP

  3. C

    RIP

  4. D

    IS-IS

Show answer and explanation

Correct answer: A

Explanation

In a multi-vendor environment, choosing a routing protocol that is standards-based and widely supported across different vendors is critical. OSPF satisfies these requirements as it is a widely adopted link-state protocol known for its scalability, fast convergence, and interoperability. Other protocols, like EIGRP, lack interoperability due to being proprietary, while RIP and IS-IS either lack scalability or are less commonly used in such scenarios.

  • A. Correct.

    OSPF (Open Shortest Path First) is a standards-based, link-state routing protocol widely supported in multi-vendor environments. It offers fast convergence, scalability, and interoperability, making it the best choice for this scenario.

  • B. Incorrect.

    EIGRP (Enhanced Interior Gateway Routing Protocol) is a Cisco proprietary protocol. While it is efficient and scalable, it is not suitable for a multi-vendor environment due to the lack of interoperability with non-Cisco devices.

  • C. Incorrect.

    RIP (Routing Information Protocol) is a distance-vector protocol that is standards-based and interoperable. However, it lacks scalability and fast convergence, making it unsuitable for modern networks requiring high performance.

  • D. Incorrect.

    IS-IS (Intermediate System to Intermediate System) is a standards-based protocol that supports scalability and fast convergence. However, it is less commonly used in multi-vendor environments compared to OSPF, and its adoption is often limited to specific use cases.

300-440 Question 6

Single answer

A network engineer notices that a router is preferring routes from OSPF over EIGRP, even though EIGRP should have a lower administrative distance and be preferred. Upon investigation, the engineer sees that both routing protocols are configured on the router. What could be the cause of this issue?

  1. A

    The administrative distance for EIGRP has been manually increased, making OSPF routes preferred.

  2. B

    The OSPF process is misconfigured, resulting in higher priority routes.

  3. C

    The EIGRP process is running in passive mode, causing it to advertise routes with lower priority.

  4. D

    The router's default administrative distance values for OSPF and EIGRP have been swapped.

Show answer and explanation

Correct answer: A

Explanation

This scenario highlights a troubleshooting process where the administrative distance of routing protocols affects route selection. By default, EIGRP has a lower administrative distance (90) than OSPF (110), so EIGRP should be preferred. However, if the administrative distance for EIGRP is manually increased above 110, OSPF routes will be selected instead. Understanding and verifying the administrative distances of routing protocols is crucial in resolving such issues.

  • A. Correct.

    Correct. If the administrative distance for EIGRP is manually increased (e.g., above 110), OSPF routes (with a default administrative distance of 110) will be preferred. This is a common misconfiguration that can cause routing preference issues.

  • B. Incorrect.

    Incorrect. OSPF misconfigurations typically do not directly affect the administrative distance or routing preference unless administrative distance adjustments are explicitly made.

  • C. Incorrect.

    Incorrect. Passive mode in EIGRP affects adjacency and route advertisement, but it does not directly change the administrative distance of the protocol.

  • D. Incorrect.

    Incorrect. The default administrative distances for OSPF (110) and EIGRP (90) cannot be swapped unless explicitly modified, which would be a manual configuration and not a default behavior.

300-440 Question 7

Single answer

A network engineer is troubleshooting a route selection issue in a multi-protocol environment. OSPF, EIGRP, and a static route to the same destination network (10.1.1.0/24) are configured on the router. The static route has an administrative distance of 1, OSPF has an administrative distance of 110, and EIGRP has an administrative distance of 90. Despite the EIGRP route being preferred based on administrative distance, traffic is still using the static route. What could be the reason for this behavior?

  1. A

    The static route has the lowest administrative distance and will always be preferred.

  2. B

    The static route is configured with a longer prefix length than the EIGRP and OSPF routes.

  3. C

    The static route is incorrectly configured with a higher metric than the EIGRP route.

  4. D

    The static route is redistributed into EIGRP, causing a conflict in route selection.

Show answer and explanation

Correct answer: A

Explanation

Administrative distance determines the trustworthiness of a route source. Lower administrative distances are preferred over higher ones. In this case, the static route has the lowest administrative distance (1) compared to EIGRP (90) and OSPF (110), so it is selected for forwarding traffic to the destination network, regardless of the metrics or routing protocols involved.

  • A. Correct.

    Correct. The static route has the lowest administrative distance (1), which means it will always be preferred over any dynamic routing protocol (like EIGRP or OSPF) for the same destination network.

  • B. Incorrect.

    Incorrect. Prefix length does not impact route selection in this scenario since all routes point to the same destination network (10.1.1.0/24). Administrative distance is the deciding factor here.

  • C. Incorrect.

    Incorrect. A static route does not use metrics for decision-making. Administrative distance is the primary factor for route selection in this case.

  • D. Incorrect.

    Incorrect. While redistribution can cause conflicts, it is not relevant here because the static route is not being redistributed into EIGRP.

300-440 Question 8

Single answer

A network engineer is troubleshooting a routing issue in a multi-protocol environment. The network consists of OSPF, EIGRP, and RIP. A router is receiving the same prefix (192.168.10.0/24) from all three routing protocols, but the router installs the RIP route into the routing table. What could be the most likely cause of this issue?

  1. A

    The administrative distance of RIP has been manually lowered to 80.

  2. B

    The administrative distance of OSPF has been manually increased to 150.

  3. C

    The EIGRP process is not running on the router.

  4. D

    The router's OSPF and EIGRP routes are being filtered by a route-map.

Show answer and explanation

Correct answer: A

Explanation

Administrative distance determines the trustworthiness of a routing source. By default, RIP (120) has a higher administrative distance than both EIGRP (90) and OSPF (110). If the administrative distance of RIP is manually lowered to 80, it will be preferred over both protocols, and the RIP route will be installed in the routing table. Understanding how administrative distance impacts routing decisions is critical for troubleshooting in multi-protocol environments.

  • A. Correct.

    If the administrative distance of RIP is manually lowered to 80, it becomes more preferred than the default administrative distances of OSPF (110) and EIGRP (90). This would explain why the RIP route is installed in the routing table.

  • B. Incorrect.

    If the administrative distance of OSPF is manually increased to 150, it would still not explain why RIP is being selected over EIGRP, since EIGRP has a lower administrative distance (90).

  • C. Incorrect.

    If the EIGRP process is not running, the router would not receive an EIGRP route for the prefix. However, this does not explain why RIP is selected over OSPF.

  • D. Incorrect.

    If OSPF and EIGRP routes are being filtered by a route-map, the RIP route could be selected as the only available route, but there is no indication of route filtering in this scenario.

300-440 Question 9

Single answer

A network engineer observes that a router is selecting OSPF routes over EIGRP routes in the routing table, even though the EIGRP routes have a lower metric. Upon further investigation, the engineer determines that the administrative distance (AD) of EIGRP has been manually changed. What would be the most likely reason for OSPF routes being preferred over EIGRP routes in this scenario?

  1. A

    The administrative distance of EIGRP was increased to a value higher than OSPF's default administrative distance.

  2. B

    The OSPF routes are being redistributed into EIGRP, causing a conflict in route selection.

  3. C

    The metric of the OSPF routes was manually adjusted to be lower than the EIGRP metric.

  4. D

    The EIGRP process is in passive mode, preventing it from advertising its routes.

Show answer and explanation

Correct answer: A

Explanation

Administrative distance (AD) is a measure of the trustworthiness of a routing protocol's routes. Lower AD values are preferred over higher ones. By default, EIGRP has a lower AD (90) than OSPF (110), so EIGRP routes are typically preferred. However, if the AD of EIGRP is manually set to a value higher than 110, OSPF routes will be selected instead, even if the EIGRP routes have a better metric. This explains why OSPF is preferred in this scenario.

  • A. Correct.

    Correct. If the administrative distance of EIGRP is configured to a value higher than OSPF's default AD (110), the router will prefer OSPF routes over EIGRP, regardless of the metric.

  • B. Incorrect.

    Incorrect. Redistributing OSPF routes into EIGRP does not inherently impact the administrative distance of the routes. The issue described relates specifically to administrative distance, not route redistribution.

  • C. Incorrect.

    Incorrect. The metric determines the path selection within a protocol, but AD determines the preference between different routing protocols. This scenario is about administrative distance, not metric adjustments.

  • D. Incorrect.

    Incorrect. A passive EIGRP process would prevent it from forming neighbor adjacencies and advertising routes, but it does not explain the preference of OSPF routes in the routing table.

300-440 Question 10

Single answer

A network engineer has configured a router that is connected to two upstream routers. OSPF is running on one link, while EIGRP is running on the other. Both routing protocols advertise the same destination prefix (10.1.1.0/24) to the local router. The local router is using its default administrative distances. However, the network engineer realizes that traffic is being forwarded over the EIGRP path instead of the OSPF path. What could be the reason?

  1. A

    EIGRP has a lower administrative distance than OSPF by default.

  2. B

    OSPF routes are preferred due to their lower metric.

  3. C

    The router is misconfigured and not learning the OSPF route.

  4. D

    EIGRP supports unequal-cost load balancing, which OSPF does not.

Show answer and explanation

Correct answer: A

Explanation

When multiple routing protocols advertise the same destination prefix to a router, the router uses administrative distance to determine which route to install in the routing table. EIGRP has a default administrative distance of 90, which is lower than OSPF's default administrative distance of 110. Therefore, the router prefers the EIGRP route, even if OSPF has a better metric.

  • A. Correct.

    EIGRP has a lower administrative distance (90) compared to OSPF (110) by default. Administrative distance determines the trustworthiness of the route, so the router prefers the EIGRP route.

  • B. Incorrect.

    While OSPF may have a lower metric depending on the topology, administrative distance takes precedence when routes to the same prefix are learned from different routing protocols.

  • C. Incorrect.

    The scenario does not indicate any misconfiguration or absence of the OSPF route. The route is being learned, but it is not chosen because of the higher administrative distance.

  • D. Incorrect.

    Unequal-cost load balancing is a feature of EIGRP, but it is unrelated to the selection of a single best route when multiple protocols advertise the same prefix.

Timed practice exam

Take a 300-440 practice test under exam conditions

75 questions in 120 minutes, drawn from this bank, with a score report and a per-question review when you finish.

Start timed exam

All 293 300-440 practice questions

Every question has a page with the answer and explanation. Numbers are stable, so you can bookmark or share them.

  1. 1.An enterprise network engineer is configuring OSPF in a multi-area environment. The network consists of...
  2. 2.A network engineer is configuring OSPF between two routers, R1 and R2, in the same area (Area 0). After...
  3. 3.You are configuring OSPF on a network with multiple routers. Router R1 has two interfaces: GigabitEthernet0/0...
  4. 4.An enterprise network is running OSPF as its routing protocol. The network administrator notices that a...
  5. 5.A network administrator is tasked with implementing a new routing protocol in a multi-vendor environment. The...
  6. 6.A network engineer notices that a router is preferring routes from OSPF over EIGRP, even though EIGRP should...
  7. 7.A network engineer is troubleshooting a route selection issue in a multi-protocol environment. OSPF, EIGRP,...
  8. 8.A network engineer is troubleshooting a routing issue in a multi-protocol environment. The network consists...
  9. 9.A network engineer observes that a router is selecting OSPF routes over EIGRP routes in the routing table,...
  10. 10.A network engineer has configured a router that is connected to two upstream routers. OSPF is running on one...
  11. 11.A network engineer has configured a route map to filter specific routes advertised from one OSPF area to...
  12. 12.A network engineer has configured a route map to filter prefixes being redistributed from OSPF into BGP....
  13. 13.A network engineer is troubleshooting a route-map applied to a BGP neighbor in an enterprise network. The...
  14. 14.A network engineer configured a route map named 'TAGGING' to tag specific routes before redistributing them...
  15. 15.A network engineer is troubleshooting a route map applied to an OSPF process to filter specific routes. The...
  16. 16.A network engineer is troubleshooting routing issues in an OSPF-based network. Upon inspection, it is...
  17. 17.A network engineer is troubleshooting a routing issue in a multi-vendor network. They observe that a route is...
  18. 18.A network engineer is troubleshooting a routing loop issue in a small enterprise network. The network uses...
  19. 19.A network engineer is troubleshooting a routing issue in their OSPF network. A specific route is not being...
  20. 20.You have a network where OSPF and EIGRP are running on different parts of the network. Redistribution between...
  21. 21.A network engineer has configured route redistribution between OSPF and BGP on a Cisco router. However, the...
  22. 22.A network engineer is troubleshooting route redistribution between OSPF and EIGRP on a dual-protocol network....
  23. 23.A network engineer is troubleshooting an issue where OSPF routes are not being redistributed into the EIGRP...
  24. 24.A network engineer is troubleshooting a redistribution issue between OSPF and EIGRP. The OSPF routes are not...
  25. 25.A network engineer is troubleshooting a routing issue in an OSPF environment. The engineer notices that...
  26. 26.A network engineer has configured manual summarization on Router A for EIGRP. However, some routes in the...
  27. 27.A network engineer has configured EIGRP on multiple routers in an enterprise network. The engineer notices...
  28. 28.A network administrator is troubleshooting a routing issue in a network using EIGRP. The administrator...
  29. 29.A network administrator is troubleshooting an OSPF network where manual summarization was configured on an...
  30. 30.A network engineer is tasked with configuring policy-based routing (PBR) on a Cisco router to force traffic...
  31. 31.A network administrator needs to implement policy-based routing (PBR) on a router to ensure that all HTTP...
  32. 32.A network engineer is tasked with configuring policy-based routing (PBR) on a Cisco router. The goal is to...
  33. 33.A network engineer is tasked with configuring policy-based routing (PBR) to direct traffic from a specific...
  34. 34.A network engineer is tasked with implementing Policy-Based Routing (PBR) on a Cisco router to ensure that...
  35. 35.A network engineer is tasked with segmenting a network into multiple virtual routing domains using VRF-Lite....
  36. 36.You are tasked with configuring VRF-Lite on a Cisco router to segment traffic between two departments: HR and...
  37. 37.You are tasked with segmenting traffic for two different departments, HR and Finance, on a single router...
  38. 38.An enterprise network engineer is tasked with segmenting traffic for different departments using VRF-Lite....
  39. 39.An enterprise network administrator has configured VRF-Lite on a router to separate traffic for two different...
  40. 40.An enterprise network engineer is configuring Bidirectional Forwarding Detection (BFD) to monitor the...
  41. 41.A network engineer has configured Bidirectional Forwarding Detection (BFD) on an OSPF-enabled router to...
  42. 42.A network engineer is tasked with implementing Bidirectional Forwarding Detection (BFD) to improve failure...
  43. 43.An enterprise network administrator is troubleshooting a routing issue between two devices connected over a...
  44. 44.An enterprise network is using Bidirectional Forwarding Detection (BFD) to monitor the health of a critical...
  45. 45.A network engineer is troubleshooting EIGRP in a multi-VRF environment on a router configured with EIGRP...
  46. 46.A network engineer is troubleshooting an EIGRP (classic mode) routing issue. OSPF and EIGRP are running on...
  47. 47.A network engineer is troubleshooting an EIGRP issue in a multi-VRF environment. The EIGRP process in the VRF...
  48. 48.A network engineer is troubleshooting an EIGRP issue where an EIGRP neighbor relationship between two routers...
  49. 49.A network engineer is troubleshooting an EIGRP issue between two routers, R1 and R2, which are directly...
  50. 50.A network engineer is configuring a BGP session between two routers to exchange both IPv4 and IPv6 routes....
  51. 51.You are configuring a network that uses both IPv4 and IPv6 address families. To optimize routing exchange...
  52. 52.A network engineer is configuring a BGP session between two routers to exchange both IPv4 and IPv6 routes....
  53. 53.A network engineer is configuring BGP on a router to support both IPv4 and IPv6 address families. Which...
  54. 54.A network engineer is configuring MP-BGP to support both IPv4 and IPv6 address families on a router. After...
  55. 55.You are configuring OSPF between two routers in your network. Despite matching configurations, the OSPF...
  56. 56.A network engineer is configuring OSPF between two routers, R1 and R2. Both routers are directly connected,...
  57. 57.A network administrator is configuring OSPF between two routers, R1 and R2. Despite having matching OSPF...
  58. 58.A network engineer is configuring OSPF authentication between two routers, RouterA and RouterB. After...
  59. 59.You are configuring OSPF between two routers, R1 and R2, in Area 0. Despite ensuring that both routers use...
  60. 60.A network engineer is configuring EIGRP in a network and needs to ensure that a backup route is available in...
  61. 61.A network engineer is troubleshooting an EIGRP network. A route to the 192.168.10.0/24 network is not being...
  62. 62.A network engineer is troubleshooting an EIGRP-enabled network. Router R1 has multiple paths to reach a...
  63. 63.A network engineer is troubleshooting EIGRP routing in a network and notices that a specific route is not...
  64. 64.A network engineer is troubleshooting EIGRP routing in a network. Router R1 is unable to reach a specific...
  65. 65.A network administrator is configuring OSPF for a remote branch office with limited connectivity. The branch...
  66. 66.A network engineer is designing an OSPF network for a small branch office that primarily sends traffic to a...
  67. 67.A network administrator has configured an OSPF stub area on a branch site to reduce the size of the OSPF...
  68. 68.An enterprise network is configured with OSPF, and one of the branch offices has limited connectivity...
  69. 69.A network engineer is designing an OSPF network for a small branch office. The office network has a single...
  70. 70.A network engineer is configuring load balancing over two WAN links between Site A and Site B. The primary...
  71. 71.A network engineer has configured EIGRP on a router with multiple paths to the same destination. The paths...
  72. 72.A network engineer is configuring EIGRP on a router and wants to enable load balancing across multiple paths...
  73. 73.A network engineer has configured EIGRP on a router with the variance command to enable unequal-cost load...
  74. 74.A network engineer is configuring a branch router with two WAN links to the headquarters. Link1 has a...
  75. 75.A network engineer is configuring a routing protocol on a Cisco router in a multi-vendor environment. The...
  76. 76.An enterprise network uses OSPF as its IGP. The network administrator notices suboptimal routing due to OSPF...
  77. 77.A network engineer is configuring EIGRP on a dual-homed topology where one link has a bandwidth of 100 Mbps...
  78. 78.A network engineer is configuring Enhanced Interior Gateway Routing Protocol (EIGRP) on a network and needs...
  79. 79.A network engineer is troubleshooting routing issues in an OSPF-enabled network. The engineer notices that a...
  80. 80.A network engineer is troubleshooting an OSPFv2 adjacency issue between two routers, R1 and R2. The routers...
  81. 81.A network engineer is troubleshooting an OSPFv2 adjacency issue between two routers, R1 and R2. Both routers...
  82. 82.A network administrator is troubleshooting an OSPFv2 issue where two routers, R1 and R2, are not forming a...
  83. 83.You are troubleshooting an OSPFv2 adjacency issue between Router A and Router B. Both routers are in the same...
  84. 84.A network engineer is troubleshooting an OSPFv2 routing issue between RouterA and RouterB. OSPF is configured...
  85. 85.A network engineer is configuring a BGP session between two routers to support both IPv4 and IPv6 address...
  86. 86.You are configuring a router with BGP to support both IPv4 and IPv6 address families. Which of the following...
  87. 87.A network engineer is tasked with configuring BGP on a router to support both IPv4 and IPv6 address families....
  88. 88.A network engineer is configuring BGP on a dual-stack router to support both IPv4 and IPv6 address families....
  89. 89.A network engineer is configuring BGP on a router to support both IPv4 and IPv6 address families. Which...
  90. 90.A network engineer is configuring OSPF between two routers. The OSPF neighbor relationship is not forming,...
  91. 91.A network administrator is configuring an OSPF neighbor relationship between two routers, R1 and R2, over a...
  92. 92.A network engineer is configuring OSPF authentication between two routers (RouterA and RouterB) to ensure...
  93. 93.An enterprise network engineer is configuring OSPF between two routers (R1 and R2). The OSPF adjacency fails...
  94. 94.A network administrator is configuring OSPFv2 between two routers, R1 and R2. The routers are directly...
  95. 95.An organization is designing its OSPF network and has the following requirements: - Minimize the size of the...
  96. 96.You are configuring OSPF in a large enterprise network. The network includes an area with devices that have...
  97. 97.A network engineer is configuring OSPF in a multi-area environment. Area 0 is the backbone area, and Area 1...
  98. 98.You are configuring an OSPF network for a large enterprise. Certain areas need to minimize routing table...
  99. 99.You are configuring OSPF on a multi-area network. The network consists of the following components: a...
  100. 100.A network engineer is configuring OSPF over a Frame Relay network. The network includes one central router...
  101. 101.A network engineer is configuring an OSPF network for a company. The network consists of multiple routers...
  102. 102.A network engineer is configuring OSPF in a network with multiple Frame Relay links. Some links are...
  103. 103.A network engineer is configuring OSPF over a Frame Relay network. The network consists of one hub router and...
  104. 104.A network engineer is configuring OSPF on a network that includes both point-to-point and nonbroadcast...
  105. 105.A company is designing its OSPF network topology to optimize performance and minimize routing overhead. The...
  106. 106.You are designing an OSPF network for a large enterprise. The network includes multiple branch offices...
  107. 107.A network engineer is configuring OSPF in an enterprise environment. The engineer needs to design an OSPF...
  108. 108.A network engineer is designing an OSPF network for an organization. The network includes multiple areas, and...
  109. 109.An enterprise network is implementing OSPF in a multi-area design. The network administrator wants to ensure...
  110. 110.An enterprise network is running OSPF as its routing protocol. One of the routers in the network is connected...
  111. 111.In an OSPF network, you are tasked with understanding the roles of different router types. A router in Area 0...
  112. 112.A network engineer is designing an OSPF network for an organization with multiple areas. The topology...
  113. 113.In an OSPF deployment within a multi-area network, which router type is responsible for disseminating...
  114. 114.In an OSPF network, a topology consists of multiple areas connected to the backbone area (Area 0). One of the...
  115. 115.An OSPF network consists of Area 0 (backbone area) and Area 1, which is not directly connected to Area 0. You...
  116. 116.A network engineer is troubleshooting OSPF connectivity between two areas in their network. The network...
  117. 117.An enterprise network is running OSPF as its routing protocol. A network administrator notices that Area 1...
  118. 118.An OSPF network has been partially configured with two discontiguous areas: Area 0 and Area 1. You notice...
  119. 119.An enterprise network has an OSPF backbone area (Area 0) and a non-backbone area (Area 1). Due to network...
  120. 120.A network engineer is troubleshooting routing issues on a network that runs both OSPF and BGP. The engineer...
  121. 121.A network engineer is configuring a Cisco router to influence outbound traffic and ensure traffic destined...
  122. 122.A network engineer is tasked with configuring path preference for a branch office router that uses both BGP...
  123. 123.A network engineer is tasked with configuring path selection for a network that uses both OSPF and BGP. The...
  124. 124.A network engineer is configuring a multi-homed BGP environment for an enterprise network connected to two...
  125. 125.A network engineer is troubleshooting an issue where an eBGP session between Router A and Router B is not...
  126. 126.An enterprise network is running BGP with an external service provider. The network engineer notices that a...
  127. 127.You are troubleshooting a BGP issue in a network where a router configured for VRF-Lite is not advertising...
  128. 128.A network engineer is troubleshooting a BGP connectivity issue between two routers in separate autonomous...
  129. 129.A network engineer is troubleshooting a BGP issue in a topology where internal BGP (iBGP) peers are...
  130. 130.A network engineer is configuring BGP for a dual-stack environment where both IPv4 and IPv6 address families...
  131. 131.A network engineer is configuring BGP on a dual-stack router to support both IPv4 and IPv6 address families....
  132. 132.A network administrator is configuring a BGP session between two routers in different autonomous systems. The...
  133. 133.A network engineer is configuring a BGP neighbor to exchange routes for both IPv4 and IPv6 address families....
  134. 134.You are configuring a BGP session between two routers in an enterprise network. The routers are required to...
  135. 135.A network engineer is troubleshooting a BGP neighbor relationship between two routers, R1 and R2. The...
  136. 136.A network engineer is configuring BGP between two routers in different autonomous systems. The routers are...
  137. 137.A network engineer is configuring a BGP neighbor relationship between two routers in different autonomous...
  138. 138.A network engineer is troubleshooting a BGP neighbor relationship issue between two routers, R1 and R2. The...
  139. 139.A network engineer is configuring a BGP session between two routers that are not directly connected. The...
  140. 140.A network engineer is troubleshooting a BGP routing issue in which a specific prefix is not being selected as...
  141. 141.You are troubleshooting connectivity issues in a multi-path BGP environment. One of your routers, R1, is...
  142. 142.A network engineer is troubleshooting a BGP deployment in which some prefixes are not following the expected...
  143. 143.A network engineer is troubleshooting an issue where traffic destined for a remote network is not following...
  144. 144.An enterprise network uses BGP for interconnecting with multiple ISPs. The network administrator notices that...
  145. 145.You are configuring a BGP Route Reflector (RR) in your network to simplify the BGP full-mesh requirement. The...
  146. 146.In a BGP deployment, a route reflector is implemented to simplify the iBGP topology in a large network. Which...
  147. 147.In a BGP network, a route reflector is configured to reduce the number of iBGP peerings. When a route...
  148. 148.A company is deploying a BGP route reflector in its network to reduce the number of BGP peer connections...
  149. 149.A network engineer is configuring a BGP route reflector to simplify the topology and reduce the number of...
  150. 150.An enterprise network is experiencing suboptimal routing due to multiple paths being available between two...
  151. 151.A network engineer is tasked with configuring an enterprise network to ensure that specific traffic from a...
  152. 152.A network engineer is tasked with configuring BGP on a router to influence inbound traffic from external...
  153. 153.A network engineer has implemented BGP on a router to connect to multiple ISPs for redundancy. To influence...
  154. 154.You are tasked with influencing the outbound routing behavior of your network by ensuring traffic destined...
  155. 155.An enterprise network is using MPLS Layer 3 VPNs to connect multiple branch offices. The network team needs...
  156. 156.An enterprise network is implementing a site-to-site VPN solution between its headquarters and a remote...
  157. 157.A company has deployed a DMVPN solution to interconnect its branch offices to the headquarters over the...
  158. 158.A company is implementing a DMVPN solution to connect multiple branch offices to the headquarters. They want...
  159. 159.A network engineer is configuring MPLS in a service provider network. They want to ensure that routers can...
  160. 160.A network engineer is troubleshooting an MPLS network where traffic is not being forwarded correctly between...
  161. 161.A network engineer is configuring MPLS in a service provider network. The network consists of Label Switch...
  162. 162.A network engineer is configuring MPLS in their network. The engineer observes that Label Switched Paths...
  163. 163.A network engineer is troubleshooting an MPLS network where traffic is not being properly forwarded between...
  164. 164.A service provider is implementing an MPLS Layer 3 VPN for a customer with multiple sites. The customer...
  165. 165.A service provider is deploying an MPLS Layer 3 VPN to provide secure connectivity between multiple customer...
  166. 166.An enterprise customer has multiple branch offices connected via a service provider MPLS Layer 3 VPN. The...
  167. 167.A service provider is implementing MPLS Layer 3 VPN to provide connectivity between two customer sites. The...
  168. 168.A service provider is tasked with deploying an MPLS Layer 3 VPN to interconnect multiple customer sites. The...
  169. 169.You are tasked with configuring a single-hub DMVPN topology for a company with multiple branch offices. The...
  170. 170.An enterprise is deploying a single-hub DMVPN configuration. The hub router is configured with the...
  171. 171.An enterprise is configuring a DMVPN single-hub topology to connect its branch offices. The hub router is...
  172. 172.An organization is deploying a DMVPN solution with a single hub. The hub router is configured with a static...
  173. 173.A network engineer is tasked with configuring a DMVPN (Dynamic Multipoint Virtual Private Network) using a...
  174. 174.A network engineer is tasked with deploying a secure, scalable GRE-based solution to interconnect multiple...
  175. 175.An enterprise network requires a secure and scalable solution to connect multiple branch offices over the...
  176. 176.An enterprise network engineer is tasked with deploying a point-to-multipoint VPN solution using GRE tunnels....
  177. 177.A network engineer is configuring a GRE tunnel between two branch offices. However, during testing, the...
  178. 178.An organization is implementing a multipoint GRE (mGRE) tunnel on a hub-and-spoke topology to enable dynamic...
  179. 179.In a DMVPN Phase 2 network, you are configuring NHRP on a spoke router. The spoke router is not able to...
  180. 180.A network engineer is deploying a DMVPN Phase 2 topology and needs to ensure that spoke-to-spoke...
  181. 181.You are configuring a DMVPN Phase 2 deployment using NHRP. After the initial setup, you notice that...
  182. 182.An enterprise network is deploying DMVPN with NHRP to support dynamic spoke-to-spoke communication. The...
  183. 183.Your organization is implementing a DMVPN (Dynamic Multipoint VPN) solution for secure communication between...
  184. 184.A network administrator is tasked with configuring a site-to-site IPsec VPN between two routers to securely...
  185. 185.Your company is implementing a site-to-site IPsec VPN between two branch locations, and you are tasked with...
  186. 186.An enterprise network administrator is configuring an IPsec VPN between two branch offices. The administrator...
  187. 187.You are configuring a site-to-site IPsec VPN between two branch offices. During testing, you notice that...
  188. 188.An organization has deployed site-to-site IPsec VPN between two branch offices using Cisco routers. During...
  189. 189.A network engineer is configuring an EIGRP domain using IPv6 on a network with a large number of routers. To...
  190. 190.A network engineer has configured a BGP dynamic neighbor feature on a router. The engineer notices that the...
  191. 191.An enterprise network is using EIGRP for internal routing. The network administrator needs to dynamically...
  192. 192.A network engineer is configuring EIGRP for IPv6 on a router in a dynamic environment. They want to simplify...
  193. 193.An enterprise network is using EIGRP for its internal routing. The network administrator wants to configure...
  194. 194.In a DMVPN Phase 2 deployment, a network engineer observes that spoke-to-spoke communication is not occurring...
  195. 195.A company has deployed a DMVPN hub-and-spoke topology to connect its branch offices. The network engineer...
  196. 196.An enterprise network uses a DMVPN design with multiple branch offices connected to a central hub router. Due...
  197. 197.An enterprise network is configured with a DMVPN topology. The hub router is successfully facilitating...
  198. 198.You are configuring a DMVPN network to enable spoke-to-spoke communication without requiring all traffic to...
  199. 199.You are configuring infrastructure security for a Cisco Enterprise network. The network requires protection...
  200. 200.A company has deployed multiple branch routers connected to the headquarters over the internet. Security...
  201. 201.You are tasked with enhancing the security of a branch office's network. The branch router is experiencing...
  202. 202.A network engineer is tasked with securing an OSPF routing domain in a multi-area network. The engineer must...
  203. 203.An organization has deployed an OSPF-based routing environment. To improve infrastructure security, the...
  204. 204.A network administrator has configured AAA on a Cisco router to use a TACACS+ server for authentication....
  205. 205.A network administrator is troubleshooting an authentication issue on a Cisco router configured with AAA...
  206. 206.A network engineer has configured AAA on a Cisco router to authenticate administrative access using a RADIUS...
  207. 207.A network administrator has configured AAA on a Cisco router to authenticate administrative access using...
  208. 208.A network engineer has configured AAA on a Cisco router to use a TACACS+ server for authentication. However,...
  209. 209.A network engineer is troubleshooting a router where SSH access has suddenly stopped working. The router is...
  210. 210.A network administrator has implemented Control Plane Policing (CoPP) on a router to protect it from attacks...
  211. 211.An enterprise network administrator is troubleshooting a router's security configuration. The router is...
  212. 212.A network engineer is troubleshooting issues with SSH access to a router. The router is configured with an...
  213. 213.You are troubleshooting a network issue where users are unable to access a sensitive server behind a router....
  214. 214.Your network consists of multiple branch offices connected to the headquarters via a WAN. You need to...
  215. 215.A network administrator is tasked with configuring an access control list (ACL) to block HTTP traffic (TCP...
  216. 216.A network administrator has configured the following time-based IPv4 ACL on a Cisco router: The administrator...
  217. 217.A network administrator has configured an extended IPv4 access control list (ACL) to block HTTP traffic from...
  218. 218.A network administrator is tasked with configuring an extended IPv4 ACL to allow HTTP and HTTPS traffic from...
  219. 219.A network engineer is tasked with configuring an IPv6 traffic filter on a router to block all incoming ICMPv6...
  220. 220.A network engineer is tasked with configuring an IPv6 traffic filter to block incoming ICMPv6 echo requests...
  221. 221.You are configuring IPv6 traffic filtering on a router to restrict access to a specific server in your...
  222. 222.You are tasked with implementing an IPv6 traffic filter on a router to prevent traffic from a specific IPv6...
  223. 223.You are configuring an IPv6 traffic filter on a Cisco router to block all inbound traffic to the router's...
  224. 224.A network engineer is configuring Unicast Reverse Path Forwarding (uRPF) on a Cisco router to prevent IP...
  225. 225.An enterprise network engineer has enabled Unicast Reverse Path Forwarding (uRPF) on a router to mitigate...
  226. 226.A network administrator has implemented Unicast Reverse Path Forwarding (uRPF) on a border router to prevent...
  227. 227.A network administrator has configured Unicast Reverse Path Forwarding (uRPF) on a router using the 'strict...
  228. 228.A network engineer is tasked with implementing unicast reverse path forwarding (uRPF) on a corporate router...
  229. 229.A network engineer is troubleshooting an issue where legitimate SSH traffic to a router is being dropped...
  230. 230.A network administrator notices that OSPF neighbor relationships are not forming between routers after...
  231. 231.A network engineer implemented Control Plane Policing (CoPP) on a router to prioritize management traffic...
  232. 232.A network administrator has implemented Control Plane Policing (CoPP) on a Cisco router to protect the...
  233. 233.A network administrator is troubleshooting an issue in an IPv6-enabled network where rogue Router...
  234. 234.A network administrator is tasked with securing an IPv6-enabled network from malicious activities such as...
  235. 235.You are configuring IPv6 security features on an enterprise network. A rogue device is attempting to send...
  236. 236.An enterprise network administrator is tasked with securing an IPv6-enabled network against threats such as...
  237. 237.An enterprise network administrator wants to secure the IPv6 First-Hop environment against potential threats...
  238. 238.A network engineer is tasked with implementing a DHCP server on a Cisco router to provide IP addresses to...
  239. 239.A network engineer is configuring DHCP services on a Cisco router to assign IP addresses to clients in a...
  240. 240.A network administrator is tasked with configuring DHCP services for a large enterprise network. The network...
  241. 241.An enterprise network is experiencing inconsistent network performance across multiple branch offices. Upon...
  242. 242.A network engineer is tasked with configuring a DHCP server on a Cisco router to serve IP addresses for a new...
  243. 243.You are managing a Cisco ISR router in a branch office that has recently been configured for remote access...
  244. 244.A network administrator is unable to remotely manage a Cisco router through SSH. Upon investigating, they...
  245. 245.A network administrator is unable to access a Cisco router via SSH after making recent configuration changes....
  246. 246.A network administrator is unable to access a Cisco router via SSH and suspects an issue with the...
  247. 247.A network engineer is attempting to manage a Cisco router via SSH, but they are unable to establish a...
  248. 248.A network administrator is configuring secure remote access to a Cisco router using VTY lines. They want to...
  249. 249.A network administrator is configuring secure remote access to a Cisco router. They want to ensure that both...
  250. 250.A network administrator wants to secure remote and local access to a Cisco router. They have configured the...
  251. 251.You are configuring a Cisco router to ensure secure remote access for administrators. The requirement is to...
  252. 252.You are configuring a new Cisco router for remote and local access. To provide secure remote management and...
  253. 253.A network engineer is configuring remote access to a Cisco router. The engineer wants to ensure secure...
  254. 254.You are configuring secure remote access for network administrators to manage routers in your enterprise...
  255. 255.A network administrator is tasked with securing remote management access to a Cisco router. The administrator...
  256. 256.A network administrator is tasked with securely copying configuration files from a Cisco router to a remote...
  257. 257.A network engineer is tasked with securely transferring a configuration file from a local workstation to a...
  258. 258.An enterprise network engineer needs to transfer a Cisco IOS image to a router using TFTP. The TFTP server is...
  259. 259.A network administrator is tasked with transferring a new router configuration file to a remote Cisco router...
  260. 260.A network engineer is tasked with configuring a Cisco router to act as a TFTP server for storing backup...
  261. 261.An enterprise network administrator needs to back up the running configuration of a Cisco router to a...
  262. 262.A network administrator is configuring a Cisco router to act as an FTP server for IOS image transfers. After...
  263. 263.A network administrator is troubleshooting SNMP communication between a monitoring server and a router. The...
  264. 264.A network administrator is troubleshooting an SNMPv3 configuration issue on a Cisco router. The SNMP Manager...
  265. 265.A network administrator is troubleshooting an SNMP issue on a Cisco router. The SNMP manager is unable to...
  266. 266.A network administrator is troubleshooting SNMP communication issues between a network management system...
  267. 267.A network engineer is troubleshooting an SNMP issue on a Cisco router. The SNMPv3 manager is unable to...
  268. 268.A network engineer is troubleshooting intermittent issues with OSPF neighbor adjacencies in a branch office....
  269. 269.A network engineer is troubleshooting intermittent connectivity issues on a router in a branch office. They...
  270. 270.A network engineer is troubleshooting a routing issue in a Cisco network. While monitoring logs, they notice...
  271. 271.A network administrator is troubleshooting a connectivity issue in a branch office. They suspect a routing...
  272. 272.A network engineer is troubleshooting intermittent connectivity issues reported by users in a branch office....
  273. 273.An enterprise network has a DHCP server configured on a Cisco IOS router. IPv4 DHCP clients on a remote...
  274. 274.A network administrator is troubleshooting a DHCP issue in an IPv4 and IPv6 dual-stack network. The...
  275. 275.A network administrator is troubleshooting an issue where a client device connected to a Cisco IOS DHCP...
  276. 276.A network administrator has configured an IOS DHCP server on a router to provide IPv4 addresses to clients in...
  277. 277.A network administrator is troubleshooting an issue where IPv4 hosts in VLAN 10 are unable to obtain an IP...
  278. 278.A network administrator has configured IP SLA to measure jitter and delay across a WAN link. Despite the...
  279. 279.A network administrator is troubleshooting performance issues on a VoIP network. Users report poor call...
  280. 280.A network administrator has configured IP SLA to monitor the performance between a branch office router and a...
  281. 281.A network engineer is troubleshooting a network performance issue in a branch office. The engineer has...
  282. 282.A network administrator has configured IP SLA on a router to monitor VoIP traffic performance between two...
  283. 283.An enterprise network engineer is troubleshooting a NetFlow configuration issue on a Cisco router. The router...
  284. 284.An enterprise network engineer has configured Flexible NetFlow on a router to collect traffic statistics for...
  285. 285.A network engineer has configured Flexible NetFlow on a Cisco router to monitor traffic patterns. However,...
  286. 286.A network engineer is troubleshooting an issue where NetFlow data is not being exported from a router to the...
  287. 287.A network administrator is troubleshooting NetFlow on a Cisco router configured with Flexible NetFlow. The...
  288. 288.A network administrator is using Cisco DNA Center Assurance to troubleshoot a connectivity issue reported by...
  289. 289.A network administrator is troubleshooting a branch office connectivity issue using Cisco DNA Center...
  290. 290.A network administrator notices that users in a specific branch office are experiencing intermittent...
  291. 291.You are the network administrator for a large enterprise and have been tasked with troubleshooting...
  292. 292.You are a network administrator, and a user reports intermittent connectivity issues when accessing a...
  293. 293.

300-440 exam dumps FAQ

Are these 300-440 dumps real exam questions?

No. These are original practice questions written to the Designing and Implementing Cloud Connectivity exam objectives, not questions copied from a live exam. Memorising leaked questions violates Cisco's candidate agreement and stops working the moment the question pool rotates. Use this bank to check your understanding of each domain and to find the topics you still need to study.

How many 300-440 practice questions are there?

293 questions, each with the correct answer, an explanation of the answer, and a note on why every other option is wrong. The first 10 are on this page and every question has its own page linked below.

Are the 300-440 exam dumps free?

Yes. Every question, answer and explanation on this page and the linked question pages is free to read without an account. A free HydraNode account adds timed practice exams, scoring and progress tracking across attempts.

How do I take a timed 300-440 practice test?

Sign in and start the Designing and Implementing Cloud Connectivity exam on HydraNode. A session gives you 75 questions drawn from this bank in 120 minutes, then a score report with a per-question review.