Tüm alıştırma soruları

1987 soru

Soru 1381Soru

An enterprise router receives an internal EIGRP route for the summary prefix 172.16.0.0/16 (Administrative Distance 90) and learns a specific path for subnet 172.16.10.0/24 via OSPF (Administrative Distance 110). A network engineer attempts to configure a backup floating static route for destination 172.16.10.0/24 using the command `ip route 172.16.10.0 255.255.255.0 192.168.1.2 100`. Under normal operating conditions while all links remain fully operational, which routing behavior will occur for traffic sent to host 172.16.10.50?

Cevabı ve açıklamayı göster

Cevap: The router routes traffic using the static route via next-hop 192.168.1.2 because its Administrative Distance of 100 is lower than the OSPF route's Administrative Distance of 110.

Cevap

Traffic to host 172.16.10.50 will be forwarded using the static route via next-hop 192.168.1.2 because its configured Administrative Distance of 100 is lower than OSPF's Administrative Distance of 110.
For identical prefix lengths (/24), the router compares Administrative Distance (AD) values to determine which route enters the routing table. OSPF has a default AD of 110. Since the configured static route has an AD of 100, which is lower than 110, Cisco IOS selects the static route as the active primary path. Consequently, traffic destined for 172.16.10.50 is immediately forwarded via next-hop 192.168.1.2.

Adım Adım Çözüm

1
Evaluate the prefix lengths available for the destination address 172.16.10.50.
Two prefix lengths match: /16 (EIGRP summary) and /24 (OSPF and static). The longest prefix match rule prioritizes the /24 subnet over the /16 summary.
Cisco routers always select the most specific route (longest subnet mask) first during packet forwarding lookup.
2
Compare the Administrative Distance (AD) values of competing routes for the 172.16.10.0/24 destination.
The OSPF route has a default AD of 110, while the configured static route has an AD of 100.
When multiple sources offer a route to the exact same prefix, Cisco IOS selects the route with the lowest Administrative Distance to install into the Routing Information Base (RIB).
3
Determine the operational status of the floating static route.
Because AD 100 < AD 110, the static route is active in the routing table immediately, preempting the primary OSPF route rather than acting as a floating backup.
A floating static route must have an AD set strictly higher than the primary route (e.g., AD 115 or higher) to remain dormant until the primary route fails.

Anahtar Kavram

Floating Static Route Administrative Distance Selection
Soru 1382Soru

A Cisco router receives an IPv4 packet destined for host 192.168.10.45192.168.10.45, which matches a static route configured strictly with a next-hop IP address (10.0.0.210.0.0.2) rather than an exit interface. Arrange the operational steps in the exact sequence the router executes to process, resolve, and forward this packet.

Öğeleri doğru sıraya koymak için sürükleyin

Cevabı ve açıklamayı göster

Cevap

The correct sequence of router operation steps is: Extract the destination IPv4 address (192.168.10.45192.168.10.45), search the IPv4 RIB using Longest Prefix Match, identify the next-hop IPv4 address (10.0.0.210.0.0.2), perform a recursive lookup to resolve the exit interface, and consult the ARP table to encapsulate and transmit the packet.
When a Cisco router receives an IPv4 packet, it extracts the destination IP address from the packet header (192.168.10.45192.168.10.45). Next, it evaluates its routing table (RIB) using Longest Prefix Match (LPM) to find the most specific route entry. Upon finding the static route, it identifies that the destination is reached via next-hop IP 10.0.0.210.0.0.2. Because the static route was configured without specifying an egress interface, the router must perform a recursive lookup in the routing table to determine which directly connected interface reaches 10.0.0.210.0.0.2. Once the exit interface is resolved, the router queries its ARP cache to map 10.0.0.210.0.0.2 to a Layer 2 MAC address, re-encapsulates the packet into a new Layer 2 frame, and transmits it out the interface.

Adım Adım Çözüm

1
Packet Ingress and Header Parsing
Destination IPv4 address 192.168.10.45192.168.10.45 is extracted.
The router needs the destination IPv4 address to perform a routing lookup.
2
RIB Query via Longest Prefix Match
The static route entry best matching 192.168.10.45192.168.10.45 is selected.
Routing decisions in Cisco IOS prioritize routes with the longest prefix length.
3
Next-Hop Extraction
Next-hop IPv4 address 10.0.0.210.0.0.2 is retrieved from the static route entry.
The router identifies that the traffic must be sent to 10.0.0.210.0.0.2 before reaching the final destination.
4
Recursive Route Resolution
Next-hop 10.0.0.210.0.0.2 is resolved to a directly connected exit interface.
Static routes configured solely with next-hop IP addresses require a second routing lookup to identify the physical outbound interface.
5
Layer 2 Resolution & Encapsulation
ARP table maps 10.0.0.210.0.0.2 to its destination MAC address, the packet is encapsulated into a Layer 2 frame, and forwarded.
The router must encapsulate the IP packet into a valid Ethernet frame using the exit interface and next-hop MAC address.

Anahtar Kavram

Recursive Static Route Lookup and Packet Forwarding Sequence
Soru 1383Soru

Router R1 connects an enterprise edge network to two service providers, ISP-A and ISP-B. The primary default path is dynamically learned from ISP-A via eBGP, which assigns an Administrative Distance (AD) of 2020. A network engineer needs to configure a floating static default route toward ISP-B through next-hop IP 198.51.100.1198.51.100.1 as a redundant backup path that will remain inactive in the routing table until the primary eBGP path fails. Which Cisco IOS command correctly achieves this objective?

Cevabı ve açıklamayı göster

Cevap: ip route 0.0.0.0 0.0.0.0 198.51.100.1 25

Cevap

The command 'ip route 0.0.0.0 0.0.0.0 198.51.100.1 25' correctly specifies a default route with an Administrative Distance higher than the primary eBGP AD of 20, ensuring it remains inactive until link failure.
A floating static route acts as a backup path and must remain inactive in the Routing Information Base (RIB) until the primary route fails. Because the primary route is dynamically learned via eBGP with an Administrative Distance (AD) of 20, the static backup route must be explicitly configured with an AD value strictly greater than 20. The option specifying 'ip route 0.0.0.0 0.0.0.0 198.51.100.1 25' correctly applies an AD of 25 to the default network 0.0.0.0/0, ensuring it functions strictly as a backup.

Adım Adım Çözüm

1
Identify the primary route source and its administrative distance.
Primary default route is learned via eBGP, which has an Administrative Distance of 2020.
Floating static routes must be assigned an Administrative Distance higher than the primary protocol's AD.
2
Determine the correct IPv4 default static route prefix and mask syntax.
Default route destination is represented as '0.0.0.0 0.0.0.0'.
A quad-zero prefix and mask match any destination network not explicitly matched by more specific routes.
3
Select the appropriate Administrative Distance for the backup floating route.
Specify an Administrative Distance greater than 2020 (e.g., 2525).
Setting the AD to 2525 keeps the static route hidden from the Routing Information Base (RIB) while the primary eBGP route (AD 2020) is active.

Anahtar Kavram

Floating Static Route Administrative Distance Selection
Soru 1384Soru

A network administrator initializes OSPFv2 on a Cisco router named R1. The router has the following interface states and IP addresses configured prior to starting the OSPF process:

- Interface GigabitEthernet0/0: IP address 172.16.10.1/24 (Up/Up)
- Interface GigabitEthernet0/1: IP address 192.168.1.254/24 (Up/Up)
- Interface Loopback0: IP address 10.1.1.1/32 (Up/Up)
- Interface Loopback1: IP address 10.2.2.1/32 (Administratively Down)

The administrator enables OSPF process 1 without explicitly setting a router ID. After OSPF initializes, the administrator enters `router-id 1.1.1.1` under the `router ospf 1` process configuration prompt and changes Loopback1 to the Up/Up state. No further commands are entered.

Which two statements correctly describe the resulting OSPF Router ID behavior on router R1? (Select two.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: The active OSPF Router ID remains 10.1.1.1 until the OSPF process is reset or restarted.; Executing the clear ip ospf process command is required to apply 1.1.1.1 as the active OSPF Router ID.

Cevap

The active OSPF Router ID remains 10.1.1.1 until the process is reset, and executing the clear ip ospf process command is required to apply 1.1.1.1 as the active OSPF Router ID.
When OSPF process 1 initializes without an explicit router-id configured, it evaluates active interfaces. Loopback1 is administratively down, so Loopback0 (10.1.1.1) is chosen as the active OSPF Router ID. OSPF Router ID election is non-preemptive, meaning subsequent configuration changes—such as configuring a manual router-id or enabling a higher IP loopback interface—will not change the active Router ID immediately. The statement indicating that the active Router ID remains 10.1.1.1 until reset and the statement indicating that executing 'clear ip ospf process' is required to activate 1.1.1.1 are both correct.

Adım Adım Çözüm

1
Determine initial Router ID election upon starting OSPF process 1.
Loopback0 (10.1.1.1/32) is selected because it is the highest IP among active (up/up) loopback interfaces. Loopback1 is administratively down and ignored.
OSPF Router ID tie-breaker order is: 1) Manual router-id command, 2) Highest IP among active loopbacks, 3) Highest IP among active physical interfaces.
2
Analyze the impact of issuing 'router-id 1.1.1.1' on a running OSPF process.
The command is saved to running-config, but the active Router ID remains 10.1.1.1.
OSPF Router ID selection in Cisco IOS is non-preemptive. Changes do not take effect dynamically while the process is actively running.
3
Analyze the impact of bringing Loopback1 (10.2.2.1) to Up/Up state.
The active Router ID is unaffected.
Interface state changes after initialization do not preempt an established active OSPF Router ID.
4
Identify the required action to activate the new router-id command.
Executing 'clear ip ospf process' in EXEC mode resets the OSPF process and applies 1.1.1.1.
Clearing the OSPF process forces re-evaluation, allowing the manually configured router-id command (highest priority) to take effect.

Anahtar Kavram

OSPFv2 Router ID Selection Precedence and Non-Preemptive Behavior
Soru 1385Soru

A network administrator needs to configure reliable static default routing on a Cisco IOS router by tying a primary static route to an IP SLA probes object, ensuring that the route is automatically withdrawn if the target becomes unreachable. Arrange the operational and CLI configuration steps in the correct chronological order from establishing the probe metric to static route activation.

Öğeleri doğru sıraya koymak için sürükleyin

Cevabı ve açıklamayı göster

Cevap

The correct chronological sequence is: (1) Define and schedule the IP SLA probe instance, (2) Create the object tracking process monitoring IP SLA reachability, (3) Configure the static route bound to the track object ID, and (4) Verify probe success leading to tracking state UP and RIB installation.
The correct sequence follows the mandatory dependency hierarchy in Cisco IOS: first, the IP SLA engine must be defined and scheduled to generate active probes; second, a tracking object must be constructed to translate probe results into a boolean UP/DOWN status; third, the IPv4 static route must be configured with the `track` keyword; and finally, once the tracking object confirms reachability (UP state), the router installs the static route into the routing table (RIB).

Adım Adım Çözüm

1
Configure and schedule the IP SLA ICMP Echo probe operation.
The router begins sending ICMP echo packets to target IP 203.0.113.1203.0.113.1.
Tracking objects require an active underlying probe instance to supply reachability status.
2
Bind the IP SLA operation to a tracking object ID using `track <id> ip sla <ops-number> reachability`.
Tracking object status changes to UP when SLA probe responses are received successfully.
Static routes cannot monitor IP SLA probes directly; they must reference a tracking object.
3
Apply the `ip route` global configuration command specifying the next-hop IP and the `track <id>` parameter.
The static route is created in conditional status linked to tracking object state.
Adding the `track` keyword instructs Cisco IOS to conditionally evaluate RIB placement.
4
Cisco IOS processes the UP status of the tracking object and writes the route to the routing table.
The default static route becomes active in the RIB with Administrative Distance 11.
RIB installation occurs only when the tracked object returns a valid UP reachability state.

Anahtar Kavram

IPv4 Static Route Object Tracking with IP SLA
Soru 1386Soru

A Cisco router initializes an OSPFv2 routing process without an explicitly configured router ID. The router currently has the following operational interfaces and statuses:

- Loopback 0: 10.254.254.1/24 (Administratively Down / Down)
- Loopback 1: 172.16.40.1/24 (Up / Up)
- Loopback 2: 172.16.100.1/24 (Up / Up)
- GigabitEthernet0/0: 192.168.10.1/24 (Up / Up)

What IP address will be selected as the OSPFv2 router ID for this router?

Cevabı ve açıklamayı göster

Cevap: 172.16.100.1

Cevap

172.16.100.1
When no manual router ID is configured, OSPFv2 selects the highest IPv4 address among active (up/up) loopback interfaces. Loopback 0 is administratively down, so it is ignored. Between the operational loopbacks (172.16.40.1 and 172.16.100.1), 172.16.100.1 is the highest IP address.

Adım Adım Çözüm

1
Check for an explicitly configured router ID under the OSPF process.
No manual 'router-id' command is configured.
Explicit configuration takes highest priority in OSPF router ID election.
2
Evaluate active (up/up) loopback interfaces.
Loopback 1 (172.16.40.1) and Loopback 2 (172.16.100.1) are active. Loopback 0 (10.254.254.1) is administratively down and ignored.
Inactive interfaces cannot be used for router ID election, and active loopbacks take priority over physical interfaces.
3
Select the highest IP address among the active loopback interfaces.
172.16.100.1 is selected because 172.16.100.1 is greater than 172.16.40.1.
OSPF selects the numerically highest IPv4 address among operational loopback interfaces.

Anahtar Kavram

OSPFv2 Router ID Election Order
Soru 1387Soru

Match each Cisco Lightweight Access Point (AP) operational mode to its correct functional behavior and network traffic handling characteristic.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Local Mode
FlexConnect Mode
Rogue Detector Mode
SE-Connect Mode

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Local Mode maps to central CAPWAP data encapsulation; FlexConnect Mode maps to local switching and branch WAN outage resilience; Rogue Detector Mode maps to wired network MAC tracking with disabled radios; SE-Connect Mode maps to dedicated RF spectrum analysis using external tools.
Each AP mode serves a distinct operational purpose in Cisco wireless networks. Local Mode performs central switching via CAPWAP. FlexConnect Mode provides local traffic switching and WAN fault tolerance for branch environments. Rogue Detector Mode disables wireless radios and monitors wired switch tables to detect rogue devices physically connected to the network. SE-Connect Mode dedicates AP radios to collecting RF spectrum data for external analysis software.

Adım Adım Çözüm

1
Evaluate Local Mode traffic handling
Local Mode uses CAPWAP data and control tunnels for all traffic back to the centralized WLC.
This is the default behavior in centralized Cisco wireless architectures.
2
Evaluate FlexConnect Mode traffic handling and resilience
FlexConnect allows local traffic switching at the branch switch port, supporting standalone operation when WLC WAN connectivity drops.
Designed specifically for remote branch offices to avoid routing local traffic across the WAN.
3
Evaluate Rogue Detector Mode functionality
Rogue Detector mode disables radios and monitors wired LAN broadcasts to match MAC addresses of rogue devices.
Focuses strictly on verifying if rogue wireless devices are connected to the physical wired infrastructure.
4
Evaluate SE-Connect Mode functionality
SE-Connect streams raw RF data to external spectrum analysis applications.
Used for dedicated spectrum troubleshooting rather than serving clients or sniffing 802.11 frames.

Anahtar Kavram

Cisco Lightweight AP Operational Modes and Traffic Encapsulation Mechanics
Soru 1388Soru

A network technician is connecting two legacy Cisco switches together using their 100BASE-TX FastEthernet ports. Auto-MDIX is manually disabled on both switch interfaces. Which unshielded twisted-pair (UTP) cable pinout specification is required to establish successful Layer 1 connectivity between these two switches?

Cevabı ve açıklamayı göster

Cevap: A crossover cable with transmit pins 1 and 2 on one connector wired to receive pins 3 and 6 on the opposite connector

Cevap

A crossover cable with transmit pins 1 and 2 on one connector wired to receive pins 3 and 6 on the opposite connector is required.
Switches default to MDI-X pinouts, transmitting on pins 3 and 6 and receiving on pins 1 and 2. For 100BASE-TX FastEthernet connections between two switches where Auto-MDIX is disabled, pins 1 and 2 on one end must connect to pins 3 and 6 on the other end to link transmit pairs directly to receive pairs.

Adım Adım Çözüm

1
Identify the device types being connected and their default interface pinout roles.
Switches use MDI-X pinouts by default, transmitting data on pins 3 and 6 and receiving data on pins 1 and 2.
Connecting identical device types (MDI-X to MDI-X) means both sides transmit on the same pair of pins by default.
2
Determine the impact of disabling Auto-MDIX on both switch interfaces.
Without Auto-MDIX, the interface hardware cannot dynamically swap its internal transmit/receive pin assignments.
Physical pin crossover must be provided by the cabling infrastructure when hardware auto-detection is inactive.
3
Select the proper UTP pinout for 100BASE-TX FastEthernet crossover cabling.
Pin 1 connects to Pin 3, and Pin 2 connects to Pin 6 across the cable connectors.
This bridges the transmit pair of one switch to the receive pair of the opposing switch and vice versa.

Anahtar Kavram

Ethernet UTP Cable Pinouts and Auto-MDIX Operations
Tahmini Süre:1m 0s
Soru 1389Soru

Refer to the following partial IPv4 routing table output from a Cisco router:

text
Gateway of last resort is 172.16.1.1 to network 0.0.0.0

D 10.50.0.0/16 [90/2170112] via 192.168.12.2, GigabitEthernet0/0
O 10.50.10.0/24 [110/20] via 192.168.23.2, GigabitEthernet0/1
S 10.50.10.16/28 [1/0] via 192.168.34.2
O 10.50.10.16/30 [110/10] via 192.168.45.2, GigabitEthernet0/3
S* 0.0.0.0/0 [1/0] via 172.16.1.1

The router receives a packet destined for IPv4 address 10.50.10.1810.50.10.18. Which two statements correctly describe how the router processes this packet? (Select two.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: The router forwards the packet to next-hop 192.168.45.2 out interface GigabitEthernet0/3 because 10.50.10.16/30 has the longest matching subnet mask.; Administrative distance is not compared because the matching routes have different prefix lengths.

Cevap

The router forwards the packet to next-hop 192.168.45.2 out GigabitEthernet0/3 because 10.50.10.16/30 provides the longest prefix match, and administrative distance is not evaluated across different prefix lengths.
When a router receives an IP packet, it compares the destination IP address against all entries in its routing table. The rule of Longest Prefix Match (LPM) states that the entry with the highest number of matching network bits (longest subnet mask) is selected. Here, 10.50.10.16/30 matches 30 bits of the address 10.50.10.18, making it the most specific match. Administrative Distance is only compared when identical destination prefixes are learned via different protocols; because prefix lengths differ here, AD is not evaluated.

Adım Adım Çözüm

1
Identify all matching routes for the destination IP address 10.50.10.18.
The address matches four specific prefixes: 10.50.0.0/16, 10.50.10.0/24, 10.50.10.16/28, and 10.50.10.16/30, as well as the default route 0.0.0.0/0.
Before making a forwarding decision, a router evaluates all active entries in the routing table to find candidate routes.
2
Determine the Longest Prefix Match (LPM) among the candidate routes.
The prefix 10.50.10.16/30 has a 30-bit mask length, which is longer than /28, /24, /16, or /0.
A Cisco router always selects the route with the most specific (longest) subnet mask first, regardless of administrative distance or metric.
3
Verify if Administrative Distance (AD) comparisons are necessary.
Administrative distance comparison is bypassed because the prefix lengths of the matching routes differ.
Administrative distance is only evaluated when a router learns about the exact same destination prefix and mask length from multiple routing sources.

Anahtar Kavram

Router Forwarding Decision Logic and Longest Prefix Match
Soru 1390Soru

An enterprise edge router receives a primary internal route for destination prefix 10.50.0.0/1610.50.0.0/16 via Internal EIGRP (Administrative Distance 90) and a primary default route for 0.0.0.0/00.0.0.0/0 via external BGP (eBGP, Administrative Distance 20). A network administrator needs to configure floating static routes to serve as automatic failover backups for both destinations. Which TWO configuration statements correctly specify the Administrative Distance requirements for these static routes to operate strictly as floating backups? (Select TWO.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: The floating static route backing up destination 10.50.0.0/1610.50.0.0/16 must be configured with an Administrative Distance value greater than 90.; The floating static route backing up destination 0.0.0.0/00.0.0.0/0 must be configured with an Administrative Distance value greater than 20.

Cevap

The floating static route for 10.50.0.0/16 must have an Administrative Distance greater than 90, and the floating static route for 0.0.0.0/0 must have an Administrative Distance greater than 20.
Cisco IOS routing table selection prioritizes routes with lower Administrative Distance (AD). For a static route to function as a 'floating' backup, its AD must be manually configured to a value higher than that of the active primary routing protocol (Internal EIGRP AD 90, eBGP AD 20). This ensures the static route remains untracked in the routing table until the primary route's AD source is lost.

Adım Adım Çözüm

1
Identify the default Administrative Distance (AD) of the primary routing protocols.
Internal EIGRP has a default AD of 90; external BGP (eBGP) has a default AD of 20.
Cisco IOS selects routes with the lowest Administrative Distance when multiple sources provide routes to the same destination.
2
Determine the required AD for floating static backup routes.
Backup route AD for EIGRP must be > 90 (e.g., 95). Backup route AD for eBGP must be > 20 (e.g., 25).
A floating static route must remain out of the routing table while the primary protocol is active, which requires the static route to have a higher numerical AD than the primary route.

Anahtar Kavram

Floating Static Route Administrative Distance Requirements
Soru 1391Soru

An enterprise Cisco router displays the following IPv4 routing table output:

text
Gateway of last resort is not set

10.0.0.0/8 is variably subnetted, 4 subnets, 4 masks
O 10.45.0.0/16 [110/65] via 192.168.1.1, 01:15:02, GigabitEthernet0/0
D 10.45.12.0/22 [90/2172416] via 192.168.2.1, 00:42:10, GigabitEthernet0/1
S 10.45.12.0/24 [1/0] via 192.168.3.1
C 10.45.12.128/25 is directly connected, GigabitEthernet0/2

Which two statements correctly describe how the router processes traffic destined to 10.45.12.15010.45.12.150 and interpret its routing table components? (Select two.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: The router forwards the packet out interface GigabitEthernet0/2 because 10.45.12.128/25 provides the longest prefix match for destination 10.45.12.150.; The bracketed numbers [110/65] in the OSPF route entry represent an Administrative Distance of 110 and a route Metric of 65.

Cevap

The router egresses traffic out GigabitEthernet0/2 based on the longest prefix match rule (10.45.12.128/25), and the notation [110/65] defines an Administrative Distance of 110 and a Metric of 65.
Traffic destined to 10.45.12.150 matches multiple entries in the routing table, but 10.45.12.128/25 has the longest prefix length (25 bits), making GigabitEthernet0/2 the elected forwarding interface. Additionally, standard Cisco routing table syntax formats protocol entries as [Administrative Distance / Metric], meaning [110/65] indicates an AD of 110 and an OSPF metric of 65.

Adım Adım Çözüm

1
Analyze candidate destination matching prefixes for destination IP 10.45.12.150.
The destination address 10.45.12.150 matches 10.45.0.0/16, 10.45.12.0/22, 10.45.12.0/24, and 10.45.12.128/25 (range 10.45.12.128 to 10.45.12.255).
All four subnet ranges encompass IP address 10.45.12.150.
2
Apply the Longest Prefix Match (LPM) forwarding rule.
Prefix length /25 is longer (more specific) than /24, /22, and /16. Thus, route C (10.45.12.128/25) is chosen, forwarding traffic directly out GigabitEthernet0/2.
Routers always prioritize prefix length over Administrative Distance and metric when determining the forwarding path.
3
Decode the standard Cisco routing table notation components.
For entry 'O 10.45.0.0/16 [110/65]', the first value inside brackets represents Administrative Distance (110) and the second value represents Metric/Cost (65).
This is the mandatory syntax used by Cisco IOS/IOS-XE to display route trustworthiness and path cost.

Anahtar Kavram

Routing Table Components and Longest Prefix Match Decision Logic
Soru 1392Soru

A network administrator is configuring a backup floating static route to reach an external corporate subnet 172.31.50.0/24. The primary path to this destination is learned dynamically via External BGP (eBGP). During testing while the primary eBGP connection is fully operational, the administrator observes that traffic toward 172.31.50.0/24 is being forwarded across the backup static path rather than the primary link. Which static route command entry in the router configuration caused this improper failover behavior?

Cevabı ve açıklamayı göster

Cevap: ip route 172.31.50.0 255.255.255.0 192.168.12.2 15

Cevap

The command 'ip route 172.31.50.0 255.255.255.0 192.168.12.2 15' sets the administrative distance lower than eBGP, causing it to preempt the primary route.
Cisco IOS assigns default Administrative Distance values to evaluate route trustworthiness. External BGP (eBGP) routes carry a default AD of 20. To create a floating static backup route for an eBGP path, the trailing administrative distance argument in the 'ip route' command must be set higher than 20. Specifying an administrative distance of 15 makes the static route more preferred than the eBGP route (15 < 20), causing the router to immediately install the static path into the routing table even when the eBGP link is active.

Adım Adım Çözüm

1
Identify the Administrative Distance (AD) of the primary routing protocol.
External BGP (eBGP) has a Cisco default Administrative Distance of 20.
Administrative Distance determines route trustworthiness when multiple sources advertise the exact same network prefix.
2
Evaluate the requirement for a floating static route.
A floating static route must have an AD strictly greater than the primary route's AD (greater than 20) so it stays inactive until the primary route drops out of the routing table.
The router installs the route with the lowest AD into the IP routing table.
3
Analyze the configured static route entries to identify why the backup route preempted the primary path.
Configuring an administrative distance of 15 gives the static route a lower AD than eBGP (15 < 20).
Because 15 is lower than 20, the router selects the static route over the operational eBGP path.

Anahtar Kavram

Floating Static Route Administrative Distance relative to eBGP
Tahmini Süre:1m 30s
Soru 1393Soru

A network administrator needs to create a new enterprise wireless network on a Cisco Wireless LAN Controller (WLC) using the GUI. The network must use WPA2-Enterprise with 802.1X authentication via an external RADIUS server and be mapped to an existing dynamic interface. Place the configuration steps in the correct sequential order from first to last.

Öğeleri doğru sıraya koymak için sürükleyin

Cevabı ve açıklamayı göster

Cevap

The correct sequence to configure the enterprise WLAN via the Cisco WLC GUI is: 1) Create the new WLAN profile and SSID, 2) Map the WLAN to the dynamic interface on the General tab, 3) Select WPA2 and 802.1X key management on the Security > Layer 2 tab, 4) Choose the RADIUS server under the Security > AAA Servers tab, and 5) Select the Status checkbox on the General tab and click Apply.
The proper administrative workflow in the Cisco WLC GUI requires creating the WLAN profile first, mapping the Layer 2/3 dynamic interface on the General tab, configuring Layer 2 security for WPA2 802.1X authentication, defining the RADIUS authentication server under Security > AAA Servers, and finally checking the Status checkbox on the General tab and applying the settings.

Adım Adım Çözüm

1
Initiate new WLAN creation.
Access the WLAN creation screen to assign the Profile Name and SSID.
Creating the basic WLAN profile creates the configuration object in the controller database.
2
Assign the dynamic interface on the General tab.
Associates wireless client connections with the specified IP subnet and VLAN.
Interface binding ensures wireless clients receive network connectivity on the appropriate subnet upon association.
3
Configure Layer 2 security policies under Security > Layer 2.
Enables WPA2-Enterprise with 802.1X Key Management.
Selecting 802.1X key management defines that client authentication relies on EAP and external AAA infrastructure.
4
Assign RADIUS server settings under Security > AAA Servers.
Links the WLAN to the active RADIUS server for identity verification.
Selecting the active RADIUS authentication server directs 802.1X authentication requests to the network access server.
5
Enable the WLAN status on the General tab and apply changes.
Activates the WLAN across connected Access Points.
Cisco WLCs leave newly created WLANs disabled by default to prevent broadcast before security and routing configurations are complete.

Anahtar Kavram

WLC GUI WLAN Configuration Sequence
Tahmini Süre:1m 30s
Soru 1394Soru

A network engineer is configuring OSPFv2 between two directly connected routers over a GigabitEthernet link. Although physical link connectivity is established, OSPF neighbor discovery fails and no adjacency is formed. Which two interface-level parameters must match on both routers' interconnecting interfaces for an OSPFv2 neighbor relationship to establish? (Select two.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: OSPF Area ID; OSPF Hello and Dead timer intervals

Cevap

The OSPF Area ID and the OSPF Hello and Dead timer intervals must match on both interconnecting interfaces.
For two routers to establish an OSPFv2 neighbor adjacency, specific fields exchanged in Hello packets must match. These include the OSPF Area ID, Hello and Dead timer intervals, subnet mask, and authentication parameters. If either the Area ID or the Hello/Dead timers differ, Hello packets are discarded and the routers remain in a DOWN or INIT state.

Adım Adım Çözüm

1
Analyze OSPF Hello packet fields required for neighbor establishment
Identify parameters carried in Hello packets that must agree between neighboring routers.
Routers drop incoming Hello packets if key fields in the Hello header do not match local interface configurations.
2
Verify matching requirements
Confirm that Area ID, Hello timer, Dead timer, Subnet Mask, and Authentication fields must match.
These mandatory matching fields ensure routers belong to the same logical area and communicate on compatible schedules.
3
Evaluate local vs global OSPF parameters
Process ID and Router Priority do not need to match.
Process ID is purely local to the router's IOS memory, and Router Priority determines DR/BDR election roles rather than neighbor eligibility.

Anahtar Kavram

OSPFv2 Mandatory Hello Packet Neighbor Matching Parameters
Tahmini Süre:1m 15s
Soru 1395Soru

A branch router receives an external EIGRP route (EIGRP EX, Administrative Distance of 170) for the corporate subnet 10.200.0.0/1610.200.0.0/16 over a primary MPLS link. A network administrator must configure a floating static backup route for 10.200.0.0/1610.200.0.0/16 using the secondary ISP next-hop address 192.168.1.2192.168.1.2. The backup path must only be installed in the IPv4 routing table if the primary EIGRP EX path becomes unavailable. Which command must be configured on the router to achieve this requirement?

Cevabı ve açıklamayı göster

Cevap: ip route 10.200.0.0 255.255.0.0 192.168.1.2 175

Cevap

The command 'ip route 10.200.0.0 255.255.0.0 192.168.1.2 175' correctly configures the floating static route.
A floating static route acts as a backup path and must have an Administrative Distance (AD) strictly higher than the primary route currently in use. Because External EIGRP routes have a default AD of 170, the backup static route must be configured with an AD greater than 170 (such as 175). Furthermore, Cisco IOS static route syntax requires the destination network mask to be specified as a standard subnet mask (255.255.0.0) rather than a wildcard mask.

Adım Adım Çözüm

1
Identify the primary route's Administrative Distance (AD).
External EIGRP (EIGRP EX) routes have a default Administrative Distance of 170.
Floating static routes must have an AD higher than the primary route's AD to remain inactive in the routing table until failure occurs.
2
Determine the required Administrative Distance for the floating static route.
The static route AD must be strictly greater than 170 (e.g., 175).
Cisco IOS selects routes with lower AD values first. A higher AD keeps the route out of the routing table while the primary path is active.
3
Verify Cisco IOS IPv4 static route syntax requirements.
The proper command structure is 'ip route <destination-prefix> <subnet-mask> <next-hop-ip> [distance]'.
Static IPv4 routing in Cisco IOS requires a standard dotted-decimal subnet mask (255.255.0.0 for /16), not an OSPF/ACL wildcard mask.

Anahtar Kavram

Floating static route configuration requiring higher Administrative Distance than dynamic primary routes
Soru 1396Soru

Two Cisco routers, R1 and R2, are connected via a dedicated serial link configured for OSPFv2 Area 0. A network engineer runs the command `show ip ospf neighbor` on R1 and notices that the neighbor relationship with R2 remains persistently stuck in the INIT state. Which condition is the most likely cause of this neighbor state?

Cevabı ve açıklamayı göster

Cevap: R2 is receiving R1's OSPF Hello packets, but R2 is rejecting them due to a mismatched Hello/Dead interval and omitting R1's Router ID from its own Hello packets.

Cevap

R2 is receiving R1's OSPF Hello packets, but R2 is rejecting them due to a mismatched Hello/Dead interval and omitting R1's Router ID from its own Hello packets.
The correct answer identifies that the INIT state occurs when a local router receives a Hello packet from a peer, but the peer does not list the local router's Router ID in its Hello neighbor field. This typically happens when the peer drops the local router's Hello packets due to mismatched Hello/Dead timers or Area IDs.

Adım Adım Çözüm

1
Analyze what the OSPF INIT state signifies.
The INIT state means a router has received an OSPF Hello packet from a neighbor, but the receiving router's own Router ID is NOT listed in the neighbor field of that received Hello packet.
OSPF requires bidirectional communication. A router only moves past INIT to 2-WAY once it verifies that its peer acknowledges seeing it by listing its Router ID in outbound Hellos.
2
Determine why R2 would omit R1's Router ID from its Hello packets.
R2 is dropping R1's incoming Hello packets because of mismatched parameters (such as Hello/Dead intervals, Area ID, or authentication passwords).
Because R2 discards R1's incoming Hellos, R2 never processes R1 as a valid neighbor and does not include R1's Router ID in the neighbor list of its own transmitted Hello packets.
3
Evaluate the incorrect options against OSPF state mechanics.
MTU mismatches freeze adjacencies at ExStart/Exchange; priority 0 affects DR/BDR election eligibility; blocking inbound Hellos at R1 keeps the state DOWN.
Only an asymmetric drop of Hello packets by the peer router explains why R1 hears R2 (moving R1 to INIT) while R2 fails to acknowledge R1.

Anahtar Kavram

OSPFv2 Neighbor States and Hello Parameter Verification
Tahmini Süre:2m 0s
Soru 1397Soru

A network administrator is configuring a static backup route to take over if an existing primary route learned via OSPF (Administrative Distance 110) fails. Which TWO statements describe requirements for this floating static route to function correctly as a backup?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: The static route must be configured with an administrative distance value greater than 110.; The primary OSPF route must be removed from the routing table before the floating static route can be installed.

Cevap

The static route must be configured with an administrative distance value greater than 110, and the primary OSPF route must be removed from the routing table before the floating static route can be installed.
A floating static route serves as a backup path by configuring an administrative distance higher than that of the primary route (greater than 110 for an OSPF primary route). Because routers prefer paths with lower administrative distance, the floating static route will only be installed into the routing table after the primary route fails and is removed.

Adım Adım Çözüm

1
Evaluate the Administrative Distance requirement for backup routes.
Because OSPF has a default Administrative Distance (AD) of 110, a floating static route intended as a backup must be configured with an AD higher than 110 (such as 120).
Cisco IOS selects the route with the lowest AD value to place into the routing table.
2
Determine the condition under which the floating static route becomes active.
The floating static route remains inactive and out of the routing table until the primary OSPF route is lost or removed.
As long as the primary route with a lower AD exists in the routing table, higher-AD routes are kept in reserve.

Anahtar Kavram

Floating static routes use a higher Administrative Distance than the primary route protocol so they only enter the routing table when the primary route fails.
Soru 1398Soru

An enterprise switch, Switch-A, is connected to neighboring switches via 802.1Q802.1\text{Q} trunk links running Rapid PVST+. An administrator executes the command `spanning-tree vlan 10 priority 24576` on Switch-A, while all other switches in the network retain default STP settings. Which two statements correctly describe the Rapid PVST+ operations and port roles for VLAN 1010 on Switch-A?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Switch-A advertises a total Bridge ID priority of 2458624586 for VLAN 1010 by combining the configured priority with the System ID Extension.; All active non-edge switch ports on Switch-A participating in VLAN 1010 assume the Designated Port role in the Forwarding state.

Cevap

Switch-A advertises a total Bridge ID priority of 2458624586 for VLAN 1010 by combining the configured priority with the System ID Extension, and all active non-edge switch ports on Switch-A participating in VLAN 1010 assume the Designated Port role in the Forwarding state.
Rapid PVST+ calculates the total bridge priority by adding the 12-bit System ID Extension (VLAN ID 1010) to the 4-bit configured priority value (2457624576), producing an advertised priority of 2458624586. Because default switch priority is 32768+10=3277832768 + 10 = 32778, Switch-A wins the Root Bridge election for VLAN 1010. On the Root Bridge, every active forwarding port is assigned the Designated Port role.

Adım Adım Çözüm

1
Calculate the total Bridge ID priority for Switch-A in VLAN 1010.
Configured base priority (2457624576) + System ID Extension (1010) = 2458624586.
Rapid PVST+ appends the 12-bit VLAN ID (System ID Extension) to the 4-bit priority field (in steps of 40964096) to form the 16-bit Bridge Priority.
2
Determine Root Bridge election outcome for VLAN 1010.
Switch-A has the lowest Bridge ID (24586<3277824586 < 32778) and becomes the Root Bridge for VLAN 1010.
Spanning tree elects the switch with the lowest numeric Bridge ID (Priority + MAC address) as the Root Bridge.
3
Determine port roles for Switch-A as the Root Bridge.
All active interfaces on Switch-A for VLAN 1010 become Designated Ports in the Forwarding state.
The Root Bridge is the central point of the spanning tree topology; none of its ports point toward another root, so it has no Root Ports, and all its active ports serve down-tree segments as Designated Ports.

Anahtar Kavram

Rapid PVST+ Bridge Priority Calculation and Root Bridge Port Roles
Soru 1399Soru

When establishing an OSPFv2 neighbor relationship between two directly connected router interfaces, certain interface parameters must be identical. Which two parameters must match for a neighbor adjacency to form successfully? (Select two.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: OSPF Area ID; Hello and Dead timer intervals

Cevap

The OSPF Area ID and the Hello and Dead timer intervals must match between directly connected router interfaces to form an OSPFv2 neighbor adjacency.
For two Cisco routers to successfully form an OSPFv2 neighbor adjacency, specific fields exchanged in Hello packets must match. Both connected interfaces must be configured within the same OSPF Area ID and must share identical Hello and Dead timer intervals.

Adım Adım Çözüm

1
Identify OSPFv2 Hello packet requirements for neighbor adjacency formation.
OSPF Hello packets verify essential parameters prior to forming a neighbor relationship.
Mismatched core parameters in Hello packets cause neighbor discovery to fail.
2
Analyze each candidate parameter against OSPFv2 neighbor requirements.
Area ID and Hello/Dead timers must match. Process ID is locally significant, and Router IDs must be unique rather than matching.
Process IDs do not traverse Hello packets, and duplicate Router IDs conflict within the LSDB.

Anahtar Kavram

OSPFv2 Neighbor Adjacency Requirements
Tahmini Süre:1m 0s
Soru 1400Soru

A network engineer configures an OSPFv2 routing process on router R1. At startup, the router has two operational interfaces: Loopback0 configured with IP address 10.1.1.1/3210.1.1.1/32 and GigabitEthernet0/0 configured with IP address 172.16.1.1/24172.16.1.1/24. The OSPF process initializes and elects 10.1.1.110.1.1.1 as its Router ID. Later, the engineer configures a new interface, Loopback1, with IP address 10.200.1.1/3210.200.1.1/32. Upon issuing the `show ip ospf` command, the engineer observes that the active OSPF Router ID remains 10.1.1.110.1.1.1. Which action must be taken for R1 to begin using 10.200.1.110.200.1.1 as its active OSPF Router ID?

Cevabı ve açıklamayı göster

Cevap: Execute the clear ip ospf process command in privileged EXEC mode.

Cevap

The network engineer must execute the 'clear ip ospf process' command in privileged EXEC mode to restart the OSPF routing process and trigger a re-election of the Router ID.
OSPF Router ID election is non-preemptive. Once the OSPF process selects a Router ID during initialization, it retains that ID even if a new interface with a higher IP address becomes active. To force the router to evaluate interfaces again and select the newly configured higher loopback address, the administrator must reset the routing process using the privileged EXEC command 'clear ip ospf process'.

Adım Adım Çözüm

1
Understand OSPF Router ID selection priority.
OSPF Router ID is selected based on: 1) Manually configured 'router-id' command, 2) Highest IP address among active loopback interfaces, 3) Highest IP address among active non-loopback interfaces.
Loopback interfaces are preferred over physical interfaces due to their stability.
2
Analyze the non-preemptive nature of the OSPF Router ID.
Once an OSPF Router ID is elected and the OSPF process is running, adding a new interface with a higher IP address will NOT dynamically change the active Router ID.
Changing the Router ID dynamically would reset all neighbor adjacencies, so OSPF maintains stability by keeping the current Router ID.
3
Determine the required action to apply the new Router ID.
To force OSPF to adopt the new highest active loopback IP address (10.200.1.1), the OSPF process must be restarted using 'clear ip ospf process' or by reloading the device.
Restarting the OSPF process re-initializes election parameters and picks the new highest loopback address.

Anahtar Kavram

OSPFv2 Router ID Election and Non-Preemptive Behavior
ÖncekiSayfa 70 / 100Sonraki
Tüm alıştırma soruları — Cisco CCNA | Examkin