Wireless Network Profiles
Location in GUI:
Design » Network Profiles
Diagram
Section titled “Diagram”Classes
Section titled “Classes”network_profiles (catalyst_center)
Section titled “network_profiles (catalyst_center)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| wireless | List | [wireless] | No |
wireless (catalyst_center.network_profiles)
Section titled “wireless (catalyst_center.network_profiles)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Yes | ||
| sites | List | String | No | |
| ssid_details | List | [ssid_details] | No | |
| additional_interfaces | List | String | No | |
| ap_zones | List | [ap_zones] | No | |
| site_tags | List | [site_tags] | No | |
| policy_tags | List | [policy_tags] | No |
ssid_details (catalyst_center.network_profiles.wireless)
Section titled “ssid_details (catalyst_center.network_profiles.wireless)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | No | ||
| enable_fabric | Boolean | true, false | No | |
| enable_flex_connect | Boolean | true, false | No | |
| local_to_vlan | Integer | No | ||
| wlan_profile_name | String | No | ||
| interface_name | String | No | management | |
| dot11be_profile_name | String | No | ||
| anchor_group_name | String | No | ||
| vlan_group_name | String | No |
ap_zones (catalyst_center.network_profiles.wireless)
Section titled “ap_zones (catalyst_center.network_profiles.wireless)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Yes | ||
| rf_profile_name | String | Yes | ||
| ssids | List | String | Yes |
site_tags (catalyst_center.network_profiles.wireless)
Section titled “site_tags (catalyst_center.network_profiles.wireless)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Yes | ||
| ap_profile_name | String | Yes | ||
| flex_profile_name | String | No | default-flex-profile | |
| sites | List | String | Yes |
policy_tags (catalyst_center.network_profiles.wireless)
Section titled “policy_tags (catalyst_center.network_profiles.wireless)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Yes | ||
| ap_zones | List | String | No | |
| sites | List | String | Yes |
Wireless Network Profiles bind SSIDs to sites and define how wireless networks are deployed. Each profile contains ssid_details with fabric/FlexConnect mode, VLAN mappings, 802.11be Profiles, and Anchor Groups. Profiles can also include ap_zones for RF Profile assignment, site_tags for AP Profile linking, and policy_tags for controlling which AP Zones are active at specific sites. Some features applicable only on non-fabric deployments.
Note:
interface_nameandvlan_group_nameare mutually exclusive — only one can be set per SSID. Neither is applicable whenenable_fabricistrue.
Examples
Section titled “Examples”Example-1: Wireless Network Profile WIRELESS_PROFILE with fabric enabled SSID_1 attached and multiple sites assigned
catalyst_center: network_profiles: wireless: - name: WIRELESS_PROFILE ssid_details: - name: SSID_1 enable_fabric: true enable_flex_connect: false sites: - Global/United States/Golden Hills Campus/Sunset Tower - Global/United States/Lakefront Tower/Windy City Plaza - Global/United States/Oceanfront Mansion/Art Deco Mansion - Global/United States/Desert Oasis Branch/Desert Oasis TowerExample-2: Wireless Network Profile W_Cat9800-CL with fabric enabled 802_1X_SSID attached, one site assigned, additional interface Gi1/0/2, and AP zone AP_ZONE with RF profile BASIC_PROFILE_1
catalyst_center: network_profiles: wireless: - name: W_Cat9800-CL sites: - Global/Poland/Warsaw/Bld_B ssid_details: - name: 802_1X_SSID enable_fabric: true additional_interfaces: - Gi1/0/2 ap_zones: - name: AP_ZONE rf_profile_name: BASIC_PROFILE_1 ssids: - 802_1X_SSIDExample-3: Wireless Network Profile with Wi-Fi 7 (802.11be) profile assignment and Site Tags linking AP profiles to specific sites. The dot11be_profile_name links an SSID to a pre-configured 802.11be profile for enhanced performance features like OFDMA and MU-MIMO (requires IOS-XE 17.15+)
catalyst_center: network_profiles: wireless: - name: WIFI7_ENTERPRISE_PROFILE sites: - Global/HQ/Building_A - Global/HQ/Building_B ssid_details: - name: WIFI7_CORPORATE_SSID enable_fabric: true dot11be_profile_name: WIFI7_HIGH_PERFORMANCE - name: WIFI7_GUEST_SSID enable_fabric: false enable_flex_connect: true local_to_vlan: 100 dot11be_profile_name: WIFI7_STANDARD ap_zones: - name: HIGH_DENSITY_ZONE rf_profile_name: WIFI6E_TRI_BAND_PROFILE ssids: - WIFI7_CORPORATE_SSID site_tags: - name: WIFI7_HQ_TAG ap_profile_name: WIFI7_AP_PROFILE sites: - Global/HQ/Building_A - Global/HQ/Building_BExample-4: Wireless Network Profile with Guest SSID tunneled to an Anchor Group. The anchor_group_name references a pre-configured Anchor Group for guest traffic tunneling to anchor WLCs. When anchor_group_name is set, FlexConnect settings are not applicable
catalyst_center: network_profiles: wireless: - name: GUEST_ANCHOR_PROFILE sites: - Global/HQ/Building_A ssid_details: - name: GUEST_SSID enable_fabric: false anchor_group_name: AG_Guest interface_name: guest_vlanNote: interface_name and vlan_group_name are mutually exclusive — only one can be set per SSID. Neither is applicable when enable_fabric is true.
Example-5: Wireless Network Profile with VLAN Group for client VLAN load-balancing. The vlan_group_name references a pre-configured VLAN Group on the WLC to distribute wireless clients across multiple VLANs in a round-robin fashion. Mutually exclusive with interface_name and not applicable when fabric is enabled.
catalyst_center: network_profiles: wireless: - name: VLAN_LB_PROFILE sites: - Global/HQ/Building_A ssid_details: - name: CORPORATE_SSID enable_fabric: false vlan_group_name: CORP_VLAN_GROUPExample-6: Wireless Network Profile with AP Zones and Policy Tags. Policy Tags control which AP Zones are active at specific sites. AP Zones must be defined on the Wireless Profile first, then Policy Tags reference them by name. Only relevant when AP Zones are configured.
catalyst_center: network_profiles: wireless: - name: ZONED_PROFILE sites: - Global/HQ/Building_A - Global/HQ/Building_B ssid_details: - name: CORPORATE_SSID enable_fabric: false - name: IOT_SSID enable_fabric: false ap_zones: - name: INDOOR_ZONE rf_profile_name: HIGH_DENSITY_RF ssids: - CORPORATE_SSID - IOT_SSID - name: OUTDOOR_ZONE rf_profile_name: OUTDOOR_RF ssids: - CORPORATE_SSID policy_tags: - name: BUILDING_A_POLICY ap_zones: - INDOOR_ZONE - OUTDOOR_ZONE sites: - Global/HQ/Building_A - name: BUILDING_B_POLICY ap_zones: - INDOOR_ZONE sites: - Global/HQ/Building_BExample-7: Two distinct wireless network profiles demonstrating fabric vs non-fabric deployments: ENTERPRISE_FABRIC for SDA-enabled sites with fabric SSIDs, Wi-Fi profiles, and high-density zones, and ENTERPRISE_NON_FABRIC for traditional branch deployments with FlexConnect SSIDs, VLAN mappings, and standard RF configurations
catalyst_center: network_profiles: wireless: - name: ENTERPRISE_FABRIC sites: - Global/HQ - Global/Campus ssid_details: - name: CORPORATE_FABRIC_SSID enable_fabric: true enable_flex_connect: false wlan_profile_name: CORPORATE_FABRIC_SSID_profile - name: IOT_FABRIC_SSID enable_fabric: true enable_flex_connect: false additional_interfaces: - dc_interface - security_vlan404 ap_zones: - name: CORPORATE_ZONE_HIGH_DENSITY rf_profile_name: HIGH_DENSITY_RF_PROFILE ssids: - CORPORATE_FABRIC_SSID - name: IOT_ZONE_LOW_POWER rf_profile_name: LOWEST_RF_PROFILE ssids: - IOT_FABRIC_SSID - name: ENTERPRISE_NON_FABRIC sites: - Global/Branches ssid_details: - name: GUEST_FLEXCONNECT_SSID enable_fabric: false enable_flex_connect: true local_to_vlan: 200 interface_name: guest_interface - name: BYOD_HYBRID_SSID enable_fabric: false enable_flex_connect: false interface_name: byod_interface ap_zones: - name: CORPORATE_ZONE_HIGH_DENSITY rf_profile_name: HIGH_DENSITY_RF_PROFILE ssids: - BYOD_HYBRID_SSID - name: GUEST_ZONE_STANDARD rf_profile_name: STANDARD_RF_PROFILE ssids: - GUEST_FLEXCONNECT_SSID additional_interfaces: - branch_interface - vlan_202Location in GUI:
Design » Network Profiles
Diagram
Section titled “Diagram”Classes
Section titled “Classes”network_profiles (catalyst_center)
Section titled “network_profiles (catalyst_center)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| wireless | List | [wireless] | No |
wireless (catalyst_center.network_profiles)
Section titled “wireless (catalyst_center.network_profiles)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Yes | ||
| sites | List | String | No | |
| ssid_details | List | [ssid_details] | No | |
| additional_interfaces | List | String | No | |
| ap_zones | List | [ap_zones] | No | |
| site_tags | List | [site_tags] | No |
ssid_details (catalyst_center.network_profiles.wireless)
Section titled “ssid_details (catalyst_center.network_profiles.wireless)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | No | ||
| enable_fabric | Boolean | true, false | No | |
| enable_flex_connect | Boolean | true, false | No | |
| local_to_vlan | Integer | No | ||
| wlan_profile_name | String | No | ||
| interface_name | String | No | management | |
| dot11be_profile_name | String | No | ||
| anchor_group_name | String | No | ||
| vlan_group_name | String | No |
ap_zones (catalyst_center.network_profiles.wireless)
Section titled “ap_zones (catalyst_center.network_profiles.wireless)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Yes | ||
| rf_profile_name | String | Yes | ||
| ssids | List | String | Yes |
site_tags (catalyst_center.network_profiles.wireless)
Section titled “site_tags (catalyst_center.network_profiles.wireless)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Yes | ||
| ap_profile_name | String | Yes | ||
| flex_profile_name | String | No | default-flex-profile | |
| sites | List | String | Yes |
Wireless Network Profiles bind SSIDs to sites and define how wireless networks are deployed. Each profile contains ssid_details with fabric/FlexConnect mode, VLAN mappings, 802.11be Profiles, and Anchor Groups. Profiles can also include ap_zones for RF Profile assignment and site_tags for AP Profile linking. Applicable to both SDA fabric and non-fabric deployments.
Examples
Section titled “Examples”Example 1: Wireless Network Profile WIRELESS_PROFILE with fabric enabled SSID_1 attached and multiple sites assigned
catalyst_center: network_profiles: wireless: - name: WIRELESS_PROFILE ssid_details: - name: SSID_1 enable_fabric: true enable_flex_connect: false sites: - Global/United States/Golden Hills Campus/Sunset Tower - Global/United States/Lakefront Tower/Windy City Plaza - Global/United States/Oceanfront Mansion/Art Deco Mansion - Global/United States/Desert Oasis Branch/Desert Oasis TowerExample 2: Wireless Network Profile W_Cat9800-CL with fabric enabled 802_1X_SSID attached, one site assigned, additional interface Gi1/0/2, and AP zone AP_ZONE with RF profile BASIC_PROFILE_1
catalyst_center: network_profiles: wireless: - name: W_Cat9800-CL sites: - Global/Poland/Warsaw/Bld_B ssid_details: - name: 802_1X_SSID enable_fabric: true additional_interfaces: - Gi1/0/2 ap_zones: - name: AP_ZONE rf_profile_name: BASIC_PROFILE_1 ssids: - 802_1X_SSIDExample 3: Wireless Network Profile with Wi-Fi 7 (802.11be) profile assignment and Site Tags linking AP profiles to specific sites. The dot11be_profile_name links an SSID to a pre-configured 802.11be profile for enhanced performance features like OFDMA and MU-MIMO (requires IOS-XE 17.15+)
catalyst_center: network_profiles: wireless: - name: WIFI7_ENTERPRISE_PROFILE sites: - Global/HQ/Building_A - Global/HQ/Building_B ssid_details: - name: WIFI7_CORPORATE_SSID enable_fabric: true dot11be_profile_name: WIFI7_HIGH_PERFORMANCE - name: WIFI7_GUEST_SSID enable_fabric: false enable_flex_connect: true local_to_vlan: 100 dot11be_profile_name: WIFI7_STANDARD ap_zones: - name: HIGH_DENSITY_ZONE rf_profile_name: WIFI6E_TRI_BAND_PROFILE ssids: - WIFI7_CORPORATE_SSID site_tags: - name: WIFI7_HQ_TAG ap_profile_name: WIFI7_AP_PROFILE sites: - Global/HQ/Building_A - Global/HQ/Building_BExample 4: Wireless Network Profile with Guest SSID tunneled to an Anchor Group. The anchor_group_name references a pre-configured Anchor Group for guest traffic tunneling to anchor WLCs. When anchor_group_name is set, FlexConnect settings are not applicable
catalyst_center: network_profiles: wireless: - name: GUEST_ANCHOR_PROFILE sites: - Global/HQ/Building_A ssid_details: - name: GUEST_SSID enable_fabric: false anchor_group_name: AG_Guest interface_name: guest_vlanNote: interface_name and vlan_group_name are mutually exclusive — only one can be set per SSID. Neither is applicable when enable_fabric is true.
Example 5: Wireless Network Profile with VLAN Group for client VLAN load-balancing. The vlan_group_name references a pre-configured VLAN Group on the WLC to distribute wireless clients across multiple VLANs in a round-robin fashion. Mutually exclusive with interface_name and not applicable when fabric is enabled.
catalyst_center: network_profiles: wireless: - name: VLAN_LB_PROFILE sites: - Global/HQ/Building_A ssid_details: - name: CORPORATE_SSID enable_fabric: false vlan_group_name: CORP_VLAN_GROUPExample 6: Two distinct wireless network profiles demonstrating fabric vs non-fabric deployments: ENTERPRISE_FABRIC for SDA-enabled sites with fabric SSIDs, Wi-Fi profiles, and high-density zones, and ENTERPRISE_NON_FABRIC for traditional branch deployments with FlexConnect SSIDs, VLAN mappings, and standard RF configurations
catalyst_center: network_profiles: wireless: - name: ENTERPRISE_FABRIC sites: - Global/HQ - Global/Campus ssid_details: - name: CORPORATE_FABRIC_SSID enable_fabric: true enable_flex_connect: false wlan_profile_name: CORPORATE_FABRIC_SSID_profile - name: IOT_FABRIC_SSID enable_fabric: true enable_flex_connect: false additional_interfaces: - dc_interface - security_vlan404 ap_zones: - name: CORPORATE_ZONE_HIGH_DENSITY rf_profile_name: HIGH_DENSITY_RF_PROFILE ssids: - CORPORATE_FABRIC_SSID - name: IOT_ZONE_LOW_POWER rf_profile_name: LOWEST_RF_PROFILE ssids: - IOT_FABRIC_SSID - name: ENTERPRISE_NON_FABRIC sites: - Global/Branches ssid_details: - name: GUEST_FLEXCONNECT_SSID enable_fabric: false enable_flex_connect: true local_to_vlan: 200 interface_name: guest_interface - name: BYOD_HYBRID_SSID enable_fabric: false enable_flex_connect: false interface_name: byod_interface ap_zones: - name: CORPORATE_ZONE_HIGH_DENSITY rf_profile_name: HIGH_DENSITY_RF_PROFILE ssids: - BYOD_HYBRID_SSID - name: GUEST_ZONE_STANDARD rf_profile_name: STANDARD_RF_PROFILE ssids: - GUEST_FLEXCONNECT_SSID additional_interfaces: - branch_interface - vlan_202Location in GUI:
Design » Network Profiles
Diagram
Section titled “Diagram”Classes
Section titled “Classes”network_profiles (catalyst_center)
Section titled “network_profiles (catalyst_center)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| wireless | List | [wireless] | No |
wireless (catalyst_center.network_profiles)
Section titled “wireless (catalyst_center.network_profiles)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Yes | ||
| sites | List | String | No | |
| ssid_details | List | [ssid_details] | No | |
| additional_interfaces | List | String | No | |
| ap_zones | List | [ap_zones] | No |
ssid_details (catalyst_center.network_profiles.wireless)
Section titled “ssid_details (catalyst_center.network_profiles.wireless)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | No | ||
| enable_fabric | Boolean | true, false | No | |
| enable_flex_connect | Boolean | true, false | No | |
| local_to_vlan | Integer | No | ||
| wlan_profile_name | String | No | ||
| interface_name | String | No | management | |
| dot11be_profile_name | String | No |
ap_zones (catalyst_center.network_profiles.wireless)
Section titled “ap_zones (catalyst_center.network_profiles.wireless)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Yes | ||
| rf_profile_name | String | Yes | ||
| ssids | List | String | Yes |
Examples
Section titled “Examples”Example 1: Wireless Network Profile WIRELESS_PROFILE with fabric enabled SSID_1 attached and multiple sites assigned
catalyst_center: network_profiles: wireless: - name: WIRELESS_PROFILE ssid_details: - name: SSID_1 enable_fabric: true enable_flex_connect: false sites: - Global/United States/Golden Hills Campus/Sunset Tower - Global/United States/Lakefront Tower/Windy City Plaza - Global/United States/Oceanfront Mansion/Art Deco Mansion - Global/United States/Desert Oasis Branch/Desert Oasis TowerExample 2: Wireless Network Profile W_Cat9800-CL with fabric enabled 802_1X_SSID attached, one site assigned, additional interface Gi1/0/2, and AP zone AP_ZONE with RF profile BASIC_PROFILE_1
catalyst_center: network_profiles: wireless: - name: W_Cat9800-CL sites: - Global/Poland/Warsaw/Bld_B ssid_details: - name: 802_1X_SSID enable_fabric: true additional_interfaces: - Gi1/0/2 ap_zones: - name: AP_ZONE rf_profile_name: BASIC_PROFILE_1 ssids: - 802_1X_SSIDExample 3: Wireless Network Profile with Wi-Fi 7 (802.11be) profile assignment for next-generation wireless deployments. The dot11be_profile_name links an SSID to a pre-configured 802.11be profile for enhanced performance features like OFDMA and MU-MIMO (requires IOS-XE 17.15+)
catalyst_center: network_profiles: wireless: - name: WIFI7_ENTERPRISE_PROFILE sites: - Global/HQ/Building_A ssid_details: - name: WIFI7_CORPORATE_SSID enable_fabric: true dot11be_profile_name: WIFI7_HIGH_PERFORMANCE - name: WIFI7_GUEST_SSID enable_fabric: false enable_flex_connect: true local_to_vlan: 100 dot11be_profile_name: WIFI7_STANDARD ap_zones: - name: HIGH_DENSITY_ZONE rf_profile_name: WIFI6E_TRI_BAND_PROFILE ssids: - WIFI7_CORPORATE_SSIDExample 4: Two distinct wireless network profiles demonstrating fabric vs non-fabric deployments: ENTERPRISE_FABRIC for SDA-enabled sites with fabric SSIDs, Wi-Fi profiles, and high-density zones, and ENTERPRISE_NON_FABRIC for traditional branch deployments with FlexConnect SSIDs, VLAN mappings, and standard RF configurations
catalyst_center: network_profiles: wireless: - name: ENTERPRISE_FABRIC sites: - Global/HQ - Global/Campus ssid_details: - name: CORPORATE_FABRIC_SSID enable_fabric: true enable_flex_connect: false wlan_profile_name: CORPORATE_FABRIC_SSID_profile - name: IOT_FABRIC_SSID enable_fabric: true enable_flex_connect: false additional_interfaces: - dc_interface - security_vlan404 ap_zones: - name: CORPORATE_ZONE_HIGH_DENSITY rf_profile_name: HIGH_DENSITY_RF_PROFILE ssids: - CORPORATE_FABRIC_SSID - name: IOT_ZONE_LOW_POWER rf_profile_name: LOWEST_RF_PROFILE ssids: - IOT_FABRIC_SSID - name: ENTERPRISE_NON_FABRIC sites: - Global/Branches ssid_details: - name: GUEST_FLEXCONNECT_SSID enable_fabric: false enable_flex_connect: true local_to_vlan: 200 interface_name: guest_interface - name: BYOD_HYBRID_SSID enable_fabric: false enable_flex_connect: false interface_name: byod_interface ap_zones: - name: CORPORATE_ZONE_HIGH_DENSITY rf_profile_name: HIGH_DENSITY_RF_PROFILE ssids: - BYOD_HYBRID_SSID - name: GUEST_ZONE_STANDARD rf_profile_name: STANDARD_RF_PROFILE ssids: - GUEST_FLEXCONNECT_SSID additional_interfaces: - branch_interface - vlan_202