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 |
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 | 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 Tower
Example 2: Wireless Network Profile W_Cat9800-CL
with fabric enabled 802_1X_SSID
attached and one site assigned with additional interface Gi1/0/2
and ap zone AP_ZONE
with rf profile BASIC_PROFILE_1
with ssid 802_1X_SSID
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_SSID
Example 3: 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