Converged Network: A single network infrastructure that carries multiple traffic types (voice, video, data, IoT sensors) simultaneously
Quality of Service (QoS): Mechanisms that prioritise different traffic types to meet their respective latency, jitter, and bandwidth requirements
DSCP (Differentiated Services Code Point): A 6-bit field in the IP header used to mark packets for QoS treatment at each network hop
Traffic Shaping: Rate-limiting a traffic flow to prevent it from monopolising shared bandwidth; sacrifices burst throughput for predictable behaviour
Traffic Policing: Dropping or marking packets that exceed a configured rate, enforcing bandwidth contracts at network ingress
Network Slicing: Logical partitioning of a physical network into multiple virtual networks, each with dedicated resources; key for 5G IoT
SDN (Software-Defined Networking): Separating the control plane from the data plane, enabling centralised, programmable network management across IoT and IT traffic
41.1 In 60 Seconds
Converged networks replace separate wiring for voice, video, and data with a single IP infrastructure – dramatically reducing costs and enabling IoT automation (e.g., access control triggering HVAC adjustments). Shared wireless media requires channel access mechanisms like CSMA/CA, where devices listen before transmitting and back off on collisions. Quality of Service (QoS) prioritizes critical IoT traffic (alarms, control commands) over best-effort data on these shared networks.
41.2 Learning Objectives
By the end of this section, you will be able to:
Compare Network Architectures: Contrast legacy separate networks with modern converged infrastructure
Evaluate Convergence Benefits: Explain economic, efficiency, and scalability advantages of converged networks
Analyze Channel Access Mechanisms: Describe how CSMA/CA enables shared wireless medium access through carrier sensing, random backoff, and exponential backoff
Apply QoS Concepts: Select and configure Quality of Service policies that prioritize critical IoT traffic over best-effort data
For Beginners: Converged Networks
A converged network carries multiple types of traffic – voice calls, video, and data – over the same infrastructure, like a highway that handles cars, trucks, and buses all at once. This matters for IoT because your smart home devices, security cameras, and voice assistants all share the same network.
Sensor Squad: One Network to Rule Them All!
“Back in the old days, buildings had separate wires for phones, separate cables for video cameras, separate networks for computers, and ANOTHER set of wires for building automation,” said Max the Microcontroller. “Four different systems! Imagine the mess.”
“Now it is all converged onto one IP network,” said Lila the LED. “My smart lighting, Sammy’s temperature data, the security cameras, and even the phone system all share the same network infrastructure. Way cheaper and easier to manage!”
“But sharing creates a problem,” noted Sammy the Sensor. “What if the security cameras are streaming tons of video and my little alarm packet cannot get through?” Max smiled. “That is where Quality of Service comes in. QoS rules give priority to critical traffic. Your fire alarm packet jumps to the front of the line, while the video stream waits a tiny bit.”
Bella the Battery added, “CSMA/CA helps too – before any device transmits on the shared wireless channel, it listens first. If someone else is talking, it waits a random time and tries again. It is like being polite at a dinner party – listen before you speak!”
41.3 Prerequisites
Before diving into this chapter, you should be familiar with:
Smart buildings run on converged networks. Instead of separate wiring for security cameras, access control, HVAC sensors, and voice systems, one IP network carries everything. This dramatically reduces installation costs and enables intelligent automation – your access control can talk to your HVAC to save energy when rooms are unoccupied.
41.4 Traditional Separate Networks
Before convergence, organizations needed separate infrastructure for each service:
Figure 41.1: Legacy separate network infrastructures for phone, video, data, and building systems
Problems:
High cost (multiple infrastructures)
Complex management (different standards)
Energy inefficiency
Limited scalability
41.5 Modern Converged Networks
21st century technological advances enable all services to run over a single data network infrastructure.
Figure 41.2: Modern converged IP network unifying all device types on single infrastructure
Benefits for IoT:
Economic savings: One infrastructure supports all devices
Energy efficiency: Shared power and networking equipment
Scalability: Easy to add new devices and services
Flexibility: Connect anything anywhere
Tradeoff: Converged Network vs Separate Networks
Option A: Single converged IP network for all traffic (voice, video, data, IoT) – lower cost, simpler management, single skill set required
Option B: Separate dedicated networks for different traffic types – guaranteed performance isolation, simpler QoS, no cross-traffic interference
Decision Factors: Choose converged when cost reduction is a priority, when QoS mechanisms are robust enough, or for typical enterprise/smart building deployments. Choose separate networks for safety-critical industrial systems where latency guarantees are mandatory, or when legacy systems cannot be migrated. Modern best practice: converged physical infrastructure with logical separation via VLANs and strict QoS policies – getting benefits of both approaches.
Example: A modern smart building uses one Ethernet/Wi-Fi network for:
Temperature sensors
Security cameras
Access control systems
HVAC control
Lighting systems
Occupancy sensors
Voice communications
41.6 Converged Network Economics
Putting Numbers to It
Converged Network ROI Calculation
Let’s quantify the cost savings for a 10-story office building:
Legacy separate networks (capital cost):
Phone system: PBX + PSTN lines: $80,000
Security cameras: Coax + DVR + monitors: $120,000
Data network: Ethernet switches + routers: $150,000
Building automation: BACnet controllers + proprietary wiring: $250,000
Total capital: $600,000
Annual operational costs (legacy):
Maintenance contracts: 4 systems x $15,000 = $60,000
Specialist labor: Phone tech + AV tech + BAS engineer = $180,000/year
Energy: 4 separate infrastructures = 24 kW x $0.12/kWh x 8,760 hrs = $25,229
Energy: PoE switches = 12 kW x $0.12/kWh x 8,760 hrs = $12,614 (50% energy savings)
Total annual: $132,614 (50% savings)
5-year TCO:
Legacy: $600,000 + (5 x $265,229) = $1,926,145
Converged: $200,000 + (5 x $132,614) = $863,070
Savings: $1,063,075 (55% reduction)
For IoT expansion: adding 500 sensors to converged network = $15/sensor (PoE + IP config) = $7,500. Same on legacy = new BACnet controllers + wiring = $80,000+ (10x more expensive).
Try It: Converged Network ROI Calculator
Show code
viewof numFloors = Inputs.range([1,50], {value:10,step:1,label:"Number of floors"})viewof legacySystems = Inputs.range([2,6], {value:4,step:1,label:"Number of legacy systems"})viewof maintenanceCostPerSystem = Inputs.range([5000,30000], {value:15000,step:1000,label:"Annual maintenance per system ($)"})viewof energyRateKwh = Inputs.range([0.05,0.30], {value:0.12,step:0.01,label:"Energy rate ($/kWh)"})viewof legacyPowerKw = Inputs.range([10,60], {value:24,step:2,label:"Legacy total power draw (kW)"})viewof yearsToProject = Inputs.range([1,10], {value:5,step:1,label:"Projection period (years)"})
Scenario: Your company manages a 10-story office building that currently has four separate networks: traditional phone system (PSTN lines with PBX), security camera system (coax cables with DVR), computer network (Ethernet), and building automation (proprietary BACnet wiring). The CFO asks you to evaluate upgrading to a converged IP network supporting 200 VoIP phones, 500 computers, 100 IP cameras, and 1,000 IoT sensors on one infrastructure.
Current costs: Four separate infrastructures cost approximately $200,000-800,000 to install and maintain.
Think about:
What are the economic trade-offs between maintaining four specialized networks versus one unified IP network?
How does converging voice, video, data, and building automation onto a single network affect operational complexity?
Key Insight: Converged networks use one IP-based infrastructure for all services instead of separate dedicated networks. A single unified network costs $50,000-200,000 to deploy – representing 60-75% cost savings compared to four independent systems. Energy efficiency improves dramatically: one set of switches, routers, and cabling replaces four independent systems. Management simplifies: a single IT team maintains one infrastructure instead of requiring specialists for phone systems, video systems, and building automation. Modern smart buildings leverage Power over Ethernet (PoE) to provide both power and data on the same cable, further reducing installation costs.
Verify Your Understanding:
If you needed to add 500 new IoT environmental sensors to this building, how would deployment differ between the converged network versus the legacy approach? Consider cabling requirements, power delivery, configuration time, and ongoing maintenance.
41.7 Channel Access: CSMA/CA
When multiple wireless devices share the same radio channel, they need a mechanism to avoid collisions. Carrier Sense Multiple Access with Collision Avoidance (CSMA/CA) is the foundation of Wi-Fi and many IoT protocols.
41.7.1 How CSMA/CA Works
Carrier Sensing: Before transmitting, each node listens to the channel
Backoff Timer: If channel is busy, node picks a random backoff time from contention window [0, CW]
Countdown: When channel is idle, backoff counter decrements each slot
Transmission: When backoff reaches 0, node transmits
Collision: If multiple nodes reach 0 simultaneously, collision occurs
Exponential Backoff: After collision, CW doubles (up to CW_max), providing fairness
41.7.2 Protocol Efficiency Comparison
Protocol
Max Efficiency
Description
Pure ALOHA
~18.4%
Transmit anytime, high collisions
Slotted ALOHA
~36.8%
Time slots reduce collisions
CSMA (1-persistent)
~53%
Listen before transmit
CSMA/CA
50-70%+
Carrier sensing + backoff
Interactive: CSMA/CA Channel Access Demo
This simulation demonstrates how Carrier Sense Multiple Access with Collision Avoidance (CSMA/CA) works in wireless networks like Wi-Fi and IoT protocols. Watch how multiple nodes coordinate access to a shared channel using carrier sensing, random backoff, and exponential backoff after collisions.
41.10 Worked Example: Smart Building Converged Network Power Budget
Scenario: A 5-story office building is migrating from four separate networks (phone, CCTV, data, building automation) to a single converged IP network. The network architect must calculate PoE power budgets and VLAN design for 1,800 converged devices.
41.10.1 Step 1: Device Inventory and Power Requirements
Each floor has the same device mix, so calculate one floor first and then multiply by five.
Device Type
Quantity per Floor
Typical PoE Class
Power Calculation
VoIP phones
40
PoE, 802.3af Class 2
40 x 6.5 W = 260 W
IP cameras
20
PoE+, 802.3at Class 4
20 x 15 W = 300 W
Wi-Fi 6 access points
8
PoE++, 802.3bt Type 3
8 x 25 W = 200 W
Occupancy sensors
30
PoE, 802.3af Class 1
30 x 3 W = 90 W
Smart LED controllers
50
PoE, 802.3af Class 2
50 x 7 W = 350 W
Access control panels
6
PoE+, 802.3at Class 3
6 x 13 W = 78 W
Environmental sensors
50
PoE, 802.3af Class 1
50 x 2 W = 100 W
Digital signage
4
PoE++, 802.3bt Type 3
4 x 25 W = 100 W
Intercom panels
2
PoE+, 802.3at Class 3
2 x 13 W = 26 W
Total
210 devices
1,504 W per floor
Building PoE budget: 5 floors x 1,504 W = 7,520 W.
41.10.2 Step 2: Switch Selection and PoE Budget
Design Option
Switch Plan
Available PoE
Decision
Centralized core
2 x 48-port mGig switches at 1,440 W each
2,880 W
Insufficient for a 7,520 W building load.
Distributed per floor
5 x 48-port PoE+ switches plus 5 x 24-port PoE++ switches
7,400 W
Still too tight because it leaves almost no reserve.
Distributed with PoE++
5 x high-budget 48-port switches plus 5 x 24-port PoE++ switches
9,600 W
Recommended: 28% headroom for startup surge, future devices, and PSU derating.
Approximate equipment cost for the recommended option: 10 switches x $6,500 = $65,000.
41.10.3 Step 3: VLAN Segmentation on Converged Network
VLAN
Traffic Type
QoS Marking
Beginner Meaning
10
Voice phones
DSCP EF, strict priority
Phone audio jumps ahead of routine traffic.
20
Cameras and access panels
DSCP AF41
Security video gets high priority without starving alarms.
30
Environmental and occupancy sensors
DSCP AF11
Sensor telemetry is protected but not treated as emergency traffic.
40
Lighting and HVAC automation
DSCP AF21
Building controls get medium priority.
50
Corporate data
DSCP BE
Normal office devices use best-effort delivery.
60
Guest Wi-Fi
Isolated, 10 Mbps rate limit
Visitors cannot consume the building-control network.
Per-floor traffic is small compared with a 1 Gbps uplink when the network is segmented correctly.
Traffic Group
Calculation
Reserved Treatment
Voice
40 phones x 100 Kbps = 4 Mbps
Guaranteed low latency
Cameras
20 cameras x 4 Mbps = 80 Mbps
Guaranteed bandwidth
IoT sensors
130 sensors x 1 Kbps = 0.13 Mbps
Best effort with separation
Building automation
56 devices x 10 Kbps = 0.56 Mbps
Best effort with separation
Corporate data
Remainder, roughly 900 Mbps
Shared normal capacity
41.10.4 Step 4: Cost Comparison vs Legacy
Cost Category
Legacy (4 Networks)
Converged IP
Savings
Cabling (Cat6 vs mixed)
$180,000
$95,000
47%
Switches/Equipment
$120,000
$65,000
46%
Phone system (PBX)
$45,000
$0 (SIP)
100%
Camera DVR/NVR
$35,000
$8,000 (software)
77%
BACnet controllers
$28,000
$0 (IP native)
100%
Annual maintenance
$48,000
$18,000
63%
Year 1 Total
$456,000
$186,000
59%
5-Year TCO
$648,000
$258,000
60%
Key Insight: The converged network saves 60% over 5 years primarily by eliminating dedicated phone and building automation infrastructure. PoE is the enabler – delivering both data and power on a single cable eliminates separate power wiring for cameras, phones, and sensors. However, PoE power budget planning is critical: the 7,520W building demand requires careful switch selection, as a single 48-port switch provides only 740-1,440W depending on model.
41.11 Real-World Case Study: Hospital Network Convergence Failure and Recovery
A 400-bed hospital migrated from four separate networks (clinical devices, patient monitoring, administrative, and HVAC/BMS) to a single converged IP network to reduce costs. The project initially failed, then succeeded after critical design changes.
Phase 1: Failed Convergence (Month 1-4)
The hospital deployed a flat converged network with 2,000 devices on a single VLAN. Results:
Problem
Impact
Root Cause
Patient monitor alarms delayed 2-3 seconds
3 near-miss clinical events
Broadcast storms from 2,000 devices saturated 200 Mbps uplinks
Nurse call stations dropped calls
47 missed calls in first week
VoIP packets queued behind 50 Mbps radiology image transfers
HVAC sensors lost connectivity
Operating room temperature drifted 4 degrees F
ARP broadcast traffic from 2,000 devices consumed 15% of sensor bandwidth
IT help desk overwhelmed
200+ tickets in first month
No visibility into which traffic type caused which problem
The hospital reverted to separate networks at a cost of $180,000 in labor and lost productivity.
Phase 2: Redesigned Convergence (Month 8-14)
A network architect redesigned the converged network with proper segmentation:
VLAN
Hospital Traffic
Protection Added
10
Life-safety devices such as patient monitors and infusion pumps
Strict-priority DSCP EF, 100 Mbps guaranteed, 802.1X isolation, redundant uplinks with under 50 ms failover
20
Clinical systems such as EMR workstations and imaging
High-priority DSCP AF41, 500 Mbps guaranteed, 802.1X plus MAB authentication
Best-effort DSCP BE, remaining bandwidth, standard 802.1X authentication
Broadcast-domain reduction: the failed design had 2,000 devices in one broadcast domain. The redesigned network split them into five VLANs averaging 400 devices each, reducing broadcast traffic per device by roughly 80%.
Phase 2 Results:
Metric
Separate Networks
Failed Convergence
Redesigned Convergence
Patient monitor latency
5 ms
200-3,000 ms
8 ms
VoIP call quality (MOS)
4.2
2.1 (unacceptable)
4.0
Broadcast traffic per VLAN
N/A
15% of bandwidth
2% of bandwidth
Annual infrastructure cost
$420,000
N/A (reverted)
$185,000
Number of network staff
6 (specialists)
N/A
3 (generalists)
Key Lesson: Network convergence delivers its 55% cost savings only when combined with proper VLAN segmentation, QoS enforcement, and traffic engineering. A flat converged network is worse than separate networks because it eliminates the natural isolation that separate physical infrastructure provides. The redesigned network saved $235,000 annually while maintaining clinical safety standards.
Common Pitfalls
1. Assuming All IoT Traffic Is Low Priority
Aggregating all IoT sensor data into a best-effort class alongside bulk file transfers means time-critical alarm messages may be delayed behind a large firmware download. Fix: classify IoT traffic by criticality and assign QoS markings accordingly (e.g., alarms → EF, telemetry → AF, batch uploads → BE).
2. Overlooking the Effect of Converged Traffic on IoT Latency
Adding video surveillance traffic to a network that previously carried only sensor data can saturate shared links and increase sensor data latency by 10–100×. Fix: perform a traffic engineering analysis before converging network types, and verify that IoT SLAs can still be met under worst-case combined load.
3. Not Configuring QoS End-to-End
QoS configured at the edge switch is meaningless if the core network re-marks or ignores DSCP values. Fix: verify QoS policies at every hop from IoT sensor to cloud endpoint.
Label the Diagram
Code Challenge
41.12 Summary
Legacy networks required separate infrastructure for phone, video, data, and building automation – expensive and complex
Converged networks carry all services on one IP infrastructure, reducing costs 55-75% and simplifying management
CSMA/CA enables shared wireless medium access through carrier sensing, random backoff, and exponential backoff after collisions
Protocol efficiency improves from 18% (Pure ALOHA) to 70%+ (CSMA/CA) through collision avoidance mechanisms