Skip to content
Back to Blog
Monitoring

Wi-Fi 6 Enterprise Design: SSID, Roaming, and RF Planning

Design a Wi-Fi 6 enterprise network: access point placement, channel planning, BSS coloring, WPA3, and fast BSS transition.

Oct 2025
12 min read

Introduction

Wi-Fi 6 (802.11ax) is a significant upgrade from previous Wi-Fi generations, particularly important for high-density enterprise environments: open-plan offices, conference centers, and warehouses. Understanding Wi-Fi 6's new features — OFDMA, MU-MIMO, BSS Coloring, Target Wake Time — helps you design deployments that actually perform rather than just "work." This guide covers enterprise Wi-Fi 6 design and deployment.

Wi-Fi 6 Key Technologies

OFDMA (Orthogonal Frequency Division Multiple Access):
TEXT
Wi-Fi 5: One client uses the entire channel at a time
         AP → Client1 (uses 80MHz) → AP → Client2 (uses 80MHz)
         Clients take turns (inefficient)

Wi-Fi 6: Multiple clients share the channel simultaneously
         AP → Client1(20MHz) + Client2(20MHz) + Client3(40MHz) simultaneously
         Resource Units (RUs) divide the channel
         Dramatically reduces latency for many-client scenarios
MU-MIMO (Multi-User, Multiple Input Multiple Output):
TEXT
Wi-Fi 5: 4 spatial streams for downlink MU-MIMO
Wi-Fi 6: 8 spatial streams for both uplink AND downlink MU-MIMO
Allows simultaneous transmission to/from multiple clients
BSS Coloring:
TEXT
Problem: Nearby APs on same channel cause interference
Wi-Fi 5: All see the channel as busy (inefficient)
Wi-Fi 6: Each BSS (AP) gets a "color" (1-63)
         Devices ignore transmissions from different-colored BSSs
         Reduces the hidden-node problem, allows denser deployments
Target Wake Time (TWT):
TEXT
Critical for IoT and battery-powered devices
AP schedules when each device wakes to receive data
Devices can sleep longer → dramatically better battery life
Used for: IoT sensors, barcode scanners, warehouse devices

Site Survey and Capacity Planning

TEXT
Before deploying, you need:

1. Floor plans and building materials
   - Concrete walls: -15dB attenuation
   - Drywall: -3dB attenuation
   - Glass: -2dB attenuation
   - Metal (filing cabinets, HVAC): heavy interference

2. Client density estimate
   - Open office: 1 device per 10-15 sq ft (phone + laptop)
   - Conference room: 3-5 devices per person
   - Warehouse: 1-2 devices per employee shift + IoT devices

3. Channel width selection
   - 2.4GHz: Only 3 non-overlapping channels (1, 6, 11)
              Use 20MHz channels only
   - 5GHz: Many non-overlapping channels
           Use 40MHz or 80MHz in most enterprise deployments
   - 6GHz (Wi-Fi 6E): Fresh spectrum, use 80MHz or 160MHz channels

4. AP density
   High-density: 1 AP per 1500 sq ft (300-500 clients per AP max)
   Standard office: 1 AP per 2500-3000 sq ft

AP Placement Guidelines

TEXT
Rule 1: Cell size over signal strength
    Don't try to cover the whole building from 2 APs
    Use more APs with lower transmit power (smaller cells)
    Target: -67 dBm RSSI minimum, -50 to -65 dBm ideal

Rule 2: Channel reuse
    5GHz channel plan (use all available channels):
    [CH36][CH40][CH44][CH48] - adjacent APs on different channels
    [CH149][CH153][CH157][CH161]

Rule 3: Eliminate co-channel interference
    APs on same channel should not overlap coverage
    Use Cisco DNA or similar to auto-tune channel/power
    Target: Received signal from neighboring same-channel AP < -80 dBm

Rule 4: AP orientation
    Ceiling mount: omni antenna provides 360° horizontal coverage
    Wall mount: directional, aim toward users not walls

Cisco Wireless Configuration (WLC)

TEXT
# Create SSID with WPA3 (Wi-Fi 6 best practice)
# Cisco DNA Center or WLC GUI:
WLAN Configuration:
  SSID: Corp-WiFi
  Security: WPA3-Enterprise
  Authentication: 802.1X (EAP-TLS or PEAP)
  RADIUS Server: 192.168.1.10:1812
  PMF (Protected Management Frames): Required (802.11w)
  Band: 5GHz and 6GHz (if 6E APs)
  Width: 80MHz

# QoS for voice/video
  Platinum QoS: VoIP calls (Cisco Jabber)
  Gold QoS: Video conferencing (Teams, Zoom)
  Silver QoS: General traffic

# Client isolation
  P2P Blocking: Enabled (clients can't talk directly)

VLAN and Roaming Design

TEXT
Multiple SSIDs → Multiple VLANs:
  Corp-WiFi   → VLAN 20 (employees with certificates)
  Guest-WiFi  → VLAN 99 (internet only, isolated)
  IoT-WiFi    → VLAN 50 (IoT devices, isolated from Corp)
  Voice-WiFi  → VLAN 30 (phones, Platinum QoS)

Seamless Roaming (fast roaming between APs):
  Enable 802.11r (Fast BSS Transition) for sub-50ms roaming
  Enable 802.11k (Neighbor Reports): AP tells client about neighbors
  Enable 802.11v (BSS Transition Management): AP can push client to better AP

# Important: 802.11r requires all APs in same mobility domain
# Configure matching MD ID on all WLCs/APs

Troubleshooting Wi-Fi 6 Performance

BASH
# From client device:
# macOS
airport -I                        # Current connection info
airport -s                        # Scan for networks

# Linux
iwconfig wlan0                    # Basic info
iw dev wlan0 link                 # Detailed connection info
iw dev wlan0 station dump         # Station statistics

# Windows
netsh wlan show networks          # Available networks
netsh wlan show interfaces        # Current connection

# Common performance issues:
# 1. Sticky client (client stays on far AP)
#    Fix: Enable 802.11r, 11k, 11v; lower minimum RSSI threshold
#         set rssi-check -80 (kick clients below -80 dBm)

# 2. 2.4GHz congestion
#    Fix: Disable 2.4GHz for new SSID (5GHz and 6GHz only)
#         Or: Band steering to push capable clients to 5GHz

# 3. Hidden node (clients can't hear each other but AP can hear both)
#    Fix: Use RTS/CTS (adds overhead but prevents collisions)
#         Better: BSS Coloring (Wi-Fi 6 automatic)

Wi-Fi 6E: 6GHz Band

TEXT
Wi-Fi 6E adds the 6GHz band (5925-7125 MHz in US):
  1200 MHz of new spectrum
  7 additional 160MHz channels
  No legacy devices (6GHz is Wi-Fi 6 only)
  Clean spectrum (no legacy interference)

Use 6GHz for:
  - High-bandwidth applications (video production, CAD files)
  - Dense conference rooms
  - Latest laptops and phones (iPhone 15 Pro, recent Samsung)

Keep 5GHz for:
  - Legacy devices (still the majority)
  - Standard office workloads

Enterprise Wi-Fi 6 design is fundamentally about cell planning and interference management, not just AP count. More APs at lower power with proper channel planning will outperform fewer high-power APs every time in dense environments.