nerdexam
CiscoCisco

200-301 · Question #1664

200-301 Question #1664: Real Exam Question with Answer & Explanation

This lab simulation requires configuring OSPF on router R2, including specific process ID, router ID, network advertisements with correct wildcard masks, and disabling R2's participation in DR/BDR elections on its connected interfaces within Area 0.

Submitted by yousef_jo· Mar 5, 2026IP Connectivity

Question

Lab Simulation 51 Please use the "Tasks" and "Topology" tabs to complete this lablet. Topology Tasks Refer to the topology. All physical cabling is in place. Routers 1 and 3 are accessible. Configure OSPF routing for the network and ensure R2 has joined Area 0 but does not participate in the DR/BDR process. Task 1 Configure OSPF on R2 and ensure R1 and R3 become neighbors. - use process ID 122 - use Lo0 IP as the router ID - advertise connected networks using an inverted subnet mask to match the exact prefixes used Task 2 Ensure R2 does not participate in the DR/BDR election Process. Answer: See the below explanation

Explanation

This lab simulation requires configuring OSPF on router R2, including specific process ID, router ID, network advertisements with correct wildcard masks, and disabling R2's participation in DR/BDR elections on its connected interfaces within Area 0.

Approach. The correct interaction would involve accessing the command-line interface (CLI) of Router 2 (R2) in the simulation environment and executing the following configuration commands, assuming a Cisco IOS-like syntax:

  1. Enter global configuration mode: configure terminal

  2. Start OSPF process with ID 122: router ospf 122

  3. Set the OSPF Router ID to R2's Loopback 0 IP: router-id 10.22.22.22

  4. Advertise R2's connected networks into Area 0 using inverted (wildcard) masks:

    • Loopback 0 (10.22.22.22/32): The wildcard mask for a /32 is 0.0.0.0. network 10.22.22.22 0.0.0.0 area 0
    • Link to R1 (10.0.122.0/30): The wildcard mask for a /30 is 0.0.0.3. network 10.0.122.0 0.0.0.3 area 0
    • Link to R3 (10.0.223.0/28): The wildcard mask for a /28 is 0.0.0.15. network 10.0.223.0 0.0.0.15 area 0
  5. Exit OSPF configuration mode: exit

  6. Configure R2's physical interfaces connected to R1 and R3 to not participate in DR/BDR elections:

    • This is achieved by setting the OSPF priority to 0 on those specific interfaces. (In a real lab, you would identify the correct interface names, e.g., using show ip interface brief or referring to the topology's implied interface connections. For this explanation, we'll assume GigabitEthernet0/1 connects to R1 and GigabitEthernet0/2 connects to R3.) interface GigabitEthernet0/1 ip ospf priority 0 exit interface GigabitEthernet0/2 ip ospf priority 0 exit

This sequence of commands correctly addresses all requirements: OSPF process ID, router ID, network advertisement with exact prefixes using wildcard masks, placement in Area 0, and ensuring R2 does not participate in DR/BDR elections by setting the OSPF priority to 0 on its relevant interfaces.

Common mistakes.

  • common_mistake. Common mistakes for this type of question include:
  1. Incorrect OSPF process ID: Using any number other than 122 for the router ospf command.
  2. Incorrect Router ID: Not explicitly setting router-id 10.22.22.22 or choosing an incorrect IP address for the router ID.
  3. Incorrect Wildcard Masks: Failing to calculate and use the correct inverted subnet (wildcard) mask for each network statement (e.g., using 0.0.0.255 instead of the precise 0.0.0.3 or 0.0.0.15).
  4. Missing Network Advertisements: Not advertising all connected OSPF-enabled networks, especially the loopback interface (crucial for router ID stability and reachability) or one of the physical links.
  5. Incorrect Area Assignment: Placing networks in an OSPF area other than area 0.
  6. Failing to disable DR/BDR participation: Not configuring ip ospf priority 0 on the specific physical interfaces of R2 connected to R1 and R3. Simply not configuring an interface for OSPF would prevent neighbor adjacency entirely, which is not the goal. While changing the OSPF network type to point-to-point could also avoid DR/BDR elections, priority 0 is the direct and most robust method to ensure non-participation on a multi-access segment while maintaining adjacency.
  7. Applying ip ospf priority 0 to the loopback interface: Loopback interfaces, by OSPF design, typically operate as point-to-point network types and do not participate in DR/BDR elections, making this configuration redundant and incorrect for the specified task.

Concept tested. The core technical concepts tested are OSPF fundamentals, including configuring OSPF processes, manually setting the OSPF Router ID, advertising networks using the network command with correct wildcard masks, understanding OSPF areas, and controlling the OSPF Designated Router (DR) and Backup Designated Router (BDR) election process by manipulating OSPF interface priorities.

Topics

#OSPF configuration#OSPF DR/BDR election#OSPF router ID#OSPF network advertisement

Community Discussion

No community discussion yet for this question.

Full 200-301 PracticeBrowse All 200-301 Questions