nerdexam
Cisco

350-401 · Question #996

Lab Simulation 9 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 tab to access

OSPF Lab Simulation - Detailed Explanation --- Overall Goal This lab configures OSPF using interface-level commands instead of the traditional network statement. It also optimizes OSPF behavior on Ethernet links by eliminating unnecessary DR/BDR elections and suppressing extra /3

Submitted by joshua94· Mar 6, 2026Infrastructure

Question

Lab Simulation 9 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 tab 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 Configure OSPF on all three routers according to the topology to achieve these goals: 1. Configure OSPF without using the "network" statement under the "router ospf" configuration section. 2. Ensure that all networks are advertised between the routers. 3. Configure a single command under each Ethernet interface to prevent OSPF neighbors from participating in a DR/BDR election and ensure that no extra host routes are generated. Answer: Task 1. Configure OSPF without using the "network" statement under the "router ospf" configuration section. R1,R2(config)#interface e0/0 R1,R2(config-if)#ip ospf 1 area 0 R1,R2,R3(config-if)#interface lo0 R1,R2,R3(config-if)#ip ospf 1 area 0 More on R2, R3: R2,R3(config)#interface e0/1 R2,R3(config-if)#ip ospf 1 area 0 Verification R1,R2#show ip ospf neighbor Task 2. Ensure that all networks are advertised between the routers. R1,R2,R3#show ip route (or "show ip route ospf" if possible) to check all advertised routes. Task 3. Configure a single command under each Ethernet interface to prevent OSPF neighbors from participating in a DR/BDR election and ensure that no extra host routes are generated. R1,R2(config)#interface e0/0 R1,R2(config-if)#ip ospf network point-to-point More on R2, R3: R2,R3(config)#interface e0/1 R2,R3(config-if)#ip ospf network point-to-point Note: Setting OSPF to point-to-point mode results in advertised routes containing the actual subnet mask instead of the default behavior of advertising /32 for a loopback interface. Don't forget to save the configuration R1,R2,R3#copy running-config startup-config

Exhibits

350-401 question #996 exhibit 1
350-401 question #996 exhibit 2

Explanation

OSPF Lab Simulation - Detailed Explanation


Overall Goal

This lab configures OSPF using interface-level commands instead of the traditional network statement. It also optimizes OSPF behavior on Ethernet links by eliminating unnecessary DR/BDR elections and suppressing extra /32 host routes from loopbacks.

The topology is a chain: R1 - (e0/0)/(e0/0) - R2 - (e0/1)/(e0/1) - R3, each router also having a loopback (lo0).


Why This Approach Is Correct

Traditional OSPF uses network x.x.x.x wildcard area X under router ospf. The modern alternative is to enable OSPF directly on the interface with ip ospf <process-id> area <area>. This is cleaner, more explicit, and avoids wildcard mask errors.


Step-by-Step Reasoning

Steps 1-3: Enable OSPF on each interface with ip ospf 1 area 0

This replaces the network statement entirely. Each interface is individually told to participate in OSPF process 1, area 0. The router automatically advertises that interface's subnet into OSPF.

  • R1's e0/0 connects to R2 -> both must have OSPF enabled on that link to form adjacency
  • R2's e0/1 connects to R3 -> same reason
  • All lo0 interfaces must be included so loopback networks are advertised

If skipped: An interface without ip ospf 1 area 0 won't advertise its subnet and won't form neighbors across that link - other routers will have no route to that network.


Step 4: show ip ospf neighbor

Verifies that neighbor adjacencies reached FULL state. If you see neighbors stuck in INIT or 2WAY, there's a mismatch (area, process ID, hello/dead timers, or authentication).

If skipped: You might proceed assuming OSPF works, only to find routes missing later with no clear cause.


Step 5: show ip route ospf

Confirms all subnets (Ethernet links + loopbacks) appear in the routing table as OSPF routes (marked O). This validates Task 2 - all networks are being exchanged.

If skipped: You can't confirm Task 2 is satisfied and may submit an incomplete configuration.


Steps 6-7: ip ospf network point-to-point on each Ethernet interface

This single command solves two problems simultaneously:

ProblemDefault BehaviorPoint-to-Point Fix
DR/BDR electionEthernet = broadcast type -> triggers DR/BDR electionP2P type -> no election, no DR/BDR overhead
Loopback host routesLoopbacks advertised as /32 by defaultP2P changes how OSPF reports connected subnets, advertising the actual subnet mask

The question asks for a single command that does both - ip ospf network point-to-point is that command.

If skipped: DR/BDR elections still happen (wasted overhead, slower convergence on failures), and loopback interfaces advertise as /32 host routes rather than their configured subnet mask, which can confuse routing.

If applied to loopbacks instead of Ethernet: Loopbacks are already point-to-point by nature. The command belongs on the Ethernet interfaces where the broadcast network type is the default.


Step 8: copy running-config startup-config

Saves config to NVRAM. Without this, a reload wipes everything. The lab explicitly requires this before clicking Next.

If skipped: Your configuration is lost and the lab scores zero.


Order Dependency

Steps 6-7 can technically be done before or after steps 1-3, but logically you should enable OSPF first, verify adjacencies, then tune network type. If you set point-to-point before enabling OSPF on an interface, it's harmless but you can't verify its effect until OSPF is running.


Memory Tip

"Interface IN, Point-to-Point OUT"

  • Put OSPF IN at the interface level: ip ospf 1 area 0
  • Take DR/BDR and /32 routes OUT: ip ospf network point-to-point
  • Always save OUT before you leave: copy run start

The key insight: on a two-router link, there's no need for a DR/BDR (those exist to reduce adjacency overhead on multi-access networks with many routers). Point-to-point is always the right choice for a link with exactly two endpoints.

Topics

#OSPF Configuration#Routing Protocols#OSPF Network Types#DR/BDR

Community Discussion

No community discussion yet for this question.

Full 350-401 Practice