How to find: Press "Ctrl + F" in your browser and type key terms to locate the specific exam item or explanation. If the item is not listed on this page, please search for it in our comprehensive IT Exam Items Repository.
1. When should you enable the EIGRP load and/or reliability metrics?
If needed for troubleshooting
To identity better paths when load or reliability change
Only on core routers
Under recommendation by Cisco
Explanation: Topic 8.5.1
EIGRP uses a composite metric based on five vector attributes: bandwidth (K1), load (K2), delay (K3), reliability (K4), and MTU (K5). By default, Cisco sets these coefficients so that only bandwidth and delay (K1 and K3) are used to calculate the path metric, while load and reliability (K2 and K4) are set to zero and ignored.
The sources explicitly state that Cisco does not recommend using load and reliability for metric computation. Furthermore, because EIGRP metric K-values are exchanged in hello packets, they must be consistently configured across the entire network; a mismatch will cause neighbor relationships to reset. Therefore, these values should only be changed under the recommendation of Cisco. Changing them without expert guidance can lead to inconsistent routing behavior and connectivity issues.
2. What is the scope and address range for multicast addresses that are reserved for use inside private domains?
The multicast IP address space (Class D) is categorized into three primary functional groups based on their scope of use:
Administratively scoped addresses: These range from 239.0.0.0 through 239.255.255.255 and are specifically reserved for use inside private domains.
Local-scope addresses: These range from 224.0.0.0 through 224.0.0.255 and are reserved by IANA for network protocol use; they are never forwarded off the local network regardless of their Time to Live (TTL) value.
Global-scope addresses: These range from 224.0.1.0 through 238.255.255.255 and are allocated dynamically across the internet.
The administratively scoped range acts similarly to RFC 1918 private unicast addresses, allowing organizations to use multicast internally without conflicting with addresses used on the public internet.
3. Which two statements describe what a next hop of 0.0.0.0 indicates in this show ip bgp command output? (Choose two.)
Router# show ip bgp
For address family: IPv4 Unicast *****
BGP table version is 27, local router ID is 1.1.1.1
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal,
r RIB-failure
Origin codes: i - IGP, e - EGP, ? - incomplete
Network Next Hop Metric LocPrf Weight Path
*> 10.1.1.0/24 0.0.0.0 0 32768 ?
*> 10.13.13.0/24 0.0.0.0 0 32768 ?
*> 10.15.15.0/24 0.0.0.0 0 32768 ?
The next hop is not reachable.
The network is not valid.
The network is locally originated via the network command in BGP.
The router does not know the next hop.
The network was redistributed into BGP from an IGP.
Explanation: Topic 11.7.2
The provided show ip bgp output contains several key indicators regarding the origin and status of the listed networks:
Next Hop of 0.0.0.0: In BGP terminology, a next hop of 0.0.0.0 indicates that the network is locally originated by the router performing the command.
Weight of 32768: This is the default Weight attribute assigned to paths that the local router originates. Other paths learned from neighbors have a default weight of 0.
Origin Code "?": The "Origin" attribute (at the far right of the output) indicates how the route was introduced into BGP. An "i" indicates the network command, while a "?" (incomplete) indicates the network was redistributed into BGP from an IGP or static route.
In your specific output, the networks have a next hop of 0.0.0.0 and a weight of 32768, confirming they are locally originated. Furthermore, the "?" origin code explicitly indicates they were introduced via redistribution. (Note: While one option mentions the "network command," standard BGP interpretation uses 0.0.0.0 to identify local origination generally, and the ? code identifies redistribution as the specific method for these entries).
4. Which IGMP version allows a host to indicate that they only want to receive traffic from a specific source within a multicast group?
IGMPv2
IGMPv3
IGMPv1
IGMPv4
Explanation: Topic 12.3.3
IGMP Version 3 added support for "source filtering," a feature that enables a multicast receiver host to signal to a router which multicast groups it wants to join and the specific sources from which it expects to receive that traffic. This is also known as source-specific multicast (SSM) capability. By using this membership information, Cisco IOS Software can forward traffic only from the sources explicitly requested by the receivers.
In contrast, earlier versions do not have this capability:
IGMPv1 uses a basic query-response model for reporting group membership.
IGMPv2 improves on version 1 by adding group-specific queries and a leave-group message to reduce latency, but it still lacks source-specific filtering.
5. Which option enables one public address to be used for multiple internal private hosts?
PAT
DHCP
static NAT
dynamic NAT
Explanation: Topic 13.4.3
Port Address Translation (PAT), also referred to as NAT overloading, is the specific implementation of NAT that allows multiple internal private hosts to share a single public (inside global) IPv4 address for external communication. This is a many-to-one mapping process where the router uses unique TCP or UDP port numbers to differentiate between the various internal client sessions.
When a response returns from the internet, the router uses the destination port number to determine which specific internal host should receive the packet, a mechanism known as connection tracking. Because port numbers are 16-bit values, a single public IP address can theoretically support as many as 65,536 internal translations.
In contrast, other NAT types do not support this specific "many-to-one" sharing:
Static NAT maps a single private address to a single public address (one-to-one).
Dynamic NAT maps private addresses to a pool of available public addresses rather than a single one.
DHCP is used for address allocation, not translation.
6. Based on the output given, which statement correctly describes whether or not the BGP session is established between the peers?
R1# show ip bgp summary
BGP router identifier 10.1.1.1, local AS number 64
BGP table version is 1, main routing table version 1
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
10.1.5.70 4 64 0 0 0 0 0 never Active
Yes, it is in the established state.
No, it is in the active state trying to establish a BGP session.
Yes, it is in active state.
No, it is in the never state.
Explanation: Topic 11.7.2
In the output of the show ip bgp summary command, the State/PfxRcd column indicates the current status of the BGP peering relationship. When a BGP session is successfully established, this column does not show a state name; instead, it displays a numeric value representing the number of prefixes received from that neighbor.
If a text string like Active is displayed in this column, it signifies that the BGP session is not yet established. Specifically, the Active state indicates that the router is actively attempting to initiate a TCP connection with the peer to establish the session. Furthermore, the never entry in the Up/Down column confirms that a successful BGP adjacency has never been formed with this neighbor.
7. Which two statements about single-area and multiarea OSPF are true? (Choose two.)
Multiarea OSPF can be used to limit the propagation and processing of LSAs.
In single-area OSPF, all routers inject routing information into the backbone router, and in turn the backbone router sends that information to other routers.
Multiarea OSPF is more scalable than single-area OSPF and is easier to implement.
In multiarea OSPF, Area 1 must be physically connected to the backbone, and all other areas must be connected to Area 1.
Single-area OSPF has one advantage over multiarea OSPF: smaller routing tables.
When a multiarea design is used, one of the areas should be Area 0.
Explanation: Topic 9.7.0
OSPF uses a two-layer hierarchical design to enhance scalability and efficiency. The two true statements are supported as follows:
LSA Limitation: One of the primary advantages of multiarea OSPF is that it segments the network to limit the propagation of LSAs inside a specific area. This ensures that any topology change in one area causes LSA flooding and SPF recalculations only within that specific area, rather than across the entire OSPF domain.
Requirement for Area 0: The sources explicitly state that when multiple areas are involved, OSPF has special restrictions requiring that one of the areas must be Area 0, also known as the backbone. All other non-backbone areas must connect directly to this backbone area to facilitate the distribution of routing information between them.
8. Match the packet type with the proper function and description.
Explanation: Topic 9.5.0
Contains a list of LSAs that need to be updated
LSU
Discovers and maintains neighbors
Hello
Ensures a reliable transmission of LSAs
LSAck
Generated when the router does not have the current information in its database
LSR
Contains the LSA headers that help routers build the link-state database
DBD
9. Which two of the following commands should you use to determine whether the EIGRP router ID has been configured in the EIGRP process? (Choose two.)
show ip protocols
show ip eigrp interface
show ip eigrp traffic
show ip eigrp neighbor
show ip eigrp topology
Explanation: Topic 8.10.2
To determine the Router ID (RID) assigned to an EIGRP process, the following commands are the most effective:
show ip protocols: The sources explicitly state that while the EIGRP router ID has less significance than in OSPF, you should use show ip protocols (referred to in the text as show ip protocol) to view it. This command provides a comprehensive overview of the routing protocol parameters, including the AS number, K-values, and the current Router ID.
show ip eigrp topology: This command is used to display the EIGRP topology table. In the header of the output for this command, the router typically displays the local autonomous system number and the local Router ID associated with that database.
In contrast, other commands like show ip eigrp interface focus on interface-specific settings like Hello intervals, and show ip eigrp neighbor focuses on identifying discovered adjacent routers rather than local process identifiers.
10. Which character in the BGP table of routes indicates the best path to a given route?
b
*
#
>
Explanation: Topic 11.7.2
In the output of the show ip bgp command, the BGP table (or forwarding database) lists all the routes the router has learned from its neighbors. When the BGP table contains more than one path to reach the same destination network, the protocol runs a specific selection process to identify the single optimal route.
This best path is explicitly designated by the ">" character located in the left-most column of the table. Other status codes are often seen in conjunction with this:
The "*" character indicates that the route is valid.
The ">" character indicates it is the best path.
If only one path to a network exists, it is marked as both valid and best (*>) by default. Only the route marked with the ">" symbol is offered to the router's IP routing table for traffic forwarding.
11. Which two options are classified as link-state routing protocols? (Choose two.)
BGP
RIPv2
EIGRP
OSPF
IS-IS
Explanation: Topic 9.2.0
Open Shortest Path First (OSPF) and Intermediate System-to-Intermediate System (IS-IS) are both classified as link-state routing protocols. OSPF functions by having routers generate Link State Advertisements (LSAs), which describe the state of their interfaces and relationships with neighbors. These LSAs are flooded throughout an area so that every router can piece together an identical link-state database (LSDB) representing the complete network topology.
The other protocols listed are categorized differently:
RIPv2 is a traditional distance vector routing protocol.
EIGRP is described as an advancement on distance vector protocols that combines advantages of both link-state and distance vector mechanisms, but it is primarily based on distance vector principles where information is learned from directly connected neighbors.
BGP is defined as a path vector protocol that uses path attributes to exchange reachability information between different autonomous systems.
12. In the following output, the AS number 65200 is for which router?
the neighbor router with the IP address 10.108.200.1
both routers
neither router; 65200 is a process ID
the local router R1
Explanation: Topic 11.7.1
In Border Gateway Protocol (BGP) configuration, the neighbor [ip-address] remote-as [as-number] command is used to explicitly define a peering relationship with another BGP speaker. The remote-as keyword specifically identifies the Autonomous System number of the neighbor router being configured.
The local router's own AS number is established when the BGP process is first enabled using the router bgp [as-number] command. In your specific example, the command tells the local router (R1) that the peer at IP address 10.108.200.1 belongs to AS 65200. If the AS number in the remote-as command is the same as the local router's AS, it is an Internal BGP (IBGP) session; if it is different, it is an External BGP (EBGP) session.
13. Which statement correctly describes OSPF summarization?
With route summarization, only the summarized routes are propagated into the stub areas.
With route summarization, only the default route is propagated into the backbone (Area 0).
With route summarization, all subnet routes are propagated into the backbone (Area 0).
With route summarization, only the summarized routes are propagated into the backbone (Area 0).
Explanation: Topic 10.4.1
OSPF route summarization is an optimization technique where an Area Border Router (ABR) or Autonomous System Boundary Router (ASBR) consolidates multiple specific network prefixes into a single summary advertisement.
According to the sources, without route summarization, every individual specific-link LSA is propagated into the OSPF backbone and throughout the entire domain, which increases network traffic and router overhead. When summarization is enabled, only the summarized routes are propagated into the backbone (Area 0). This provides several critical benefits:
Reduced LSA Flooding: It prevents topology changes (like a link failure) in one area from being propagated into the backbone and other areas.
Smaller Routing Tables: It minimizes the number of routing table entries that routers in other areas must maintain.
Improved Efficiency: Because individual changes are hidden, routers in the backbone and other areas do not have to rerun the SPF algorithm for every change in a remote area, which saves CPU and memory resources.
While ABRs specifically inject these as Type-3 summary LSAs into the backbone, ASBRs summarize Type-5 external LSAs.
14. Which protocol does a receiver use to register their interest in multicast traffic at the first-hop router?
IGMP
Anycast-RP
PIM-SM
PIM-DM
Explanation: Topic 12.3.0
The Internet Group Management Protocol (IGMP) is the specific protocol used by IP hosts (receivers) to report their multicast group membership to their first-hop multicast routers. Its primary purpose is to allow these hosts to communicate their desire to receive specific multicast traffic to the local router, which then begins forwarding that traffic onto the network segment.
In contrast, other protocols mentioned serve different functions:
PIM-SM (Sparse Mode) and PIM-DM (Dense Mode) are multicast routing protocols used between routers to build distribution trees and forward traffic across the network.
Anycast-RP is a technique used to provide redundancy and load sharing for Rendezvous Points within a PIM-SM environment, rather than for host-to-router registration.
While receivers use IGMP to register with their local (first-hop) router, that router then uses protocols like PIM to communicate that membership information to the rest of the network.
15. Examine the following exhibit. What is the router ID for R1?
OSPF follows a specific three-step hierarchical process to select a Router ID (RID) when the routing process starts:
Manual Configuration: It first checks for a manually configured ID using the router-id command under the OSPF process.
Loopback Interface: If no manual ID is configured, it selects the highest IP address of any active loopback interface.
Physical Interface: In the absence of a loopback interface, it selects the highest IP address of any active physical interface.
In the provided exhibit, there is no manual router-id command configured within the router ospf 1 block. However, a loopback interface (Loopback 0) is configured with the IP address 192.168.1.253 [Exhibit]. Because a loopback interface exists and its IP address is numerically higher than the physical interface IP (192.168.1.1), OSPF automatically selects 192.168.1.253 as the Router ID for R1.
Note that an interface does not need to be actively participating in OSPF via a network command to be considered for the Router ID selection; it only needs to be in an active (up/up) state.
16. You enter the show ip nat translations command and do not see any translations. You are worried that there is a problem. What would be the most appropriate action to test the NAT operation?
Issue a ping from the router to any IP address in the outside network.
Verify the running configuration to find the configuration error.
Issue a ping from a device inside the network that should be translated.
Issue a traceroute from the router to any IP address in the outside network.
Explanation: Topic 13.6.0
In Cisco NAT operations, specifically for dynamic NAT and Port Address Translation (PAT), translation entries are not permanent and are only created when relevant traffic passes through the router. According to the sources, a router determines that a source address must be translated only when it receives the first packet from an internal host on a NAT-enabled inside interface.
If the show ip nat translations command shows an empty table, it is often because no active sessions are currently being translated or previous dynamic entries have timed out due to inactivity. Therefore, to test the NAT operation and populate the table, you should generate traffic (such as a ping) from an internal device that is eligible for translation.
Other actions are less effective for testing:
Pinging or tracing from the router itself will typically use the router's own IP address, which is often already a public/global address and does not require translation, thus failing to test the logic intended for internal private hosts.
Verifying the configuration is a troubleshooting step to take after a test has failed, rather than the primary method to test the operation of the NAT engine itself.
17. Which type of router is specific to a multiarea OSPF design?
ASBR
ABR
internal router
backbone router
Explanation: Topic 9.7.0
The Area Border Router (ABR) is the specific type of router required for a multiarea OSPF design because its primary function is to connect multiple areas together. An ABR maintains a separate Link-State Database (LSDB) for each area it is connected to and is responsible for summarizing routing information between those areas.
In contrast, the other router roles can exist in both single-area and multiarea designs:
Internal Router: These routers have all their interfaces in a single area. In a single-area design, every router is an internal router.
Backbone Router: These are routers with at least one interface in Area 0. If a single-area design uses Area 0, all routers in that design are backbone routers.
ASBR (Autonomous System Boundary Router): This router connects the OSPF domain to external routing domains (like the internet or another routing protocol). An ASBR can reside within a single-area OSPF network.
Therefore, while internal, backbone, and ASBR routers are often part of a multiarea OSPF network, only the ABR is fundamentally unique to and required by a design involving more than one area.
18. A router has learned three possible routes that could be used to reach a destination network. One route is from EIGRP and has a composite metric of 20584570. Another route is from OSPF with a metric of 842. The last is from RIPv2 and has a metric of 3. Which route or routes will the router install in the routing table?
RIPv2
none of the above
EIGRP route
OSPF route
all three routes
Explanation: Topic 8.6.2
When a router learns multiple paths to the same destination from different routing protocols, it uses a value called Administrative Distance (AD) to decide which route to install in the IP routing table. Administrative distance is a measure of the "trustworthiness" of the source protocol; the lower the AD, the more trusted the protocol is.
The router's decision-making process is as follows:
AD before Metric: The router first compares the administrative distance of the protocols. Metrics (such as RIP's hop count, OSPF's cost, or EIGRP's composite value) are only compared if multiple paths are learned from the same protocol.
Protocol Hierarchy: According to the sources, EIGRP has a lower administrative distance than OSPF, meaning EIGRP routes are preferred over OSPF routes regardless of the metric values. While OSPF has a default distance of 110, EIGRP is more trusted. RIPv2, as an older distance-vector protocol, typically has an even higher (less trusted) administrative distance than both EIGRP and OSPF.
In this scenario, even though the EIGRP metric is much larger than the others, the router will install the EIGRP route because its administrative distance makes it the most trustworthy source among the three.
19. Which protocol is described in RFC 7761 and uses shared distribution trees rooted at the RP, but may switch to the source-rooted distribution tree?
PIM-DM
OSPFv3
MP-BGP with MSDP
PIM-SM
Explanation: Topic 12.5.2
Protocol Independent Multicast - Sparse Mode (PIM-SM) is the specific protocol described in RFC 7761. PIM-SM operates by using shared distribution trees that are rooted at a Rendezvous Point (RP) to coordinate the forwarding of multicast traffic from a source to its receivers.
A key characteristic of PIM-SM is that while it starts with a shared tree, it may switch to a source-rooted distribution tree (also known as a Shortest Path Tree or SPT). This transition typically occurs when a last-hop router exceeds a configured SPT threshold, allowing it to join the SPT and receive traffic directly from the source to reduce latency.
In contrast, PIM-DM (Dense Mode) uses a "push" model that only supports source trees and is incapable of building shared distribution trees rooted at an RP. OSPFv3 is a unicast routing protocol that can be used to populate the routing table but does not manage multicast distribution trees itself.
20. By default, what is the valid AS number range for a BGP process on a Cisco router?
1 to 256
1 to 32,768
1 to 65,535
1 to 131,072
Explanation: Topic 11.2.0
Autonomous Systems are identified by AS numbers, which are defined as 16-bit integers. This results in a valid range from 1 to 65,535.
Within this 16-bit range, numbers are categorized by their usage:
Public AS numbers: These range from 1 to 64,511 and are assigned and managed by the Internet Assigned Numbers Authority (IANA).
Private AS numbers: These range from 64,512 to 65,535 and are reserved for customers who need to run BGP within their private networks.
The sources also note that while 32-bit AS numbers were later created to address pool exhaustion, the standard 16-bit integer representation remains a fundamental part of BGP identification.
21. Which protocol uses a pull model, enabling multicast traffic to be sent only where it is requested?
MP-BGP
PIM-DM
PIM-SM
OSPFv3
Explanation: Topic 12.5.2
Protocol Independent Multicast - Sparse Mode (PIM-SM) is based on an explicit pull model, meaning that multicast traffic is forwarded only to the specific parts of the network that have requested it. In this operation, receivers signal their interest via IGMP, and the last-hop routers send PIM join messages toward a Rendezvous Point (RP) to "pull" the data stream down the shared distribution tree.
In contrast, PIM-DM (Dense Mode) uses a push model, which floods multicast traffic to every corner of the network and then requires routers with no interested receivers to prune the unwanted traffic. PIM-SM is the optimal choice for production networks because it efficiently conserves bandwidth and router resources by avoiding this unnecessary flooding. Other protocols like OSPFv3 and MP-BGP are primarily unicast routing protocols used to populate the routing table rather than managing the multicast distribution "pull" logic.
22. Here is the show ip route command from router R1, which is load-balancing to the 10.80.13.0/30 network.
R1> show ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
* - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route
Gateway of last resort is not set
10.80.0.0/8 is variably subnetted, 11 subnets, 4 masks
D 10.80.13.0/30 [90/2681856] via 10.80.234.3, 01:13:17, Serial0/0
[90/2681856] via 10.80.234.2, 01:13:17, Serial1/0
D 10.80.23.2/32 [90/2681856] via 10.80.234.2, 01:13:17, Serial0/0
<output omitted>
On R1, the following change was made. In which two ways will the EIGRP routing table and topology table be affected? (Choose two.)
There will be no change in the routing table for the route 10.80.13.0/30.
The EIGRP routing table will have only one route for 10.80.13.0/30.
The EIGRP topology table will have only one route for 10.80.13.0/30.
The EIGRP topology table will have no route for 10.80.13.0/30.
The EIGRP topology table will indicate both routes to the network 10.80.13.0/30.
Explanation: Topic 8.7.2
The configuration change on R1 involves the maximum-paths command, which dictates how many paths the EIGRP process installs in the router's IP routing table for a single destination.
Effect on the Routing Table: By default, Cisco IOS software allows EIGRP to install up to four equal-cost paths in the routing table. Configuring maximum-paths 1 explicitly disables load balancing. As a result, even though R1 has two valid, equal-cost paths to reach 10.80.13.0/30 (via 10.80.234.3 and 10.80.234.2), it will now only install one of those routes into the routing table.
Effect on the Topology Table: The EIGRP topology table functions as a database that contains all destination routes advertised by neighbor routers. Unlike the routing table, which only stores the "best" paths allowed by policy, the topology table retains information for every path learned from every adjacent neighbor. Limiting the number of paths installed in the routing table does not purge these entries from the protocol's underlying database. Therefore, the topology table will still show both routes to the network.
In conclusion, the maximum-paths command restricts the forwarding instructions (routing table) but does not limit the protocol's knowledge of the network structure (topology table).
23. Besides EIGRP, which other IGP protocol supports unequal load-balancing?
IS-IS
RIP
OSPF
BGP
None of the above
Explanation: Topic 8.7.1
EIGRP is unique among routing protocols because it is the only one that supports both equal and unequal-cost path load balancing.
While other Interior Gateway Protocols (IGPs) like OSPF and RIP support Equal-Cost Multipath (ECMP) load balancing using the maximum-paths command, they do not have a mechanism for balancing traffic across links with different metrics. EIGRP achieves unequal-cost load balancing through the variance command, which allows the router to install feasible successor routes into the routing table if their metric is less than the best metric multiplied by the variance value.
Regarding the other options:
BGP is an Exterior Gateway Protocol (EGP) and is explicitly described as not being designed to perform load balancing; its selection process eliminates multiple paths until only a single best path remains.
OSPF and RIP are limited to equal-cost load balancing only.
Consequently, since EIGRP is identified as the unique protocol with this capability, "None of the above" is the correct choice.
24. Which command is used to apply a distribute list to OSPF?
config)# distribute list 1 in
config-std-nacl)# distribute-list 1 in
config-router)# distribute-list 1 out
config)# distribute-list 1 out
Explanation: Topic 10.5.1
A distribute list is a technique used to control routing updates by applying an access list to the routing process. To apply this filter, the distribute-list command must be configured under the routing protocol. This requirement means the command must be issued from the config-router prompt.
The behavior of distribute lists in OSPF is governed by specific rules:
distribute-list in: This command filters which routes the SPF process installs into the local IP routing table; it does not remove routes from the link-state database (LSDB).
distribute-list out: In OSPF, this command is used only on an ASBR and applies exclusively to redistributed routes, allowing the administrator to select which of those routes are advertised to other routers.
25. Which of the following correctly describes an EIGRP feasible successor route?
The best path
A suboptimal path
A backup path
A shorter path
Explanation: Topic 8.3.1
An EIGRP feasible successor is defined as the best alternative loop-free backup path to reach a destination. While the successor is the primary route with the lowest metric and is installed in the routing table, the feasible successor is stored in the topology table but is not used for active forwarding unless the primary path fails.
To qualify as a feasible successor and ensure the path is loop-free, a route must satisfy the feasibility condition: the neighbor's Advertised Distance (the metric for that neighbor to reach the destination) must be less than the Feasible Distance (the current best metric) of the existing successor. The primary advantage of having a feasible successor is that it allows the router to recover immediately from a link failure by promoting the backup route to the routing table without the delay of performing a new route recomputation.
26. Network administrators use the route map tool for many purposes. Which three options are more common applications for route maps? (Choose three.)
autonomous system synchronization
network monitoring
network topology mapping
route filtering with redistribution
policy-based routing
BGP
Explanation: Topic 10.5.4
Network administrators use route maps for several sophisticated network tasks. The three most common applications are:
Route filtering during redistribution: Redistribution between different routing protocols almost always requires some filtering. Route maps are preferred for this because, unlike basic distribute lists, they allow administrators to also manipulate routing metrics using set commands during the redistribution process.
Policy-based routing (PBR): Route maps are used to identify specific traffic based on source/destination addresses, protocol types, or applications. Once matched, a set command dictates a specific interface or next-hop address for that traffic, allowing administrators to define a routing policy that differs from standard destination-based routing.
BGP (Border Gateway Protocol): Route maps are the primary tools for implementing BGP policies. They are assigned to specific BGP neighbor sessions to control which routes enter or leave the BGP process and to perform sophisticated manipulation of BGP path attributes.
The other options provided—autonomous system synchronization, network monitoring, and network topology mapping—are not listed as common applications for route maps in the source material.
27. Which TCP port does BGP use to establish a BGP session?
441
21
179
81
Explanation: Topic 11.2.1
Border Gateway Protocol (BGP) uses TCP port 179 as its transport mechanism. By using TCP, BGP ensures reliable connection-oriented delivery, which means the protocol does not need to implement its own error recovery or retransmission mechanisms.
A BGP speaker must establish a TCP session with its neighbor before any routing updates can be exchanged. Once this TCP relationship is formed, the neighbors can begin sending open messages and eventually exchange their routing tables via update messages. This reliance on TCP also allows BGP to scale effectively, as it can leverage the TCP sliding window mechanism to stream large amounts of routing data without waiting for an individual acknowledgment for every packet.
28. You have a web server with a private IP address within your network. You want users from the internet to access it. Which type of NAT do you use?
DHCP
static NAT
dynamic NAT
PAT
Explanation: Topic 13.4.1
Static NAT is the correct choice for this scenario because it provides a one-to-one mapping between a specific private (inside local) IPv4 address and a public (inside global) IPv4 address.
Key reasons for using static NAT for a web server include:
External Initiation: Unlike dynamic NAT or PAT, which are primarily designed for internal hosts reaching out to the internet, static NAT specifically allows external devices to initiate connections to internal devices.
Persistent Mapping: Static translations are permanent and continuously remain in the translation table, regardless of whether they are actively being used. This ensures that the web server is always reachable at the same public IP address.
Specific Use Case: The source material explicitly states that static NAT is used when a company has a server that needs to be accessible from outside the network, citing a web server as a primary example.
In contrast, dynamic NAT and PAT are typically used to allow internal users to share public addresses when accessing the internet, and they do not inherently provide the permanent, externally-reachable entry required for a public-facing server. DHCP is used for assigning addresses to hosts, not for translating them for internet access.
29. Which translation technology would typically be used at home, especially for connecting devices such as tablets, phones, and PCs through a cable internet connection?
static NAT
dynamic NAT
PAT
double NAT
Explanation: Topic 13.4.0
Port Address Translation (PAT), also known as NAT overloading, is the specific technology typically used in home environments. Most home routers operate in this manner because an Internet Service Provider (ISP) usually assigns only one public IPv4 address to the router, yet multiple devices within the home—such as PCs, tablets, and phones—need to access the internet simultaneously.
PAT works by mapping multiple private IPv4 addresses to a single public IPv4 address. To distinguish between the different internal devices, the router tracks unique TCP or UDP port numbers for each session. This allows the router to accurately return incoming traffic from the internet to the specific device that requested it.
In contrast:
Static NAT is a one-to-one mapping generally used for servers that need to be accessible from the outside.
Dynamic NAT (without overloading) maps a group of private addresses to a pool of multiple public addresses and does not allow for the many-to-one sharing characteristic of home internet connections.
30. What is the difference between static NAT and dynamic NAT?
Static NAT maps many-to-one, and dynamic NAT maps many-to-many.
Static NAT maps one-to-one, and dynamic NAT maps one-to-many.
Static NAT maps one-to-one, and dynamic NAT maps many-to-many.
Static NAT maps one-to-many, and dynamic NAT maps many-to-one.
Explanation: Topic 13.4.0
The primary difference lies in how internal addresses are mapped to external addresses:
Static NAT performs a one-to-one mapping between a private IPv4 address and a public IPv4 address. This type of translation is permanent and is typically used when an internal device, such as a web server, must be consistently accessible from the outside network using a specific public address.
Dynamic NAT maps a group of private IPv4 addresses to a group or pool of available public IPv4 addresses, effectively creating a many-to-many mapping. When an internal host needs to communicate externally, the router dynamically selects an unused address from the pool and creates a temporary translation entry.
The other options are incorrect because many-to-one mapping is specifically the characteristic of Port Address Translation (PAT), also known as NAT overloading, which allows multiple hosts to share a single public IP address by using different port numbers.
31. Which command will display which router interfaces are configured as NAT inside interfaces?
show ip nat interfaces
show ip nat statistics
show ip nat translations
show ip interface
Explanation: Topic 13.6.2
The show ip nat statistics command is the correct tool to verify which router interfaces have been designated for NAT operations.
When this command is executed, the output includes specific sections for:
Outside interfaces: Lists all interfaces configured with the ip nat outside command.
Inside interfaces: Explicitly lists all interfaces configured with the ip nat inside command.
While other commands like show ip nat translations display the active mapping table, they do not provide a summary of the interface roles themselves. The show ip nat statistics command is used specifically in the source material to verify that previous configuration steps were successful and that the expected interfaces are participating in the NAT process.
32. What are three important changes to IGMPv1 that were implemented in IGMPv2? (Choose three.)
team-specific queries
leave-group message
group-specific queries
stop-group message
membership reports
querier election mechanism
Explanation: Topic 12.3.2
IGMPv2 addressed several limitations found in IGMPv1 by introducing the following key features:
Group-specific queries: While IGMPv1 used general queries sent to the all-hosts address (224.0.0.1), IGMPv2 added the ability for a router to query a single specific multicast group. This optimization allows the router to quickly determine if any members remain in a specific group without querying every group on the segment.
Leave-group message: Unlike IGMPv1, which relied on timeouts to determine when a host had left a group, IGMPv2 allows hosts to actively send a leave-group message. This drastically reduces leave latency, especially when the host leaving is the last member of that group on the segment.
Querier election mechanism: IGMPv2 implemented a standardized method to elect a single querier when multiple routers exist on the same segment. The router with the lowest unicast IP address is elected as the querier, whereas IGMPv1 lacked a formal election process.
Additionally, IGMPv2 introduced a query-interval response time to control the "burstiness" of membership reports by specifying how much time members have to respond to a query.
33. Which OSPF network type must be statically configured for DR/BDR election to occur?
broadcast
point-to-point
point-to-multipoint
loopback
nonbroadcast
Explanation: Topic 9.9.0
The nonbroadcast network type is used on multiaccess networks that interconnect more than two routers but lack inherent broadcast or multicast capabilities, such as Frame Relay or ATM. Because the network cannot flood OSPF Hello packets to discover peers, neighbors must be statically configured by the administrator. Once these manual neighbor relationships are defined, OSPF proceeds to perform a DR/BDR election to optimize the exchange of routing information and manage link-state synchronization on the segment.
Other network types behave differently:
Broadcast: Also performs a DR/BDR election, but it uses multicast to discover neighbors dynamically rather than requiring static configuration.
Point-to-point: Uses multicast for dynamic discovery but has no DR/BDR election because only two routers can exist on the segment.
Point-to-multipoint: Discovers neighbors dynamically using multicast and has no DR/BDR election.
Loopback: Is the default for loopback interfaces and does not involve DR/BDR elections.
34. A prefix list can filter on which option?
classful subnet and port
prefix and prefix length
prefix and port number
protocol and prefix
Explanation: Topic 10.5.2
Prefix lists are specialized tools designed for route filtering that offer superior performance compared to traditional access lists. Their primary capability is the ability to filter routing updates based on both the network prefix and the prefix length.
The sources highlight several advantages and characteristics of prefix lists:
Granular Matching: A prefix list can specify the exact size of a subnet mask or indicate a range within which the mask must fall to pass the test.
Efficiency: The router transforms a prefix list into a tree structure, allowing it to determine a "permit" or "deny" verdict much faster than the sequential processing required by access lists.
Specialization: While access lists were originally designed for packet filtering and later extended to routes, prefix lists are intended specifically for route filtering.
Options involving port numbers are incorrect because prefix lists operate at the routing level (Layer 3) to evaluate network addresses and masks, whereas port numbers are part of the transport layer (Layer 4) used for packet filtering.
35. Which command will display how long a BGP peering relationship has been up?
show ip bgp
show ip bgp summary
show ip bgp peer
show ip bgp all
Explanation: Topic 11.7.2
The show ip bgp summary command is used to verify the state of BGP sessions. The output of this command displays a table with current neighbor statuses, where each line provides information for a specific neighbor.
Specifically, the column labeled Up/Down in the output indicates how long the neighbor has been in the current state. In BGP operation, if the relationship is "Established," the state name itself is not displayed; instead, the number of prefixes received from that neighbor is shown in the final column. Therefore, the time value in the Up/Down column reflects exactly how long the peering relationship has been up and running.
While the show ip bgp neighbors command (not listed as an option) also provides this information in a detailed per-neighbor format (e.g., "up for 00:01:16"), show ip bgp summary is the standard administrative command used to view the uptime of all peering relationships simultaneously. Other commands like show ip bgp are used to view the BGP routing table itself rather than session statistics.
36. Which protocol is a Cisco proprietary mechanism that permits backup RPs to be configured for failover?
phantom RP
embedded RP
Auto-RP
Anycast-RP
Explanation: Topic 12.6.3
Auto-RP is a Cisco proprietary mechanism designed to automate the distribution of Rendezvous Point (RP) information within a multicast network. It operates using candidate RPs, which announce their availability, and RP-mapping agents, which map those RPs to specific multicast groups.
A primary benefit of Auto-RP is that it permits backup RPs to be configured, which enables an effective failover mechanism should the primary RP become unavailable. In contrast, the Bootstrap Router (BSR) mechanism is identified as a nonproprietary method. While Anycast-RP can also provide redundancy, the sources specifically highlight Auto-RP as the Cisco proprietary tool that automates this process and supports backup RP configurations.
37. Which statement about OSPF neighbor adjacencies is correct?
The hello/dead timers, area IDs, and authentication information must match within the LSAck messages for two devices to form an OSPF neighbor relationship.
Only the hello/dead timers and authentication information must match within the hello messages for two devices to form an OSPF neighbor relationship. Area IDs and router IDs must be unique.
The hello/dead timers, area IDs, and authentication information must match within the hello messages for two devices to form an OSPF neighbor relationship.
The hello/dead timers, area IDs, and router ID information must match within the hello messages for two devices to form an OSPF neighbor relationship.
The hello/dead timers, area IDs, and authentication information must be unique within the DBD messages for two devices to form an OSPF neighbor relationship.
Explanation: Topic 9.4.0
OSPF routers use the Hello protocol to discover neighbors and establish adjacencies. For a neighbor relationship to form, routers must agree on specific parameters carried within their hello messages.
Specifically, the following information must match:
Hello and Dead Intervals: These timers specify how often hello packets are sent and how long a router waits before declaring a neighbor down. If these are mismatched, an adjacency will not be established.
Area ID: Neighbors must share a common segment and their interfaces must be assigned to the same OSPF area.
Authentication Data: If authentication is enabled, both routers must use the same authentication type and exchange matching keys.
Stub Area Flag: Routers must also agree on whether the area is a stub area.
In contrast, Router IDs must be unique for each router within an OSPF network to avoid identification issues and potential outages; they should not match between neighbors. Furthermore, these compatibility checks occur during the initial hello packet exchange, not within LSAck, DBD, or other subsequent packet types.
38. Refer to the output of the show ip protocols command. Which two EIGRP metrics are being used to affect the calculation that selects the best path to add to the EIGRP routing table? (Choose two.)
R1# show ip protocols
*** IP Routing is NSF aware ***
Routing Protocol is "eigrp 65010"
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Default networks flagged in outgoing updates
Default networks accepted from incoming updates
EIGRP-IPv4 Protocol for AS(65010)
Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
NSF-aware route hold timer is 240
Router-ID: 172.16.1.1
Topology : 0 (base)
Active Timer: 3 min
Distance: internal 90 external 170
Maximum path: 4
Maximum hopcount 100
Maximum metric variance 1
Automatic Summarization: disabled
Maximum path: 4
Routing for Networks:
Routing Information Sources:
Gateway Distance Last Update
Distance: internal 90 external 170
load
delay
MTU
reliability
bandwidth
Explanation: Topic 8.5.1
The output of the show ip protocols command displays the metric weights as K1=1, K2=0, K3=1, K4=0, K5=0. In EIGRP, these K-values are coefficients used in the composite metric formula where K1 represents bandwidth and K3 represents delay. Because only K1 and K3 are set to 1 while the other weights are 0, EIGRP uses only the bandwidth and delay values to calculate the total metric and select the best path (successor) for the routing table. Metrics such as load (K2), reliability (K4), and MTU (K5) are excluded from the calculation in this configuration.
39. Match the correct term with the description.
Explanation: Topic 9.2.0
Router interface
Link
Collection of networks under a common administration
Autonomous system
Interface relationship to neighboring routers
State
Grouping of contiguous networks
Area
40. Which two options play primary roles in route summarization? (Choose two.)
Network numbers in areas should be assigned contiguously.
VRRP
FLSM
Network numbers in areas should be assigned discontinuously.
VLSM
Explanation: Topic 10.6.1
Route summarization, or route aggregation, is the process of advertising a contiguous set of addresses as a single address with a shorter subnet mask. To achieve this efficiently, network numbers must be assigned contiguously so they can be grouped into the smallest possible number of summary addresses. Additionally, because OSPF is a classless routing protocol, it supports VLSM (Variable Length Subnet Mask), allowing it to carry subnet mask information and consolidate multiple specific subnets into a single summary prefix.
41. Which statement correctly defines one major difference between route maps and access lists?
Access lists can use a match and set commands to modify the packet.
Route maps can use the set commands to modify the packet or route.
Route maps can use the set commands to modify the packet header.
Route maps can use a forward command to route the packet.
Explanation: Topic 10.5.3
Route maps are more sophisticated than access lists, operating with logic similar to if-then scripts. While access lists are primarily designed for simple filtering (permit/deny), the major difference is that route maps use match commands to identify conditions and set commands to modify attributes of the packet or route. These set commands allow administrators to change specific characteristics, such as routing metrics during redistribution or next-hop addresses in Policy-Based Routing.
42. You issue the command clear ip nat translation *. However, the translation table still displays NAT entries. Which two reasons can possibly cause this issue? (Choose two.)
Static entries never remain in the translation table but must be refreshed.
The command is not correct.
Static entries constantly remain in the translation table.
The translations are still in use by a host.
PAT entries constantly remain in the translation table.
Explanation: Topic 13.6.1
The command clear ip nat translation * is used to remove dynamic NAT entries from the translation table. However, entries may still appear for two primary reasons:
Static Entries: Unlike dynamic entries, static translations continuously remain in the translation table regardless of their use; they are persistent and not removed by the clear command.
Translations in Use: If a host is currently generating traffic (such as an active Telnet or ICMP session), the router will immediately recreate the dynamic translation entry the moment the next packet arrives, making it appear as though the entry was never removed.
43. What are the three steps in creating a route map? (Choose three.)
Create a profile.
Name the route map.
Add the match statement.
Select a protocol.
Add the action.
Activate the interface.
Explanation: Topic 10.5.4
Route map configuration generally consists of three essential parts:
Name the route map: Defining a unique name to identify the specific route map and its sequence.
Add the match statement: Defining the conditions (match action) to identify which packets or routes are subject to the map.
Add the action: Defining the "set" action or parameters to be performed if the match criteria are met.
Once these configuration steps are complete, the route map must then be applied (e.g., in a redistribution command or attached to an interface) to take effect.
44. What does the passive interface command do in EIGRP?
The passive-interface command in EIGRP suppresses the exchange of hello packets between two routers, which results in the loss of their neighbor relationship. Also, it does suppress the incoming routing packets.
The router cannot receive routing updates on that interface.
The router cannot form neighbor adjacencies on that interface.
The router cannot send routing updates on that interface.
Explanation: Topic 8.4.0
In EIGRP, the passive-interface command stops the interface from sending and receiving Hello packets, which are required to discover neighbors and establish adjacencies. Because no adjacency can be formed, the router cannot exchange routing information with other EIGRP routers on that segment. Furthermore, the command specifically suppresses incoming routing packets, preventing the router from learning any EIGRP updates through that interface.
45. Refer to the output of the show ip protocols command. Which statement is true about the router configuration?
R1# show ip protocols
*** IP Routing is NSF aware ***
Routing Protocol is "eigrp 65010"
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Default networks flagged in outgoing updates
Default networks accepted from incoming updates
EIGRP-IPv4 Protocol for AS(65010)
Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
NSF-aware route hold timer is 240
Router-ID: 172.16.1.1
Topology : 0 (base)
Active Timer: 3 min
Distance: internal 90 external 170
Maximum path: 4
Maximum hopcount 100
Maximum metric variance 1
Automatic Summarization: disabled
Maximum path: 4
Routing for Networks:
Routing Information Sources:
Gateway Distance Last Update
Distance: internal 90 external 170
The variance is set to the default value of 1, which requires all paths to have the same cost to be eligible for load balancing.
The router is configured per-destination and per-packet load balancing.
The router is configured to load balance over unequal-cost paths.
The router is configured with automatic summarization.
Explanation: Topic 8.7.3
The output of the show ip protocols command shows "Maximum metric variance 1." In EIGRP, the default variance is 1, which means the router will only perform load balancing across paths that have the exact same metric (equal-cost). To enable unequal-cost load balancing, the variance must be configured to a value greater than 1 (up to 128). Additionally, the output explicitly states "Automatic Summarization: disabled," making that option incorrect [Source Output]. EIGRP's load balancing is also typically performed on a per-conversation (destination) basis rather than per-packet.
The ITExamAnswers Editorial Team is a dedicated group of certified IT professionals and network engineers. We rigorously review, verify, and update all exam materials to ensure you receive the most accurate and reliable resources for your certification journey.