WirelessCCNA 200-301

Band Steering Not Moving Clients from 2.4GHz to 5GHz

Presenting Symptom

Wireless clients remain connected to the 2.4GHz band even when they are within range of a 5GHz access point that supports band steering.

Network Context

A small branch office with a single Cisco 9130AXI access point running IOS XE 17.9. The AP is configured with both 2.4GHz and 5GHz radios enabled and a single SSID 'CorpNet' using WPA2-PSK. The network has about 20 clients, including laptops and smartphones that support dual-band operation. The AP is connected to a Cisco 9300 switch via a trunk port.

Diagnostic Steps

1

Check client association details on the AP

show wireless client summary
Client MAC     AP Name            WLAN    State    Protocol    Band
00:1a:2b:3c:4d:5e   AP9130            1       Run     802.11ac   5GHz
00:1a:2b:3c:4d:5f   AP9130            1       Run     802.11n    2.4GHz

Look for clients associated on 2.4GHz band. If many clients are on 2.4GHz despite being capable of 5GHz, band steering may not be working.

2

Verify band steering configuration on the WLAN

show wlan id 1
WLAN Profile Name     : CorpNet
...
Band Select            : Enabled
Band Select Properties:
  Client RSSI Threshold : -80 dBm
  Cycle Count           : 2
  Cycle Threshold       : 20 ms
  Monitor Time          : 60 sec
  Probe Response        : Suppressed

Check if 'Band Select' is enabled. If disabled, band steering will not occur. Also verify thresholds: if RSSI threshold is too low, clients may not be steered.

3

Check client capabilities and probe requests

debug dot11 band-select client <client-mac>
Band-Select: Client 00:1a:2b:3c:4d:5f, RSSI -65 dBm, Dual-band capable
Band-Select: Client 00:1a:2b:3c:4d:5f, Probe request on 2.4GHz, suppressed
Band-Select: Client 00:1a:2b:3c:4d:5f, Probe request on 5GHz, responded

The debug shows whether the AP is suppressing probe responses on 2.4GHz for dual-band clients. If no suppression occurs, band steering is not functioning. Also verify client RSSI is above threshold.

4

Verify AP radio configuration and channel settings

show ap dot11 5ghz summary
AP Name       Channel   Tx Power   Clients
AP9130        36        17 dBm     5

Ensure the 5GHz radio is enabled and has clients. If 5GHz radio is disabled or has no clients, band steering cannot move clients to 5GHz.

Root Cause

Band steering is not enabled on the WLAN profile. The 'band-select' feature is disabled by default on Cisco IOS XE WLANs, so the AP treats both bands equally and does not steer dual-band clients to 5GHz.

Resolution

Enable band steering on the WLAN: 1. Enter WLAN configuration mode: configure terminal wlan CorpNet 1 2. Enable band select: band-select 3. (Optional) Adjust band select parameters for better steering: band-select client rssi threshold -75 band-select cycle count 3 band-select cycle threshold 30 4. Apply the changes: end write memory

Verification

Run 'show wlan id 1' and confirm 'Band Select: Enabled'. Then check client associations with 'show wireless client summary' and observe that dual-band clients eventually move to 5GHz. Use 'debug dot11 band-select client <mac>' to see probe suppression in action.

Prevention

1. Always enable band steering on WLANs in dual-band deployments to optimize client distribution. 2. Set appropriate RSSI thresholds (e.g., -75 dBm) to avoid steering clients with weak 5GHz signals. 3. Monitor client distribution regularly using 'show wireless client summary' to ensure balanced band usage.

CCNA Exam Relevance

On the CCNA 200-301 exam, band steering may appear in troubleshooting questions where clients are not using the 5GHz band. The exam tests knowledge of WLAN configuration and the 'band-select' command. Candidates must know that band steering is disabled by default and must be enabled per WLAN.

Exam Tips

1.

Remember that band steering is disabled by default; you must enable it with the 'band-select' command under the WLAN configuration.

2.

The exam may present a scenario where clients are stuck on 2.4GHz; the fix is to enable band steering, not to disable the 2.4GHz radio.

3.

Know that 'show wlan id <id>' displays band select status; look for 'Band Select: Enabled'.

Commands Used in This Scenario

Test Your CCNA Knowledge

Practice with scenario-based questions to prepare for the CCNA 200-301 exam.

Practice CCNA Questions