Collision: The simultaneous transmission of two or more devices on a shared medium, causing signal overlap and data corruption
Collision Domain: The set of devices that can cause a collision with each other; reducing collision domains improves network performance
CSMA/CD: Carrier Sense Multiple Access with Collision Detection; the Ethernet MAC protocol that detects collisions and schedules retransmissions
CSMA/CA: Carrier Sense Multiple Access with Collision Avoidance; used in Wi-Fi and IEEE 802.15.4; avoids collisions rather than detecting them after the fact
Bandwidth Utilisation: The fraction of the available channel capacity consumed by successful data transmission; collisions reduce utilisation
Backoff Algorithm: A randomised delay strategy used after a collision to reduce the probability of repeated collisions between the same devices
Hidden Node Problem: A scenario where two devices cannot hear each other but both can hear a third device; leads to collisions invisible to the senders
50.1 In 60 Seconds
Bandwidth is the maximum data rate a link can carry, but more bandwidth does not reduce latency – they are independent metrics. Most IoT devices transmit small, infrequent payloads, so networks are commonly over-provisioned by 100x or more. Calculating actual bandwidth needs from device count, payload size, and reporting interval prevents costly over-provisioning.
50.2 Learning Objectives
By the end of this chapter, you will be able to:
Calculate bandwidth requirements for IoT deployments accurately
Identify common bandwidth misconceptions that lead to over-provisioning
Right-size network capacity based on actual traffic patterns
Select appropriate protocols based on bandwidth needs
For Beginners: Bandwidth Requirements
Bandwidth is like the width of a highway – a wider highway can carry more cars at once. In networking, bandwidth determines how much data can flow between devices per second. IoT devices usually need very little bandwidth (like a bicycle lane), but when thousands of sensors report at once, those small lanes add up quickly.
Sensor Squad: The Highway Myth!
“We need a bigger highway for our data!” Sammy the Sensor declared. Max the Microcontroller shook his head. “Hold on, Sammy. Let me ask you something – how much data do you actually send?”
“Well, I send a temperature reading of about 50 bytes every 15 minutes,” Sammy admitted. “That is like tossing a marble down the highway once in a while,” said Max. “You definitely do not need a six-lane motorway! Even with 500 sensors like you, we would only use about 1% of a basic cellular connection.”
Lila the LED added, “And here is a big myth – a wider highway does NOT make your marble arrive faster! Bandwidth is about how much data fits at once, not how quickly it gets there. Latency is what controls speed.”
“The real trick,” said Bella the Battery, “is calculating exactly what you need. Over-provisioning wastes money AND my energy. Multiply your sensor count by payload size and divide by reporting interval – that gives you the actual bandwidth needed. Most IoT networks need way less than people think!”
50.3 Introduction
Time: ~10 min | Difficulty: Intermediate | Unit: P07.C15.U03
Many IoT engineers significantly overestimate bandwidth requirements, leading to costly over-provisioning. Understanding actual traffic patterns and calculating real bandwidth needs is essential for cost-effective IoT network design.
50.4 Common Misconception: “More Bandwidth Always Means Better Performance”
Common Misconception
The Misconception: Many IoT engineers assume that provisioning higher bandwidth (e.g., upgrading from 100 Kbps to 1 Mbps) will automatically improve application performance and reduce latency.
The Reality: Bandwidth and latency are independent metrics. Higher bandwidth increases throughput (data volume per second) but does NOT reduce latency (round-trip time).
Real-World Example: A smart agriculture company deployed 500 soil moisture sensors across a 5 km squared farm:
Actual traffic: Each sensor sends 50 bytes every 15 minutes = 0.056 bytes/second average
Total bandwidth used: 500 sensors x 0.056 bytes/sec = 27.8 bytes/sec = 222 bps (0.02% of provisioned capacity!)
Latency: LTE-M latency remained 50-200 ms regardless of bandwidth (limited by radio protocol and tower distance, not throughput)
Cost impact: Wasting $7,500/month ($90,000/year) on unused bandwidth
The Fix: Switched to LoRaWAN (unlicensed spectrum, $2/device/month gateway fee):
Bandwidth: 0.3-5 Kbps (200x less than LTE-M)
Latency: 1-2 seconds (10x worse than LTE-M)
Result: Application requirements met perfectly (sensors don’t need sub-1s responses)
Savings: $6,500/month ($78,000/year)
Battery life: Improved from 2 years (LTE-M) to 10 years (LoRaWAN)
Key Lesson: Right-size your bandwidth based on actual data volume requirements. For most IoT sensor applications, bandwidth requirements are surprisingly low (measured in bps or Kbps, not Mbps). Focus on matching protocol characteristics to application needs rather than maximizing raw throughput.
50.5 Related Misconceptions
Understanding bandwidth vs latency helps clarify these common confusions:
“5G is necessary for IoT” (Reality: Most IoT needs less than 1 Mbps; 5G’s benefit is massive device density, not speed)
“Wi-Fi 6 improves range” (Reality: Wi-Fi 6 improves efficiency and capacity, not range compared to Wi-Fi 5)
“TCP is slower than UDP” (Reality: UDP has lower latency, but TCP can achieve higher throughput with proper tuning)
50.6 Protocol Bandwidth Comparison
Protocol
Typical Bandwidth
Best Use Case
Cost Considerations
LoRaWAN
0.3-50 Kbps
Infrequent sensor data
Free spectrum, gateway costs
Sigfox
100 bps
Ultra-low data volume
Subscription per device
NB-IoT
20-250 Kbps
Low-medium data
Cellular subscription
LTE-M
375 Kbps-1 Mbps
Voice + data
Higher cellular cost
Wi-Fi
10-1000 Mbps
High data volume
Infrastructure cost
Ethernet
100-1000 Mbps
Industrial, video
Wiring cost
50.7 Bandwidth Sizing Guidelines
Bandwidth Sizing Rule of Thumb
Step 1: Calculate Average Load
Use the same conversion every time: multiply devices by bytes per message, convert bytes to bits, then divide by the reporting interval.
Average bandwidth (bps) = devices x payload bytes x 8 / interval seconds.
Putting Numbers to It
The bandwidth calculation converts device behavior into bits per second.
Input
Value
Device count
500 sensors
Payload size
50 bytes
Reporting interval
15 minutes = 900 seconds
Calculation
500 x 50 x 8 / 900
Result
222 bps
This reveals why a 1 Mbps LTE-M link would be over-provisioned by 4,500x!
Step 2: Apply Peak Multiplier
For typical IoT burst patterns, estimate peak load as 2x to 3x the average load.
Step 3: Add Headroom
Add growth headroom after peak load: Provisioned bandwidth = Peak bandwidth x 1.5.
Measure first: Deploy a pilot with monitoring before sizing production
Use actual traffic data: Don’t rely on theoretical maximums
Consider duty cycles: Most IoT sensors are idle 99%+ of the time
Factor in compression: MQTT, CoAP can significantly reduce payload sizes
50.9.2 Protocol Selection for Cost
Scenario
Wrong Choice
Right Choice
Savings
500 farm sensors
1 Mbps LTE-M
LoRaWAN
$78K/year
10K smart meters
Wi-Fi mesh
NB-IoT
$120K/year
100 security cameras
4G cellular
Wi-Fi + fiber
$36K/year
50.10 Worked Example: Smart City Multi-Protocol Bandwidth Planning
Scenario: A city deploys a smart infrastructure pilot across a 2 km squared downtown district with four IoT subsystems. The network architect must calculate total bandwidth requirements and select appropriate protocols for each subsystem.
Matches each subsystem to its real bandwidth and latency need
Savings from right-sizing sensors
$59,400 - $31,200 = $28,200/year
No camera savings
Sensor protocol choice saves money even though cameras dominate total bandwidth
Key Insight: In this smart city deployment, 99.98% of the bandwidth demand comes from 200 cameras (400 Mbps), while 3,300 sensors collectively need only 38 Kbps. Right-sizing protocols by subsystem saves $28,200/year on sensor connectivity alone. The bandwidth calculation also reveals that upgrading sensor protocols to higher-bandwidth options provides zero benefit – the sensors genuinely need only Kbps, not Mbps.
50.11 Data Compression Impact on Bandwidth Requirements
Protocol-level compression can dramatically reduce bandwidth needs, but the benefit depends on payload type:
Data Type
Raw Size
Compressed
Ratio
Protocol Support
JSON sensor reading
120 bytes
45 bytes
2.7x
MQTT 5.0 (content type), HTTP gzip
CBOR sensor reading
48 bytes
38 bytes
1.3x
CoAP (native CBOR support)
CSV batch (100 readings)
5,000 bytes
800 bytes
6.3x
Any protocol with payload compression
Protobuf telemetry
35 bytes
32 bytes
1.1x
gRPC, custom MQTT
Base64 image thumbnail
4,096 bytes
3,200 bytes
1.3x
MQTT, HTTP
Worked Example: Compression Savings for 1,000-Sensor Deployment
A building management system sends 1,000 temperature sensors at 4 messages per minute. The same information can require very different bandwidth depending on encoding and batching:
Best for periodic telemetry where seconds of delay are acceptable
Result: Switching from individual JSON messages to batched compressed CSV reduces bandwidth from 41.6 Kbps to 1.1 Kbps – a 38x reduction. This shifts the protocol requirement from NB-IoT ($1.50/device/month) to LoRaWAN ($0.56/device/month), saving $11,280/year for 1,000 sensors.
When NOT to compress: Compression adds latency (1-5 ms for gzip) and CPU overhead. For real-time control loops requiring sub-10 ms latency, send raw binary payloads. For periodic telemetry with seconds-to-minutes tolerance, always compress.
Understanding how bandwidth-related concepts interconnect helps prevent design mistakes:
Concept
Relates To
Key Insight
Bandwidth
Throughput, Goodput
Theoretical maximum, not achieved rate
Throughput
Protocol Overhead, Congestion
Actual achieved rate after losses
Goodput
Application Data
Useful payload excluding all overhead
Latency
Bandwidth (independent)
Round-trip time NOT reduced by more bandwidth
Protocol Overhead
Efficiency, Cost
Headers reduce bandwidth utilization
Compression
Bandwidth Savings
2-38x reduction but adds CPU/latency cost
Over-provisioning
Cost, Waste
Common mistake from ignoring duty cycles
Duty Cycle
Average Usage
Most IoT sensors idle 99%+ of time
Common Pitfalls
1. Confusing CSMA/CD and CSMA/CA
CSMA/CD detects collisions after they happen (wired Ethernet). CSMA/CA tries to avoid collisions before they happen (Wi-Fi, 802.15.4). Fix: note that collision detection requires being able to hear your own signal while transmitting — impossible in half-duplex wireless.
2. Assuming a Switch Eliminates All Collision Problems
A switch creates one collision domain per port, eliminating collisions between ports. But a half-duplex device on a switch port still has a collision domain with its upstream port. Fix: verify that all devices and switch ports operate in full-duplex mode to truly eliminate collisions.
3. Ignoring the Hidden Node Problem in Wireless IoT Deployments
Two sensors at opposite ends of a warehouse may both transmit to a central gateway simultaneously, causing collisions at the gateway that neither sensor detects. Fix: use RTS/CTS mechanisms or time-slotted MAC protocols (TDMA) to handle hidden nodes.
Label the Diagram
Code Challenge
50.13 Summary
Bandwidth and latency are independent – more bandwidth does not reduce latency
Most IoT sensors need Kbps, not Mbps – calculate actual requirements before provisioning
Over-provisioning wastes money – the smart agriculture example saved $78K/year by right-sizing
Match protocol to requirements – LPWAN for low data, cellular for medium, Wi-Fi for high
Data compression reduces bandwidth 2-38x depending on encoding format and batching strategy
Use the bandwidth calculator to estimate needs before deployment