Skip to content
1 min read 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)

Broadcast (Default on Ethernet)

Characteristics:

Configuration:

interface gi0/0
 ip ospf network broadcast

Use when: Ethernet, all routers on same segment

Point-to-Point (Default on Serial)

Characteristics:

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:

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:

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: