61 Practice Questions & Answers
You are configuring OSPF in a multiarea topology. Which LSA type is generated by an Area Border Router (ABR) to describe networks in one area to routers in another area?
-
A
Type 5 LSA
-
B
Type 1 LSA
-
C
Type 3 LSA
✓ Correct
-
D
Type 7 LSA
Explanation
Type 3 LSAs (Network Summary LSAs) are generated by ABRs to advertise networks from one OSPF area to another area. Type 1 describes routers, Type 5 describes external networks, and Type 7 describes NSSA external networks.
In BGP, what is the purpose of the AS_PATH attribute when multiple routes to the same destination exist?
-
A
AS_PATH tags routes with community values to apply QoS policies
-
B
AS_PATH specifies the exact next-hop router address for each route segment
-
C
AS_PATH determines the bandwidth available on each route and selects the highest capacity path
-
D
AS_PATH is used as a loop prevention mechanism and influences route selection through path length comparison
✓ Correct
Explanation
AS_PATH serves dual purposes: it prevents BGP loops by ensuring a router does not accept routes containing its own AS number, and it influences BGP best path selection where shorter paths are typically preferred over longer ones.
What happens when you configure a static route with a higher administrative distance than the dynamic routing protocol already running on the router?
-
A
The static route remains in the routing table but is not used unless the dynamic route is removed
-
B
The router will experience a routing conflict and disable both routes automatically
-
C
The static route is immediately activated and replaces all dynamic routes in the routing table
-
D
The static route becomes a backup and is used only if the dynamic route fails
✓ Correct
Explanation
Routes with lower administrative distance are preferred. If a dynamic routing protocol has AD 110 and a static route has AD 150, the dynamic route is preferred. The static route acts as a backup and is used only when the dynamic route is no longer available.
You need to configure a router to advertise a default route to all OSPF neighbors. Which command accomplishes this on a non-backbone router?
-
A
ip route 0.0.0.0 0.0.0.0 10.0.0.1 / router ospf 1 / redistribute static
-
B
router ospf 1 / network 0.0.0.0 0.0.0.0 area 0
-
C
interface eth0 / ip ospf default-route advertisement
-
D
router ospf 1 / default-information originate
✓ Correct
Explanation
The 'default-information originate' command under the OSPF router process instructs the router to generate and advertise a Type 5 LSA for the default route to all OSPF neighbors, regardless of whether it has a default route configured.
In EIGRP, what does the K1 metric component represent, and how does it affect route selection?
-
A
K1 represents delay compensation; it adjusts for serialization delays on high-speed interfaces
-
B
K1 represents the hop count limit; increasing K1 allows routes through more intermediate routers
-
C
K1 represents bandwidth and is the primary metric component used in EIGRP calculations by default
✓ Correct
-
D
K1 represents reliability; higher values indicate less reliable links and reduce route preference
Explanation
K1 is the bandwidth metric component in EIGRP's composite metric calculation. By default, K1=1, K2=0, K3=1, K4=0, and K5=0, making bandwidth and delay the primary factors in EIGRP's path selection algorithm.
Which BGP attribute has the highest priority in the BGP best path selection process when all other attributes are equal?
-
A
AS_PATH length
-
B
Neighbor IP address (Router ID as tiebreaker)
-
C
MED (Multi-Exit Discriminator)
-
D
LOCAL_PREF
✓ Correct
Explanation
LOCAL_PREF is one of the earliest and most influential attributes in BGP best path selection. Among locally significant attributes, LOCAL_PREF is checked after Weight but has more impact than AS_PATH length.
You are troubleshooting a network where OSPF routers in Area 1 cannot reach networks in Area 0. What is the most likely cause?
-
A
Area 0 does not have any configured interfaces with IP addresses
-
B
The Area Border Router (ABR) between the areas is not advertising Type 3 LSAs across the area boundary
✓ Correct
-
C
The OSPF hello interval is different between the areas, causing neighbor relationships to drop
-
D
OSPF authentication is enabled in Area 0 but not in Area 1, preventing LSA propagation
Explanation
Without Type 3 LSAs being generated and advertised by the ABR, inter-area routes are not distributed. ABRs must be properly configured and adjacent to Area 0 to advertise networks from one area to another.
What is the primary advantage of using MPLS Traffic Engineering (TE) over traditional IGP routing in enterprise networks?
-
A
MPLS TE reduces the number of routers needed in the network and eliminates the need for redundancy
-
B
MPLS TE provides faster convergence times than traditional IGPs by using proprietary routing algorithms
-
C
MPLS TE automatically encrypts all data traffic without additional configuration or processing overhead
-
D
MPLS TE allows explicit path selection and constraint-based routing independent of IGP decisions
✓ Correct
Explanation
MPLS TE enables operators to define explicit paths (LSPs) that can satisfy bandwidth and latency constraints independent of what the IGP would normally select, providing greater control over traffic flow and resource utilization.
In BGP, what does the 'next-hop-self' configuration do when applied to iBGP neighbors?
-
A
It creates a backup BGP session using the router's loopback interface as an alternative nexthop
-
B
It forces the router to calculate the shortest path to the neighbor and update metrics accordingly
-
C
It prevents the router from accepting BGP updates from the specified neighbor
-
D
It modifies the NEXT_HOP attribute to the router's own IP address before sending updates to iBGP neighbors
✓ Correct
Explanation
The 'neighbor next-hop-self' command changes the NEXT_HOP attribute to the router's own address in BGP updates sent to iBGP neighbors. This is essential in iBGP to ensure that the NEXT_HOP remains reachable, since iBGP neighbors may not have direct connectivity to external next-hops.
You configure a route redistribution from OSPF into EIGRP. What metric value is assigned to redistributed routes by default if you do not specify a 'metric' command?
-
A
The metric is set to 0, which represents the highest cost in EIGRP
-
B
The metric is automatically calculated based on the original OSPF cost
-
C
The metric is set to infinity, preventing the routes from being used until manually configured
✓ Correct
-
D
The metric is copied from the original protocol's metric value converted to EIGRP format
Explanation
When redistributing routes into EIGRP without explicitly defining a metric, the routes are assigned a metric of infinity (unreachable) by default. The 'metric' command must be used with specific values (bandwidth, delay, reliability, load, MTU) to make the routes usable.
What is the purpose of the BGP COMMUNITIES attribute, and how does it facilitate policy implementation?
-
A
COMMUNITIES identify the physical location of routers and are used for geographic route filtering
-
B
COMMUNITIES measure the network latency from the originating AS to the receiving AS for QoS purposes
-
C
COMMUNITIES define the authentication method used between BGP neighbors and prevent unauthorized route advertisements
-
D
COMMUNITIES tag routes with group identifiers that allow administrators to apply consistent routing policies without modifying individual routes
✓ Correct
Explanation
BGP COMMUNITIES are tags assigned to routes that allow operators to group routes and apply policies (such as LOCAL_PREF changes or filtering) to all routes in a community simultaneously, enabling scalable and flexible routing policies across complex networks.
When configuring OSPF on a broadcast multi-access network segment, which router assumes the role of Designated Router (DR)?
-
A
The router with the highest OSPF priority and highest Router ID, elected through a democratic vote
-
B
The router with the highest configured OSPF priority value; if tied, the router with the highest Router ID wins the election
✓ Correct
-
C
The router that has been running OSPF the longest on that network segment regardless of priority
-
D
The router with the lowest loopback IP address on the segment
Explanation
DR election in OSPF is based primarily on the OSPF priority value (default 1, configurable 0-255). If priorities are equal, the router with the highest Router ID (typically the highest IP address configured on the router) becomes the DR.
You need to implement a BGP route filter that prevents your AS from accepting any routes with more than 5 AS hops. Which tool would be most appropriate?
-
A
A static route configuration that overrides long-path BGP routes
-
B
BGP community filter applied at the ingress of the BGP session
-
C
Access Control List (ACL) applied to the BGP neighbor interface
-
D
AS_PATH regular expression filter using a route-map that matches AS_PATH length
✓ Correct
Explanation
An AS_PATH regular expression in a route-map allows you to filter routes based on the AS_PATH attribute length or specific AS numbers. This is the standard method to control which routes are accepted based on how many ASes are in the path.
In EIGRP, what condition must be met for a router to advertise a route as a successor versus a feasible successor?
-
A
A successor has the lowest reported distance, while a feasible successor has a feasible distance less than the current successor's reported distance
✓ Correct
-
B
A successor is any route learned from an adjacent neighbor, while a feasible successor is learned from a non-adjacent router
-
C
A successor must be confirmed with an ACK, while a feasible successor is unconfirmed and awaiting confirmation
-
D
A successor is selected based on bandwidth, while a feasible successor is selected based on delay metrics
Explanation
In EIGRP, a successor is the neighbor offering the minimum advertised distance (lowest metric) to the destination. A feasible successor is an alternative path where the neighbor's advertised distance is less than the current successor's feasible distance, enabling fast failover without recomputation.
What is the primary benefit of using OSPF virtual links in a network topology?
-
A
Virtual links reduce memory consumption by eliminating the need to store certain LSA types
-
B
Virtual links automatically establish BGP sessions between remote OSPF areas
-
C
Virtual links allow area connectivity through non-backbone intermediate areas when direct connection to Area 0 is not possible
✓ Correct
-
D
Virtual links encrypt traffic between non-adjacent routers to enhance security
Explanation
OSPF virtual links enable connectivity between the backbone (Area 0) and an isolated area through an intermediate non-backbone area. This allows all areas to maintain connectivity to the backbone even when direct ABR-to-backbone connections are unavailable.
You are analyzing BGP advertisements and notice that the MED (Multi-Exit Discriminator) value for identical routes differs between two eBGP neighbors. How should this be interpreted?
-
A
The MED values indicate different paths with equal cost, and BGP will load-balance equally between them
-
B
The different MED values indicate that one neighbor is using a backup connection and should not be preferred
-
C
The lower MED value indicates the preferred entry point; the MED is used for route selection when routes are from the same neighboring AS
✓ Correct
-
D
The MED values represent different link speeds, and the higher value indicates a faster connection
Explanation
MED is a metric used to influence route selection among multiple paths from the same neighboring AS. Lower MED values are preferred. However, MED is only compared between routes from the same AS and is not compared across different ASes unless 'bgp always-compare-med' is configured.
In a redistribution scenario between OSPF and EIGRP, which statement best describes the metric translation challenge?
-
A
OSPF cost is directly compatible with EIGRP metric calculations, requiring no conversion
-
B
The metrics are incompatible at the protocol level, and redistribution is impossible without external tools
-
C
OSPF uses accumulated hop count while EIGRP uses composite metrics, requiring explicit metric definition during redistribution
✓ Correct
-
D
EIGRP metric is based on hop count, which directly translates to OSPF cost without modification
Explanation
OSPF calculates cost inversely from bandwidth (cost = 100,000,000 / bandwidth), while EIGRP uses a composite metric of bandwidth, delay, reliability, and load. Direct translation is not possible; therefore, administrators must explicitly define metrics during redistribution.
What is the primary function of a BGP Route Reflector in a large iBGP deployment?
-
A
A Route Reflector encrypts BGP advertisements to prevent eavesdropping on internal network topology
-
B
A Route Reflector allows iBGP routers to peer with each other without establishing full-mesh iBGP connections, reducing configuration overhead
✓ Correct
-
C
A Route Reflector eliminates the need for external BGP connections and consolidates all external routing information
-
D
A Route Reflector automatically converts iBGP routes to eBGP advertisements for external redistribution
Explanation
A BGP Route Reflector allows iBGP clients to receive routes from other clients through the reflector, eliminating the requirement for full-mesh iBGP connectivity. This significantly reduces the number of BGP sessions needed and simplifies network design in large deployments.
You observe that OSPF neighbors on a point-to-point link are stuck in the 'ExStart' state. Which factor is most likely preventing them from progressing to the 'Full' state?
-
A
The routers have mismatched dead timers but identical hello intervals
-
B
One router is advertising a higher MTU size than the other router can support on the link
✓ Correct
-
C
The routers are on different subnets but can still reach each other via a secondary route
-
D
The routers have different OSPF network types configured, preventing proper adjacency formation
Explanation
MTU mismatch during OSPF adjacency negotiation causes routers to remain stuck in ExStart or Exchange state because they cannot successfully transmit and receive larger Database Description packets. All OSPF parameters (hello/dead timers, area, authentication) must match, and MTU must be compatible.
What is the significance of the BGP 'weight' attribute in the best path selection process, and how does it compare to other attributes?
-
A
Weight is a standard BGP attribute defined in RFC 4271 and is compared before AS_PATH length
-
B
Weight is a Cisco proprietary attribute that has the highest priority in best path selection and is only significant between local paths
✓ Correct
-
C
Weight is used only when comparing routes from the same neighbor and has no effect on inter-neighbor comparisons
-
D
Weight has the lowest priority in best path selection and is rarely used in modern BGP deployments
Explanation
Weight is a Cisco proprietary attribute checked first in BGP best path selection, before all other attributes. Higher weight values are preferred, and weight is only locally significant—it does not propagate between routers and is useful for local route preference tuning.
In EIGRP, what does the 'variance' command do, and how does it affect route selection?
-
A
Variance adjusts the EIGRP K-values to compensate for different link types in hybrid networks
-
B
Variance increases the router's processing power allocation to EIGRP, improving convergence speed
-
C
Variance allows EIGRP to use multiple feasible successors for load balancing if their feasible distance is within the variance multiplier times the successor's distance
✓ Correct
-
D
Variance reduces the number of feasible successors by filtering out routes with lower reliability
Explanation
The variance multiplier (default 1) allows unequal-cost load balancing in EIGRP. When set to a value greater than 1, routes with a feasible distance less than (variance × successor's distance) become eligible for load balancing, enabling traffic distribution across multiple paths.
What is the purpose of OSPF Type 4 LSAs in a multi-area OSPF network?
-
A
Type 4 LSAs establish trust relationships between OSPF areas for authentication purposes
-
B
Type 4 LSAs describe external routes imported into OSPF from other routing protocols like BGP
-
C
Type 4 LSAs are generated by ABRs to advertise the location of ASBR (Autonomous System Boundary Router) routes within the AS
✓ Correct
-
D
Type 4 LSAs provide a summary of all routes within a single area and prevent unnecessary flooding
Explanation
Type 4 LSAs (ASBR Summary LSAs) are created by ABRs to advertise the reachability of ASBRs to routers in other areas. This allows routers in non-backbone areas to find and reach ASBRs that redistribute external routes, essential for multi-area external route distribution.
You need to configure a router to accept only BGP routes from a specific AS. Which feature would be most appropriate to implement this policy?
-
A
ACLs applied directly to the BGP process to permit specific AS numbers
-
B
BGP community filters that tag all routes from the specified AS
-
C
AS_PATH access lists with a route-map filter that matches specific AS numbers
✓ Correct
-
D
BGP prefix lists combined with route-maps applied to the BGP neighbor
Explanation
AS_PATH access lists using regular expressions allow you to match and filter routes based on specific AS numbers in the AS_PATH. When combined with a route-map and applied to a BGP neighbor, this provides precise control over which routes are accepted from other ASes.
In a redundant BGP design with multiple eBGP neighbors providing the same external route, which attribute modification would ensure traffic prefers the local exit point over other ASes?
-
A
Increase the LOCAL_PREF value on the preferred exit point to influence all routers within the AS
✓ Correct
-
B
Modify the AS_PATH by prepending the local AS number multiple times on routes from other neighbors
-
C
Set the MED attribute to 0 on all routes from the preferred neighbor
-
D
Configure the weight attribute on the preferred eBGP session and use route-maps to increase it selectively
Explanation
LOCAL_PREF is the most appropriate attribute for internal AS route preference because it has high priority in BGP best path selection and influences all iBGP routers. Increasing LOCAL_PREF on routes learned from the preferred eBGP neighbor ensures all routers prefer that exit point.
What is the primary disadvantage of using a default route with OSPF redistribution in a multi-area topology?
-
A
Default routes consume excessive bandwidth by forcing all routers to send hello packets more frequently
-
B
Default routes cause a suboptimal traffic path because all traffic destined for unknown networks is directed through the redistribution point
✓ Correct
-
C
Default routes cannot be redistributed and will be rejected by OSPF
-
D
Default routes require all routers to have identical OSPF priorities, which restricts DR election
Explanation
Redistributing a default route into OSPF can cause suboptimal routing because traffic destined for networks not in the OSPF routing table will be directed to the ASBR regardless of the actual network topology, potentially bypassing more efficient direct paths.
Which BGP attribute is used to control the local preference of routes within an AS, and what is its default value if not explicitly configured?
-
A
LOCAL_PREF with a default value of 100
✓ Correct
-
B
COMMUNITIES with a default value of no-export
-
C
Weight with a default value of 32768
-
D
MED with a default value of 0
Explanation
LOCAL_PREF is the attribute used to influence route preference within an AS and is propagated through iBGP. The default value is 100. Higher LOCAL_PREF values are preferred, and this attribute is the primary tool for internal route preference tuning.
You are implementing OSPF in a network where multiple routers need to function as potential DRs. What configuration change would allow the fastest transition to a new DR if the current DR fails?
-
A
Configure a static list of DR candidates using the OSPF DR static command
-
B
Increase the OSPF priority value on backup routers to make them eligible for DR election
-
C
Implement OSPF BFD (Bidirectional Forwarding Detection) to enable sub-second neighbor failure detection
✓ Correct
-
D
Reduce the OSPF dead interval to 5 seconds on all interfaces to speed up neighbor failure detection
Explanation
BFD provides sub-second failure detection compared to OSPF's default hello/dead intervals, allowing faster DR transition when the current DR becomes unreachable. This is more effective than simply reducing dead intervals, which can cause instability.
When configuring EIGRP named mode, what is the primary advantage over classic mode regarding network scalability?
-
A
Named mode allows for easier configuration of multiple address families and simplified troubleshooting through named components.
✓ Correct
-
B
Named mode automatically configures all interfaces without manual intervention.
-
C
Named mode eliminates the need for AS numbers completely.
-
D
Named mode increases the maximum number of EIGRP neighbors to 1000.
Explanation
EIGRP named mode provides a more scalable and flexible configuration framework by organizing address families and allowing simplified management of complex networks.
Which BGP attribute is used to influence the best path selection by controlling which AS path an advertised route will take?
-
A
Atomic aggregate
-
B
AS_Path prepending
✓ Correct
-
C
Origin
-
D
Community
Explanation
AS_Path prepending artificially lengthens the AS path to make a route less preferred, allowing operators to control traffic flow and influence best path selection.
In a multiarea OSPF deployment, what is the primary function of an Area Border Router (ABR)?
-
A
ABR routers generate default routes for all connected areas.
-
B
ABR routers increase the hop count for inter-area routes by one.
-
C
ABR routers connect different OSPF areas and translate LSA types between areas.
✓ Correct
-
D
ABR routers exclusively handle type 7 LSAs for NSSA areas.
Explanation
ABRs connect multiple OSPF areas and create summary routes (type 3 LSAs) between areas, controlling route advertisement and reducing routing overhead.
What does the BGP attribute 'Local Preference' control in a multi-exit scenario?
-
A
It modifies the AS path length for inbound route advertisements.
-
B
It restricts route advertisements to specific neighbor groups only.
-
C
It determines the preference for outbound traffic leaving your AS through different exit points.
✓ Correct
-
D
It influences how external BGP neighbors receive routes from your AS.
Explanation
Local Preference is an internal BGP attribute that influences how traffic exits your AS by making certain egress points more or less attractive to internal routers.
When implementing OSPF in a hub-and-spoke topology, which network type should be configured on the hub router's interface to minimize LSA flooding?
-
A
NBMA
-
B
Broadcast
-
C
Point-to-point
-
D
Point-to-multipoint non-broadcast
✓ Correct
Explanation
Point-to-multipoint non-broadcast prevents the formation of unnecessary adjacencies and reduces flooding overhead in hub-and-spoke designs by not requiring a designated router.
Which command is used in BGP to prevent a route from being advertised to a specific BGP neighbor?
-
A
neighbor [IP] unsuppress-map [name]
-
B
neighbor [IP] prefix-list [name] in
-
C
neighbor [IP] distribute-list [ACL] out
✓ Correct
-
D
neighbor [IP] route-map [name] in
Explanation
The distribute-list command with 'out' direction filters outbound route advertisements to specific neighbors, preventing unwanted routes from being sent.
In EIGRP, what does the K value represent and how many are typically used in modern deployments?
-
A
Quality of Service parameters; K values range from 1 to 100 with no standard count.
-
B
Metric weights; five K values (K1-K5) with K1, K2, K3, K4, K5 used for bandwidth, load, delay, reliability, and MTU respectively.
✓ Correct
-
C
EIGRP version numbers; only K1 and K2 are used in modern deployments for bandwidth and delay.
-
D
Key generation factors for EIGRP authentication mechanisms across the network.
Explanation
K values are metric weights in EIGRP's composite metric calculation. While five K values exist, typically only K1, K3, and sometimes K5 are modified in practice.
What is the primary difference between OSPF stub areas and NSSA (Not-So-Stubby) areas?
-
A
Stub areas support more routers than NSSA areas by design.
-
B
Stub areas have faster convergence times due to reduced LSA processing.
-
C
NSSA areas require manual redistribution configuration on all routers.
-
D
NSSA areas allow type 7 LSAs and can import external routes, while stub areas cannot import any external routes.
✓ Correct
Explanation
NSSA areas allow external routes to be advertised internally as type 7 LSAs, providing flexibility that stub areas lack for importing redistributed external routes.
When configuring BGP route reflectors, what is the primary benefit of using route reflectors in a large AS?
-
A
Route reflectors reduce the number of iBGP sessions required, decreasing complexity and CPU usage on routers.
✓ Correct
-
B
Route reflectors eliminate the need for external BGP peering entirely.
-
C
Route reflectors increase convergence time by redundantly advertising all paths.
-
D
Route reflectors automatically filter all routes based on community strings.
Explanation
Route reflectors allow clients to learn routes from one reflector instead of requiring a full mesh of iBGP sessions, reducing O(n²) scaling issues.
In EIGRP, which metric component has the greatest impact on path selection by default?
-
A
Delay
-
B
Load
-
C
Bandwidth
✓ Correct
-
D
Reliability
Explanation
Bandwidth (K1=1) and delay (K3=1) are enabled by default with equal weight, but bandwidth is used as the primary determining factor in EIGRP's composite metric calculation.
What is the purpose of the BGP 'suppress-map' feature when used with route aggregation?
-
A
It prevents any route aggregation from occurring in the BGP process.
-
B
It suppresses the advertisement of specific subnets while still advertising the aggregate route.
✓ Correct
-
C
It automatically generates summary routes based on classful boundaries.
-
D
It completely removes routes from the routing table to save memory.
Explanation
The suppress-map feature allows you to aggregate subnets into a summary route while selectively suppressing which component subnets are advertised to neighbors.
When implementing OSPF virtual links, in which scenario are they most commonly required?
-
A
To connect a discontiguous area to the backbone through a transit area.
✓ Correct
-
B
To reduce the number of designated routers in a broadcast network.
-
C
To provide redundancy between two backbone routers.
-
D
To bypass slow WAN links in a network topology.
Explanation
Virtual links connect a discontiguous area to area 0 through an intermediary area, restoring logical connectivity to the backbone in split area topologies.
Which BGP timers control the frequency of keepalive messages and session timeout?
-
A
Advertisement timer and Convergence timer
-
B
Keepalive timer and Hold timer
✓ Correct
-
C
Hello timer and Dead timer
-
D
Neighbor timer and Session timer
Explanation
BGP uses Keepalive (default 60s) and Hold timers (default 180s). If no message is received within the Hold time, the session terminates.
In EIGRP named mode, which component is used to configure specific routing protocol parameters within an address family?
-
A
Interface
-
B
Neighbor
-
C
Process
-
D
Topology
✓ Correct
Explanation
The topology configuration in EIGRP named mode allows fine-grained control over routing behavior, metrics, and filters within specific address families.
What is the primary advantage of using BGP communities to manage route policies compared to using access lists?
-
A
Communities are processed faster because they use binary encoding instead of decimal representation.
-
B
Communities automatically summarize routes based on regional boundaries.
-
C
Communities provide a more scalable and flexible way to group and manipulate routes without modifying ACLs across multiple routers.
✓ Correct
-
D
Communities can be applied to any routing protocol, including OSPF and EIGRP.
Explanation
BGP communities enable dynamic route grouping and policy application without requiring ACL changes, making them more scalable for complex multi-AS policies.
When configuring OSPF on a Frame Relay interface with multiple point-to-point subinterfaces, what network type should be configured?
-
A
Point-to-multipoint on the main interface only
-
B
Point-to-point on each subinterface
✓ Correct
-
C
NBMA on the main interface and broadcast on subinterfaces
-
D
Broadcast on all interfaces regardless of configuration.
Explanation
Each point-to-point subinterface should be configured as point-to-point network type to automatically establish adjacencies without requiring neighbor statements.
Which EIGRP feature allows selective route advertisement and filtering based on both prefix and prefix length?
-
A
Community lists
-
B
Access lists
-
C
Prefix lists
✓ Correct
-
D
Route maps
Explanation
Prefix lists are the preferred method in modern EIGRP deployments for matching and filtering routes based on both the network prefix and the prefix length.
In a BGP confederation setup, what is the primary purpose of confed-external peers?
-
A
They automatically convert eBGP routes to iBGP routes without modifying next-hop addresses.
-
B
They connect the confederation to external ASes while maintaining internal route symmetry.
✓ Correct
-
C
They prevent any external route advertisements from entering the confederation.
-
D
They allow sub-ASes within a confederation to exchange routes without requiring a full iBGP mesh.
Explanation
Confed-external peers (connections between sub-ASes within a confederation) use modified eBGP rules while preserving some iBGP characteristics, reducing mesh complexity.
What is the maximum number of OSPF areas that can be connected to a single backbone router?
-
A
There is no hard limit; it depends on router resources and design considerations.
✓ Correct
-
B
Maximum of 10 areas per backbone router.
-
C
Unlimited areas are supported with OSPF version 3 only.
-
D
Maximum of 50 areas per backbone router.
Explanation
OSPF does not enforce a hard limit on the number of areas connected to a backbone router, but practical limits depend on router CPU, memory, and network design.
When implementing BGP next-hop-self on a route reflector, what is the primary impact on route advertisements?
-
A
The route reflector creates additional AS numbers to manipulate path selection.
-
B
The route reflector prevents any external routes from being reflected to clients.
-
C
The route reflector modifies the next-hop to itself, ensuring reachability for reflected routes within the AS.
✓ Correct
-
D
The route reflector increases the local preference value for all reflected routes by 100.
Explanation
BGP next-hop-self on a route reflector changes the next-hop address to the reflector's address, ensuring internal clients can reach the destination through the reflector.
In EIGRP, what does the feasibility condition determine?
-
A
Whether a neighbor router has the correct EIGRP version and AS number configured.
-
B
Whether an interface is functioning properly and can support EIGRP adjacencies.
-
C
Whether a successor or feasible successor route is eligible to be used as a backup path without creating a loop.
✓ Correct
-
D
Whether the total bandwidth exceeds the configured threshold on an interface.
Explanation
The feasibility condition ensures that a feasible successor has an advertised distance less than the local successor's feasible distance, preventing routing loops.
Which OSPF LSA type is used to advertise routes redistributed from external routing sources into an OSPF area?
-
A
Type 4 (ASBR Summary LSA)
-
B
Type 5 (External LSA)
✓ Correct
-
C
Type 3 (Network Summary LSA)
-
D
Type 2 (Network LSA)
Explanation
Type 5 External LSAs are originated by Autonomous System Border Routers (ASBRs) to advertise routes learned from external routing protocols into OSPF.
What is the primary function of the BGP 'weight' attribute in Cisco IOS?
-
A
It is a local Cisco attribute that influences route selection before any other BGP attribute is evaluated.
✓ Correct
-
B
It calculates the AS path length based on network segment weights.
-
C
It modifies the advertised distance to external BGP neighbors.
-
D
It automatically adjusts MED values based on interface bandwidth.
Explanation
Weight is a Cisco-proprietary attribute with the highest priority in BGP path selection, with higher values preferred (default is 32768 for local routes, 0 for others).
In EIGRP, which command is used to configure a specific metric weight for composite metric calculation?
-
A
metric-weights k1 k2 k3 k4 k5
-
B
set metric weights k1 k2 k3 k4 k5
-
C
eigrp metric weights tos k1 k2 k3 k4 k5
-
D
metric weights tos k1 k2 k3 k4 k5
✓ Correct
Explanation
The 'metric weights tos k1 k2 k3 k4 k5' command in EIGRP router configuration mode adjusts the metric weights for bandwidth, load, delay, reliability, and MTU calculations.
You are configuring EIGRP on a router that connects to both internal and external networks. Which metric component is used by EIGRP by default to calculate the path cost?
-
A
Bandwidth, delay, reliability, load, and MTU
-
B
Hop count and bandwidth
-
C
Bandwidth and delay only
✓ Correct
-
D
Delay and reliability only
Explanation
EIGRP uses bandwidth and delay as the default metric components. While reliability, load, and MTU can be configured, they are not used in the default calculation.
A network administrator needs to prevent a specific subnet from being advertised into the OSPF domain. Which command accomplishes this task most efficiently?
-
A
area 0 filter-list prefix BLOCK_SUBNET in
-
B
ip ospf network point-to-point on the interface
-
C
distribute-list prefix DENY_LIST out GigabitEthernet0/0
✓ Correct
-
D
router ospf 1 / passive-interface default / no passive-interface GigabitEthernet0/0
Explanation
The distribute-list command with a prefix list is the standard method to filter OSPF advertisements on a per-interface basis. This prevents the subnet from being advertised outbound on that interface.
You are implementing BGP route filtering for a customer. The customer has multiple ASes and requires different route policies for each. Which BGP feature allows you to apply different policies based on the source AS?
-
A
Autonomous system prepending with distribute lists
-
B
Prefix lists with community values
-
C
AS-path access lists with route maps
✓ Correct
-
D
Extended access lists on BGP neighbors
Explanation
AS-path access lists combined with route maps allow you to match routes based on the AS path they originated from and apply different policies accordingly. This is the most flexible approach for AS-based filtering.
When configuring MPLS on a Cisco router, which protocol is required to establish label bindings between LSRs?
-
A
ISIS with traffic engineering extensions
-
B
EIGRP with multi-protocol support
-
C
LDP (Label Distribution Protocol) or RSVP-TE
✓ Correct
-
D
BGP with extended communities
Explanation
LDP and RSVP-TE are the primary protocols used to distribute labels between Label Switch Routers in an MPLS network. LDP is simpler for basic MPLS, while RSVP-TE is used for traffic engineering.
You need to verify that an OSPF router has become the designated router for a multi-access segment. Which command displays the DR and BDR information?
-
A
show ip ospf neighbor detail
-
B
show ip ospf interface brief
✓ Correct
-
C
show ip ospf statistics
-
D
show ip ospf database router
Explanation
The 'show ip ospf interface brief' command displays the DR and BDR for each interface. The detailed neighbor command shows neighbor states but not the DR/BDR designation.
A BGP route reflector needs to be configured to reflect routes from one client to another. What is the primary difference in route reflection behavior for routes received from RR clients versus IBGP peers?
-
A
Routes from clients are reflected to other clients; routes from non-clients are reflected only to clients
✓ Correct
-
B
Routes from clients are reflected to all peers except the originator; routes from non-clients are never reflected
-
C
Routes from clients follow standard split-horizon rules like normal IBGP peers
-
D
Routes from non-clients are reflected to all clients; routes from clients are only reflected to non-clients
Explanation
A route reflector reflects routes from clients to other clients and non-clients (except the originator). Routes from non-client IBGP peers follow normal split-horizon rules and are not reflected to other non-clients.
You are troubleshooting a BGP convergence issue where routes are being withdrawn and re-advertised frequently. Which BGP feature helps stabilize the network by temporarily suppressing unstable routes?
-
A
BGP graceful restart with helper mode
-
B
BGP soft reconfiguration with inbound route maps
-
C
BGP route dampening with penalty values
✓ Correct
-
D
BGP bestpath cost-community ignore
Explanation
BGP route dampening penalizes routes that flap (repeatedly withdrawn and re-advertised), temporarily suppressing them until they stabilize. This reduces unnecessary route updates in the network.
When implementing GRE (Generic Routing Encapsulation) tunnels across an MPLS network, what is encapsulated inside the tunnel traffic?
-
A
GRE header only; payload is dropped and reconstructed at the egress
-
B
Only the GRE header with pointer to the original packet
-
C
The original IP packet with GRE header, but MPLS operates transparently below
-
D
Original IP packet with GRE header, all wrapped in MPLS labels
✓ Correct
Explanation
In a GRE tunnel over MPLS, the original IP packet is wrapped with a GRE header, and then the entire result is encapsulated with MPLS labels for transport across the MPLS network.
You are configuring OSPF for a large enterprise network and need to summarize routes at an Area Border Router (ABR). Which command is used to summarize OSPF routes at an ABR?
-
A
router ospf / area 0 range 10.0.0.0 255.255.0.0
✓ Correct
-
B
redistribute connected subnets
-
C
ospf summary-lsa suppress-fa
-
D
ip summary-address eigrp 100 10.0.0.0 255.255.0.0
Explanation
The 'area range' command is used at an ABR to summarize multiple OSPF networks into a single summary route. This reduces the size of the OSPF database in downstream areas.
A service provider needs to implement inter-AS MPLS VPN connectivity where customer traffic must traverse multiple autonomous systems. Which mechanism enables label distribution across AS boundaries?
-
A
LDP sessions established across AS boundaries with automatic label allocation
-
B
MP-eBGP between AS Border Routers with VPNv4 address family
✓ Correct
-
C
Static label mapping configured at each AS border
-
D
RSVP-TE path computation element (PCE) coordination across ASes
Explanation
MP-eBGP (Multiprotocol eBGP) between ASBRs using the VPNv4 address family enables label distribution and route exchange for MPLS VPN traffic across AS boundaries while maintaining route privacy.