Skip to content

CleanAir

Location in GUI: Design » Feature Templates » Wireless » CleanAir Configuration

Diagram

wireless (catalyst_center.feature_templates)

Section titled “wireless (catalyst_center.feature_templates)”
NameTypeConstraintMandatoryDefault Value
cleanairList[cleanair]No

cleanair (catalyst_center.feature_templates.wireless)

Section titled “cleanair (catalyst_center.feature_templates.wireless)”
NameTypeConstraintMandatoryDefault Value
nameStringYes
descriptionStringNo
radio_bandChoice2.4GHz, 5GHz, 6GHzYes
enableBooleantrue, falseNofalse
device_reportingBooleantrue, falseNofalse
persistent_device_propagationBooleantrue, falseNofalse
interferersClass[interferers]No

interferers (catalyst_center.feature_templates.wireless.cleanair)

Section titled “interferers (catalyst_center.feature_templates.wireless.cleanair)”
NameTypeConstraintMandatoryDefault Value
ble_beaconBooleantrue, falseNo
bluetooth_paging_inquiryBooleantrue, falseNo
bluetooth_sco_aclBooleantrue, falseNo
continuous_transmitterBooleantrue, falseNo
generic_dectBooleantrue, falseNo
generic_tddBooleantrue, falseNo
jammerBooleantrue, falseNo
microwave_ovenBooleantrue, falseNo
motorola_canopyBooleantrue, falseNo
si_fhssBooleantrue, falseNo
spectrum_80211_fhBooleantrue, falseNo
spectrum_80211_non_standard_channelBooleantrue, falseNo
spectrum_802154Booleantrue, falseNo
spectrum_invertedBooleantrue, falseNo
super_agBooleantrue, falseNo
video_cameraBooleantrue, falseNo
wimax_fixedBooleantrue, falseNo
wimax_mobileBooleantrue, falseNo
xboxBooleantrue, falseNo

CleanAir feature templates define spectrum-intelligence settings on a per radio band basis (2.4 GHz, 5 GHz, or 6 GHz). They detect and classify RF interferers such as microwave ovens, jammers, and Bluetooth devices, and can be attached to Wireless Network Profiles via their feature_templates list.

Example-1: Basic 2.4 GHz CleanAir template with reporting and persistent device propagation enabled, detecting the most common interferers found in office environments:

catalyst_center:
feature_templates:
wireless:
cleanair:
- name: CLEANAIR_2_4GHZ_OFFICE
description: CleanAir detection for 2.4 GHz office deployments
radio_band: "2.4GHz"
enable: true
device_reporting: true
persistent_device_propagation: true
interferers:
bluetooth_paging_inquiry: true
bluetooth_sco_acl: true
microwave_oven: true
jammer: true
continuous_transmitter: true

Example-2: 5 GHz CleanAir template tuned for enterprise environments, detecting wide-band and continuous interferers relevant to the 5 GHz spectrum:

catalyst_center:
feature_templates:
wireless:
cleanair:
- name: CLEANAIR_5GHZ_ENTERPRISE
description: CleanAir detection for 5 GHz enterprise deployments
radio_band: "5GHz"
enable: true
device_reporting: true
persistent_device_propagation: false
interferers:
continuous_transmitter: true
generic_dect: true
generic_tdd: true
jammer: true
si_fhss: true
super_ag: true
video_camera: true
wimax_fixed: true
wimax_mobile: true

Example-3: Comprehensive 2.4 GHz CleanAir template enabling detection of all supported interferer classes for maximum spectrum visibility:

catalyst_center:
feature_templates:
wireless:
cleanair:
- name: CLEANAIR_2_4GHZ_FULL
description: Full interferer detection for 2.4 GHz
radio_band: "2.4GHz"
enable: true
device_reporting: true
persistent_device_propagation: true
interferers:
ble_beacon: true
bluetooth_paging_inquiry: true
bluetooth_sco_acl: true
continuous_transmitter: true
generic_dect: true
generic_tdd: true
jammer: true
microwave_oven: true
motorola_canopy: true
si_fhss: true
spectrum_80211_fh: true
spectrum_80211_non_standard_channel: true
spectrum_802154: true
spectrum_inverted: true
super_ag: true
video_camera: true
wimax_fixed: true
wimax_mobile: true
xbox: true

A CleanAir template only takes effect once it is attached to a Wireless Network Profile. Reference the template by its name in the profile’s feature_templates list:

catalyst_center:
feature_templates:
wireless:
cleanair:
- name: CLEANAIR_2_4GHZ_OFFICE
description: CleanAir detection for 2.4 GHz office deployments
radio_band: "2.4GHz"
enable: true
device_reporting: true
persistent_device_propagation: true
interferers:
microwave_oven: true
jammer: true
network_profiles:
wireless:
- name: CAMPUS_WIRELESS_PROFILE
feature_templates:
- CLEANAIR_2_4GHZ_OFFICE

Note: The enable field is the master switch for the CleanAir configuration — it must be set to true for the feature (including any configured interferers) to take effect. When enable is false, the template is provisioned but CleanAir remains disabled and the interferer detection settings have no effect.

Note: Interferer keys under interferers are radio-band-specific. Only configure interferers that apply to the template’s radio_band:

Interferer2.4GHz5GHz6GHz
ble_beacon, bluetooth_paging_inquiry, bluetooth_sco_acl, microwave_oven, spectrum_80211_fh, spectrum_802154, xbox
generic_dect, generic_tdd, jammer, motorola_canopy, si_fhss, spectrum_80211_non_standard_channel, spectrum_inverted, super_ag, video_camera, wimax_fixed, wimax_mobile
continuous_transmitter

CleanAir templates are referenced from wireless network profiles by adding the template name to the profile’s feature_templates list.