nerdexam
Cisco

200-301 · Question #1554

Lab Simulation 35 Guidelines This is a lab item in which tasks will be performed on virtual devices. - Refer to the Tasks tab to view the tasks for this lab item. - Refer to the Topology lab to access

This lab simulation requires configuring OSPF on Router R1, setting a specific process ID and router ID, activating OSPF on its connected interfaces in Area 0 without using network statements, and ensuring R1 always becomes the Designated Router.

Submitted by ahmad_uae· Mar 5, 2026IP Connectivity

Question

Lab Simulation 35 Guidelines This is a lab item in which tasks will be performed on virtual devices. - Refer to the Tasks tab to view the tasks for this lab item. - Refer to the Topology lab to access the device console(s) and perform the tasks. - Console access is available for all required devices by clicking the device icon or using the tab(s) above the console window. - All necessary preconfigurations have been applied. - Do not change the enable password or hostname for any device. - Save your configurations to NVRAM before moving to the next item. - Click Next at the bottom of the screen to submit this lab and move to the next question. - When Next is clicked, the lab closes and cannot be reopened. Topology Tasks Refer to the topology. All physical cabling is in place. Routers 2 and 3 are inaccessible. Configure OSPF routing for the network and ensure R1 has joined Area 0 without using network statements. Task 1 - Configure OSPF on R1 with a process ID and router- ID only as follows: o use process ID 33 o use EO/1 IP as the router ID Task 2 - Configure R1 to establish neighbor adjacencies with R2 and R3. The network statement under the OSPF process must not be used. - Configure R1 to always become the DR for Area 0 Answer: R1# configure terminal R1(config)# interface e0/1 R1(config-if)# ip address 10.0.22.1 255.255.255.252 R1(config-if)# exit R1(config)# interface e0/2 R1(config-if)# ip address 10.0.33.1 255.255.255.252 R1(config-if)# exit R1(config)# interface e0/0 R1(config-if)# ip address 10.0.233.1 255.255.255.240 R1(config-if)# exit R1(config)# router ospf 33 R1(config-router)# router-id 10.0.22.1 R1(config-router)# interface e0/0 R1(config-if)# ip ospf 33 area 0 R1(config-if)# ip ospf priority 255 R1(config-if)# exit R1(config-router)# interface e0/1 R1(config-if)# ip ospf 33 area 0 R1(config-if)# ip ospf priority 255 R1(config-if)# exit R1(config-router)# interface e0/2 R1(config-if)# ip ospf 33 area 0 R1(config-if)# ip ospf priority 255 R1(config-if)# exit

Exhibits

200-301 question #1554 exhibit 1
200-301 question #1554 exhibit 2

Explanation

This lab simulation requires configuring OSPF on Router R1, setting a specific process ID and router ID, activating OSPF on its connected interfaces in Area 0 without using network statements, and ensuring R1 always becomes the Designated Router.

Approach. The correct interaction involves typing a sequence of Cisco IOS commands into the R1 console to meet the specified tasks. The IP addresses for e0/1 and e0/2 are provided in the partial answer snippet and should be considered configured. The interface e0/0 line in the snippet is a red herring and should be ignored or overwritten, as R1 does not have such an interface connected in the relevant OSPF topology.

Here's the sequence of commands to accomplish the tasks:

  1. Enter global configuration mode: configure terminal

  2. Configure the OSPF process and Router ID (Task 1): router ospf 33 router-id 10.0.22.1 (E0/1's IP is 10.0.22.1) exit

  3. Configure OSPF on interfaces e0/1 and e0/2, activate in Area 0 without network statements, and set DR priority (Tasks 2 & 3): interface e0/1 ip ospf 33 area 0 (Activates OSPF on the interface in Area 0, satisfying 'no network statements' requirement) ip ospf priority 255 (Ensures R1 becomes DR, as 255 is the highest priority) exit

    interface e0/2 ip ospf 33 area 0 ip ospf priority 255 exit

  4. Exit configuration mode and save: end write memory or copy running-config startup-config

This sequence correctly sets the OSPF process ID to 33, explicitly assigns the router ID as the E0/1 IP, includes both connected interfaces (e0/1 and e0/2) in OSPF Area 0 using interface-level commands, and ensures R1 has the highest OSPF priority (255) on both segments to always become the Designated Router, assuming the default OSPF network type (broadcast) applies, which supports DR/BDR election.

Common mistakes.

  • common_mistake. Common mistakes include using network statements under the OSPF process, which is explicitly forbidden by Task 2. Failing to configure ip ospf priority 255 on interfaces e0/1 and e0/2 would mean R1 might not become the DR (default priority is 1), failing Task 3. Using an incorrect OSPF process ID or Area ID (other than 33 and 0, respectively) would prevent proper adjacency formation. Not activating OSPF on both relevant interfaces (e0/1 and e0/2) or trying to configure interface e0/0 (a red herring based on the topology) would lead to incomplete or incorrect OSPF setup. Another mistake is setting the OSPF network type to 'point-to-point' on the interfaces, as this would disable DR/BDR election, contradicting the requirement for R1 to always be the DR.

Concept tested. OSPF (Open Shortest Path First) configuration fundamentals, including process ID, router ID, interface-level OSPF activation (ip ospf area), and OSPF Designated Router (DR) election mechanics using ip ospf priority on multi-access (or broadcast by default) segments. It also tests the ability to interpret network topologies and follow specific constraints (e.g., 'no network statements').

Reference. null

Topics

#OSPF configuration#OSPF router ID#OSPF process ID#OSPF interface assignment

Community Discussion

No community discussion yet for this question.

Full 200-301 Practice