OSPF · · 1 min read

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

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)


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:

Read next

© 2025 Ping Labz. All rights reserved.