OSPF

OSPF Network Types Explained (Broadcast, Point-to-Point, NBMA)

OSPF has four network types: broadcast, point-to-point, NBMA, and point-to-multipoint. Each changes DR election and Hello behavior. Here is when to use which.
OSPF Network Types Explained (Broadcast, Point-to-Point, NBMA)
Table of Contents
In: OSPF

Broadcast (Default on Ethernet)

Characteristics:

  • DR/BDR election occurs
  • Multicast Hellos (224.0.0.5)
  • Assumes all routers can reach each other

Configuration:

interface gi0/0
 ip ospf network broadcast

Use when: Ethernet, all routers on same segment

Point-to-Point (Default on Serial)

Characteristics:

  • No DR/BDR (only 2 routers)
  • Multicast Hellos
  • Fast adjacency

Configuration:

interface gi0/0
 ip ospf network point-to-point

Use when: Direct links, WAN point-to-point

Common use: Change Ethernet to P2P to avoid DR election

NBMA (Non-Broadcast Multi-Access)

Characteristics:

  • DR/BDR election
  • Unicast Hellos (no multicast)
  • Requires neighbor statements

Configuration:

interface serial0/0
 ip ospf network non-broadcast
 ip ospf priority 100

router ospf 1
 neighbor 10.1.1.2

Use when: Frame Relay, X.25

Note: Rarely used in modern networks

Point-to-Multipoint

Characteristics:

  • No DR/BDR
  • Multicast Hellos
  • Treats as collection of P2P links

Configuration:

interface serial0/0
 ip ospf network point-to-multipoint

Use when: MPLS, Metro Ethernet partial mesh

Changing Network Type

Check current type:

R1# show ip ospf interface gi0/0 | include Network Type
  Process ID 1, Router ID 1.1.1.1, Network Type BROADCAST

Change to point-to-point:

interface gi0/0
 ip ospf network point-to-point

Verify:

R1# show ip ospf neighbor
Neighbor ID     Pri   State           Dead Time   Address         Interface
2.2.2.2         0     FULL/  -        00:00:35    10.1.1.2        Gi0/0

Note: FULL/ - (no DR/BDR on P2P)

Get the OSPF Field Reference - 9 pages, free

Everything you'd want to remember about OSPF on nine printable pages. State machine diagram, LSA types, troubleshooting decision tree, copy-paste IOS XE templates, and real lab captures. Free for PingLabz members - just sign up with your email.

Get the OSPF cheat-sheet

Summary

Broadcast — Ethernet default, DR/BDR
Point-to-Point — Serial default, no DR/BDR
NBMA — Frame Relay, unicast Hellos
Point-to-Multipoint — MPLS/Metro, no DR/BDR
Change with ip ospf network command

Next: Troubleshooting Area Mismatch (Article 19)

Internal Links:

Written by
More from Ping Labz
Great! You’ve successfully signed up.
Welcome back! You've successfully signed in.
You've successfully subscribed to Ping Labz.
Your link has expired.
Success! Check your email for magic link to sign-in.
Success! Your billing info has been updated.
Your billing was not updated.