Concept and Advantages:
Single-Area OSPF is a basic OSPF deployment where all routers belong to the same area, typically Area 0, also called the backbone area.
Simple to configure and manage.
Ideal for small to medium-sized networks.
Faster convergence due to fewer LSAs.
No need to deal with inter-area summarization.
✅ When and Where It Is Used
Campus networks.
Small branch office networks.
Test labs or classroom simulations.
Any network with fewer than 50 routers.
✅ Basic OSPF Terminology
Term
Description
Router ID (RID)
Unique 32-bit ID (often highest IP or manually set).
Area
Logical grouping of routers; all routers in single-area use same area ID.
Autonomous System (AS)
The entire OSPF domain under common administrative control.
OSPF Process ID
Locally significant ID to differentiate OSPF instances on a router.
✅ OSPF Network Types in Single Area
Type
Description
Example Use Case
Broadcast
Supports multiple routers; uses DR/BDR election
Ethernet LANs
Point-to-Point
One router directly connects to another
Serial or PPP links
NBMA
No broadcast support; manual neighbor setup
Frame Relay, ATM
✅ Enabling OSPF on Routers
Router(config)# router ospf 1
Router(config-router)# network 192.168.1.0 0.0.0.255 area 0
✅ Setting the Router ID
Manual:
Router(config-router)# router-id 1.1.1.1
Automatic (default): Highest loopback interface IP. If no loopback, highest active interface IP.