The Misconception: Many students believe proactive protocols like DSDV always generate more overhead than reactive protocols like DSR, making reactive protocols universally better for mobile networks.
The Reality: Overhead depends on traffic patterns, not just protocol type. In high-traffic scenarios, DSDV can have lower total overhead than DSR.
Real-World Data (Military MANET Deployment, 2019):
Scenario: 30-node tactical network, 500m×500m area, random waypoint mobility
| Low Traffic (5 packets/min) |
12,000 control packets/hour |
3,200 control packets/hour |
DSR (73% less) |
| High Traffic (300 packets/min) |
12,000 control packets/hour |
47,000 control packets/hour |
DSDV (75% less!) |
| Battery life (low traffic) |
14.2 hours |
18.6 hours |
DSR (+31%) |
| Battery life (high traffic) |
14.2 hours |
8.3 hours |
DSDV (+71%) |
Why This Happens:
DSDV Overhead:
- Fixed periodic updates regardless of traffic: 20 nodes × 20 updates/hour = 400 control packets/hour baseline
- Overhead constant whether sending 5 or 300 data packets/min
- “Pays upfront” for always-available routes
DSR Overhead:
- Per-route discovery: Each new destination requires RREQ flood
- High traffic = many unique destinations = many route discoveries
- 300 packets/min to 25 different destinations = 180 route discoveries/hour in mobile network (routes break frequently)
- Each RREQ floods network: 20 nodes × 180 discoveries = 3,600 control packets/hour from discoveries alone
- Add RERR messages for broken routes in mobile network: +1,000 control packets/hour
- Route cache helps, but mobility invalidates cached routes quickly
The Math:
- Low traffic: DSDV’s 12,000 control packets >> DSR’s 3,200 (wasteful proactive updates)
- High traffic: DSDV’s 12,000 control packets << DSR’s 47,000 (constant discoveries)
Key Insight: Protocol selection must consider application traffic patterns: - Sparse traffic (monitoring sensors): Reactive protocols (DSR, AODV) waste less energy - Dense traffic (video streaming, telemetry): Proactive protocols (DSDV, OLSR) amortize update cost - Hybrid traffic: ZRP adapts by tuning zone radius
Rule of Thumb: If average data transmission rate > 1 packet every 30 seconds, consider proactive routing. The “always-on” overhead pays for itself through eliminated route discoveries.