diff --git a/plugins/module_utils/network_profiles.py b/plugins/module_utils/network_profiles.py index 5ceb1451a..6295e58cd 100644 --- a/plugins/module_utils/network_profiles.py +++ b/plugins/module_utils/network_profiles.py @@ -995,7 +995,11 @@ def execute_process_task_data( if task_status == "FAILURE": self.result["changed"] = False self.result["response"] = self.get_task_details_by_id(task_id) - return self.result["response"] + self.log( + "Task {0} failed: {1}".format(task_id, self.result["response"]), + "ERROR" + ) + return None self.log( "Pauses execution for {0} seconds.".format(resync_retry_interval), diff --git a/plugins/modules/network_profile_wireless_workflow_manager.py b/plugins/modules/network_profile_wireless_workflow_manager.py index 2eb40b966..e24b5223d 100644 --- a/plugins/modules/network_profile_wireless_workflow_manager.py +++ b/plugins/modules/network_profile_wireless_workflow_manager.py @@ -8,7 +8,7 @@ from __future__ import absolute_import, division, print_function __metaclass__ = type -__author__ = ["A Mohamed Rafeek, Madhan Sankaranarayanan"] +__author__ = ["A Mohamed Rafeek, Madhan Sankaranarayanan, Sunil Shatagopa"] DOCUMENTATION = r""" --- @@ -30,6 +30,7 @@ author: - A Mohamed Rafeek (@mabdulk2) - Madhan Sankaranarayanan (@madhansansel) + - Sunil Shatagopa (@shatagopasunil) options: config_verify: description: | @@ -61,6 +62,11 @@ site_names: description: | List of site names assigned to the profile. For example, ["Global/USA/New York/BLDNYC"]. + When used with state=merged, these sites will be assigned to the profile. + When used with state=deleted, these sites will be unassigned from the profile + (without deleting the profile itself). If a parent site is assigned to the profile + and is not included in the removal list, child sites under that parent cannot be + removed due to inheritance and will be skipped with a warning. type: list elements: str required: false @@ -639,6 +645,8 @@ def __init__(self, module): self.supported_states = ["merged", "deleted"] self.created, self.deleted, self.not_processed = [], [], [] self.remove_profile_data, self.already_removed = [], [] + self.removed_sites = [] + self.skipped_sites = [] self.keymap = dict( profile_name="wirelessProfileName", @@ -668,6 +676,12 @@ def __init__(self, module): "RRM_GENERAL_CONFIGURATION", ] + def reset_values(self): + """Reset all neccessary attributes to default values""" + super().reset_values() + self.removed_sites = [] + self.skipped_sites = [] + def validate_input(self): """ Validate the fields provided in the playbook. @@ -3358,7 +3372,7 @@ def get_diff_merged(self, config): profile_response["template_status"] = msg self.created.append(profile_response) - self.msg = "Wireless Profile created/updated successfully for '{0}'.".format( + self.msg = "Wireless profile created/updated successfully for '{0}'.".format( str(self.created) ) self.changed = True @@ -3467,6 +3481,7 @@ def remove_network_profile_data(self, each_profile, each_have_profile): "feature_template_designs_status": False, "day_n_templates_status": False, "site_remove_status": False, + "site_skip_status": False, } # Execute removal operations using helper functions @@ -3503,6 +3518,7 @@ def remove_network_profile_data(self, each_profile, each_have_profile): each_profile, each_have_profile, have_profile_name, have_profile_id ) remove_required["site_remove_status"] = len(unassign_sites) > 0 + remove_required["site_skip_status"] = len(self.skipped_sites) > 0 # Profile update processing profile_update_required = ( @@ -3930,6 +3946,60 @@ def _remove_day_n_templates(self, each_profile, each_have_profile, have_profile_ return unassign_templates + def is_parent_assigned(self, site_name, assigned_site_ids, removal_list): + """ + Recursively check if any ancestor site is assigned to the profile. + + Parameters: + site_name (str): The site hierarchy path to check (e.g., "Global/USA/BLD1/FLOOR3") + assigned_site_ids (set): Set of site IDs currently assigned to the profile + removal_list (list): List of site names being removed in this operation + + Returns: + tuple: (bool, str or None) - (True if a parent is assigned, parent site name that blocks removal) + """ + if site_name == "Global": + self.log( + "Reached root site 'Global' - no parent site blocks removal.", + "DEBUG" + ) + return False, None + + parent = site_name.rsplit("/", 1)[0] + + # No "/" left (malformed path or already at top) - stop recursion safely + if parent == site_name: + self.log( + "No further parent to check for site '{0}' - stopping recursion.".format( + site_name + ), + "DEBUG" + ) + return False, None + + parent_exists, parent_id = self.get_site_id(parent) + + if not parent_exists: + self.log( + "Parent site '{0}' does not exist in the system - stopping recursion.".format( + parent + ), + "DEBUG" + ) + return False, None + + if parent_id in assigned_site_ids and parent not in removal_list: + self.log( + "Parent site '{0}' (ID: {1}) is assigned to the profile and not in " + "the removal list. Child site cannot be removed due to inheritance.".format( + parent, parent_id + ), + "WARNING" + ) + return True, parent + + return self.is_parent_assigned(parent, assigned_site_ids, removal_list) + def _remove_site_names(self, each_profile, each_have_profile, have_profile_name, have_profile_id): """ Remove site name assignments from the wireless network profile. @@ -3956,10 +4026,33 @@ def _remove_site_names(self, each_profile, each_have_profile, have_profile_name, unassign_sites = [] sites_removed = 0 + sites_skipped = [] + + # Reset per-profile trackers so multi-profile playbooks don't accumulate + self.removed_sites = [] + self.skipped_sites = [] + + # Build set of currently assigned site IDs for parent check + assigned_site_ids = set() + for site in each_have_profile.get("previous_sites", []): + site_id = site.get("id") + if site_id: + assigned_site_ids.add(site_id) + + self.log( + "Built assigned site IDs set with {0} entries for parent check: {1}".format( + len(assigned_site_ids), assigned_site_ids + ), + "DEBUG" + ) + + # Sort site_names by hierarchy depth (parents first) + site_names = sorted(site_names, key=lambda x: x.count("/")) self.log( - "Processing site removal for {0} sites from profile '{1}'".format( - len(site_names), have_profile_name + "Processing site removal for {0} sites from profile '{1}'. " + "Sites sorted by hierarchy depth (parents first): {2}".format( + len(site_names), have_profile_name, site_names ), "INFO" ) @@ -3978,6 +4071,30 @@ def _remove_site_names(self, each_profile, each_have_profile, have_profile_name, ) continue + # Check if any parent site is still assigned to the profile + self.log( + "Checking if any ancestor of site '{0}' is assigned to the profile.".format( + site_name + ), + "DEBUG" + ) + parent_assigned, blocking_parent = self.is_parent_assigned( + site_name, assigned_site_ids, site_names + ) + + if parent_assigned: + skip_msg = ( + "Site '{0}' skipped - parent site '{1}' is still assigned to the profile. " + "Child site(s) will not be removed if the parent is not removed. " + "In case the parent is associated to another Network profile, " + "Child Site(s) will get associated to the same.".format( + site_name, blocking_parent + ) + ) + self.log(skip_msg, "WARNING") + sites_skipped.append(site_name) + continue + for have_site in each_have_profile.get("site_response", {}): have_site_name = have_site.get("site_names") have_site_id = have_site.get("site_id") @@ -3993,9 +4110,24 @@ def _remove_site_names(self, each_profile, each_have_profile, have_profile_name, unassign_response = self.unassign_site_to_network_profile( have_profile_name, have_profile_id, have_site_name, have_site_id ) + + if not unassign_response: + self.log( + "Failed to unassign site '{0}' from profile '{1}'.".format( + have_site_name, have_profile_name + ), + "ERROR" + ) + continue + unassign_sites.append(unassign_response) + self.removed_sites.append(site_name) sites_removed += 1 + # Remove the site ID from assigned_site_ids so children can be removed + if have_site_id in assigned_site_ids: + assigned_site_ids.discard(have_site_id) + self.log( "Successfully unassigned site '{0}' from profile '{1}'".format( have_site_name, have_profile_name @@ -4003,12 +4135,22 @@ def _remove_site_names(self, each_profile, each_have_profile, have_profile_name, "INFO" ) - self.log( - "Site removal completed - removed {0} site assignments from profile".format( - sites_removed - ), - "INFO" - ) + if sites_skipped: + self.log( + "Site removal completed - removed {0} site(s), skipped {1} site(s) " + "due to parent inheritance: {2}".format( + sites_removed, len(sites_skipped), sites_skipped + ), + "WARNING" + ) + self.skipped_sites = sites_skipped + else: + self.log( + "Site removal completed - removed {0} site assignments from profile".format( + sites_removed + ), + "INFO" + ) return unassign_sites @@ -4202,7 +4344,7 @@ def get_diff_deleted(self, each_profile): ) self.deleted.append(profile_response) - self.msg = "Wireless Profile deleted successfully for '{0}'.".format( + self.msg = "Wireless profile deleted successfully for '{0}'.".format( str(self.deleted) ) @@ -4235,12 +4377,22 @@ def get_diff_deleted(self, each_profile): "additional_interfaces_status" ]) + if remove_status and not removal_occurred and remove_status.get("site_skip_status"): + self.msg = ( + "No sites were unassigned from wireless profile '{0}'. " + "Sites '{1}' skipped due to parent inheritance." + ).format(have_profile_name, "', '".join(self.skipped_sites)) + self.already_removed.append(have_profile_name) + self.set_operation_result( + "success", False, self.msg, "INFO", remove_status + ).check_return_status() + return self + if not remove_status or not removal_occurred: self.msg = ( "Profile data already removed or not exist to remove data from " "profile: '{0}'.".format(have_profile_name) ) - self.log(self.msg, "DEBUG") self.already_removed.append(have_profile_name) self.set_operation_result( "success", False, self.msg, "INFO", have_profile_name @@ -4248,19 +4400,33 @@ def get_diff_deleted(self, each_profile): return self # Build comprehensive removal success message - self.msg = "Wireless Profile data removed successfully for '{0}'.".format( + self.msg = "Wireless profile data removed successfully for '{0}'.".format( profile_name ) response_status = {} # Process site removal status - if remove_status.get("site_remove_status"): - sites = each_profile.get("site_names", []) - sites_message = "Sites '{0}' unassigned successfully.".format( - "', '".join(sites) - ) - self.msg += " " + sites_message - response_status["site_remove_status"] = sites_message + if remove_status.get("site_remove_status") or self.skipped_sites: + response_status["sites_removed"] = self.removed_sites + response_status["sites_skipped"] = self.skipped_sites + if self.skipped_sites: + response_status["skip_reason"] = ( + "Child site(s) will not be deleted if its parent is not deleted. " + "In order to remove only the child site(s), please have them " + "associated to another Network profile." + ) + + sites_message = "" + if self.removed_sites: + sites_message = "Sites '{0}' unassigned successfully.".format( + "', '".join(self.removed_sites) + ) + if self.skipped_sites: + sites_message += " Sites '{0}' skipped due to parent inheritance.".format( + "', '".join(self.skipped_sites) + ) + if sites_message: + self.msg += " " + sites_message.strip() # Process Day N template removal status if remove_status.get("day_n_templates_status"): diff --git a/tests/unit/modules/catalyst/fixtures/network_profile_wireless_workflow_manager.json b/tests/unit/modules/catalyst/fixtures/network_profile_wireless_workflow_manager.json index 5a4dc9740..d0c62a700 100644 --- a/tests/unit/modules/catalyst/fixtures/network_profile_wireless_workflow_manager.json +++ b/tests/unit/modules/catalyst/fixtures/network_profile_wireless_workflow_manager.json @@ -1,8531 +1,8689 @@ { - "profile_creation_config": [{ - "profile_name": "wireless profile test1", - "site_names": [ - "Global/Madurai" - ], - "ssid_details": [ - { - "ssid_name": "guest_wifi_2", - "enable_fabric": false, - "dot11be_profile_name": "test_802_profile_1", - "interface_name": "test_interface_1", - "local_to_vlan": 2001 - } - ], - "ap_zones": [ - { - "ap_zone_name": "AP_Zone_North", - "rf_profile_name": "LOW", - "ssids": [ - "guest_wifi_2" - ] - } - ], - "onboarding_templates": null, - "day_n_templates": [ - "WLC Template" - ], - "additional_interfaces": [ - { - "interface_name": "GigabitEthernet0/2", - "vlan_id": 20 - } - ], - "feature_template_designs": [ - { - "design_type": "FLEX_CONFIGURATION", - "feature_templates": [ - "Default Flex Configuration" - ] - } - ] - }], - "profile_creation_config_feature_template": [{ - "feature_template_designs": [ - { - "design_type": "CLEANAIR_CONFIGURATION", - "feature_templates": [ - "Default CleanAir 802.11b Design", - "Default CleanAir 6GHz Design" - ] - } - ], - "profile_name": "New75_Campus_Wireless_Profile1", - "site_names": [ - "Global/India/Bangalore/bld1" - ], - "ssid_details": [ - { - "dot11be_profile_name": "Hello", - "enable_fabric": false, - "ssid_name": "posture", - "vlan_group_name": "Ans_NP_WL_INT_group_1" - } - ] - }], - - "wireless_profile_list": { - "response": [ - { - "id": "768f5b27-1c6d-4626-9cf2-33ed69b13b0b", - "name": "rafeek_wireless_1", - "type": "Wireless" - }, - { - "id": "d37ee2f8-655e-43da-89c4-08bdca7f4759", - "name": "rafeek_wireless_2", - "type": "Wireless" - } - ], - "version": "1.0" - }, - - "no_response_received": null, - - "available_templates": [ + "profile_creation_config": [ + { + "profile_name": "wireless profile test1", + "site_names": [ + "Global/Madurai" + ], + "ssid_details": [ { - "name": "Ansible_PNP_Switch", - "projectName": "Onboarding Configuration", - "projectId": "a5c62e74-968b-45d0-bc67-4ae6a5b341ce", - "templateId": "c79f4a36-ab36-478d-8bee-848d01606a87", - "versionsInfo": [ - { - "id": "4fe2f46a-3654-4187-81e4-b28bc107f5aa", - "description": "", - "author": "admin", - "version": "3", - "versionComment": "", - "versionTime": 1727827112635 - }, - { - "id": "3630f8ba-0e6d-4652-bfa0-5bde0e31bdf0", - "description": "", - "author": "admin", - "version": "1", - "versionComment": "", - "versionTime": 1727826624453 - }, - { - "id": "a9d28bdd-afac-462e-a1b2-e102a7f2ded5", - "description": "", - "author": "admin", - "version": "2", - "versionComment": "", - "versionTime": 1727826687240 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 9300 Series Switches" - } - ] - }, + "ssid_name": "guest_wifi_2", + "enable_fabric": false, + "dot11be_profile_name": "test_802_profile_1", + "interface_name": "test_interface_1", + "local_to_vlan": 2001 + } + ], + "ap_zones": [ { - "name": "WLC Template", - "projectName": "ODC Provisioning", - "projectId": "fa18dd05-d41c-441c-af44-8e2644781823", - "templateId": "5935fbdb-3d4c-4d6c-be5f-c61401be6b93", - "versionsInfo": [ - { - "id": "38a74df1-779c-441e-97ce-9b4670cd1fd0", - "description": "", - "author": "admin", - "version": "3", - "versionComment": "", - "versionTime": 1740777392227 - }, - { - "id": "ffa990c4-df80-4f70-90e2-f7e9d6869865", - "description": "", - "author": "admin", - "version": "2", - "versionComment": "", - "versionTime": 1730796226724 - }, - { - "id": "719eed23-3a4f-4f71-a425-fdae7d6adc49", - "description": "", - "author": "admin", - "version": "1", - "versionComment": "", - "versionTime": 1730785136128 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Wireless Controller" - } - ] + "ap_zone_name": "AP_Zone_North", + "rf_profile_name": "LOW", + "ssids": [ + "guest_wifi_2" + ] + } + ], + "onboarding_templates": null, + "day_n_templates": [ + "WLC Template" + ], + "additional_interfaces": [ + { + "interface_name": "GigabitEthernet0/2", + "vlan_id": 20 } + ], + "feature_template_designs": [ + { + "design_type": "FLEX_CONFIGURATION", + "feature_templates": [ + "Default Flex Configuration" + ] + } + ] + } + ], + "profile_creation_config_feature_template": [ + { + "feature_template_designs": [ + { + "design_type": "CLEANAIR_CONFIGURATION", + "feature_templates": [ + "Default CleanAir 802.11b Design", + "Default CleanAir 6GHz Design" + ] + } + ], + "profile_name": "New75_Campus_Wireless_Profile1", + "site_names": [ + "Global/India/Bangalore/bld1" + ], + "ssid_details": [ + { + "dot11be_profile_name": "Hello", + "enable_fabric": false, + "ssid_name": "posture", + "vlan_group_name": "Ans_NP_WL_INT_group_1" + } + ] + } + ], + "wireless_profile_list": { + "response": [ + { + "id": "768f5b27-1c6d-4626-9cf2-33ed69b13b0b", + "name": "rafeek_wireless_1", + "type": "Wireless" + }, + { + "id": "d37ee2f8-655e-43da-89c4-08bdca7f4759", + "name": "rafeek_wireless_2", + "type": "Wireless" + } ], - - "get_site_details_mdu": { - "response": [ - { - "id": "976ec932-e5b3-403c-add8-09ebc0af0f03", - "parentId": "50f15f14-4c73-47a7-9dc3-cb10eb9508bd", - "name": "Madurai", - "nameHierarchy": "Global/Madurai", - "type": "area" - } - ], - "version": "1.0" - }, - - "get_site_details_mdu_child": { - "response": [ - { - "id": "61a79a23-210b-44d8-84fa-6f0a7d08f73b", - "parentId": "976ec932-e5b3-403c-add8-09ebc0af0f03", - "name": "LTTS", - "nameHierarchy": "Global/Madurai/LTTS", - "type": "building", - "latitude": 23.3, - "longitude": 23.4, - "address": "Kufra, Libya", - "country": "Libya" - }, - { - "id": "65761e39-fd3f-4eec-b174-ba968c0c7fee", - "parentId": "61a79a23-210b-44d8-84fa-6f0a7d08f73b", - "name": "FLOOR1", - "nameHierarchy": "Global/Madurai/LTTS/FLOOR1", - "type": "floor", - "floorNumber": 1, - "rfModel": "Cubes And Walled Offices", - "width": 100.0, - "length": 100.0, - "height": 10.0, - "unitsOfMeasure": "feet" - } - ], - "version": "1.0" - }, - - "get_site_details_global":{ - "response": [ - { - "id": "50f15f14-4c73-47a7-9dc3-cb10eb9508bd", - "name": "Global", - "type": "global" - } - ] - }, - - "get_ssids_for_global": { - "response": [ + "version": "1.0" + }, + "no_response_received": null, + "available_templates": [ + { + "name": "Ansible_PNP_Switch", + "projectName": "Onboarding Configuration", + "projectId": "a5c62e74-968b-45d0-bc67-4ae6a5b341ce", + "templateId": "c79f4a36-ab36-478d-8bee-848d01606a87", + "versionsInfo": [ { - "id": "mda5B3bL-BJeT-AwfJ-BZbW-mwuYBJmXnc01AtzHn2m4BZLWmtbL", - "profileName": "open1-iac_profile", - "ssid": "open1-iac", - "wlanType": "Enterprise", - "authType": "OPEN", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": [], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "open1-iac_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "4fe2f46a-3654-4187-81e4-b28bc107f5aa", + "description": "", + "author": "admin", + "version": "3", + "versionComment": "", + "versionTime": 1727827112635 }, { - "id": "mdeYz3vL-C3rF-D2LM-Av8Y-zZb1mwuYCZn0nf81DZzPn2y4AtLF", - "profileName": "guest_wifi_2_profile", - "ssid": "guest_wifi_2", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "guest_wifi_2_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": false, - "isHex": false, - "isBroadcastSSID": false, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "3630f8ba-0e6d-4652-bfa0-5bde0e31bdf0", + "description": "", + "author": "admin", + "version": "1", + "versionComment": "", + "versionTime": 1727826624453 }, { - "id": "mdeYz3vL-C3rF-C3nP-zf8X-zZb1mwuYCZn0nf81CZzZn2K4zdLF", - "profileName": "guest_ssid_1_profile", - "ssid": "guest_ssid_1", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "10.0.0.1" - ], - "acctServers": [ - "10.0.0.1" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "guest_ssid_1_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "a9d28bdd-afac-462e-a1b2-e102a7f2ded5", + "description": "", + "author": "admin", + "version": "2", + "versionComment": "", + "versionTime": 1727826687240 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ + { + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 9300 Series Switches" + } + ] + }, + { + "name": "WLC Template", + "projectName": "ODC Provisioning", + "projectId": "fa18dd05-d41c-441c-af44-8e2644781823", + "templateId": "5935fbdb-3d4c-4d6c-be5f-c61401be6b93", + "versionsInfo": [ + { + "id": "38a74df1-779c-441e-97ce-9b4670cd1fd0", + "description": "", + "author": "admin", + "version": "3", + "versionComment": "", + "versionTime": 1740777392227 + }, + { + "id": "ffa990c4-df80-4f70-90e2-f7e9d6869865", + "description": "", + "author": "admin", + "version": "2", + "versionComment": "", + "versionTime": 1730796226724 }, { - "id": "mdaZmtiZ-mtaY-mtmY-mtmY-ndm1mtyYnZm4mtKYmtaZmteXmtiY", - "profileName": "123_profile", - "ssid": "123", - "wlanType": "Enterprise", - "authType": "WPA2_WPA3_PERSONAL", - "l3AuthType": "open", - "passphrase": "NO!$DATA!$", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": [], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": true, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [ - "AP Location" - ], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "123_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": [], - "clientRateLimit": 90000, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": true, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": true, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": true, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "719eed23-3a4f-4f71-a425-fdae7d6adc49", + "description": "", + "author": "admin", + "version": "1", + "versionComment": "", + "versionTime": 1730785136128 } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ + { + "productFamily": "Wireless Controller" + } + ] + } + ], + "get_site_details_mdu": { + "response": [ + { + "id": "976ec932-e5b3-403c-add8-09ebc0af0f03", + "parentId": "50f15f14-4c73-47a7-9dc3-cb10eb9508bd", + "name": "Madurai", + "nameHierarchy": "Global/Madurai", + "type": "area" + } ], "version": "1.0" - }, - - "get_additional_interface1": { - "response": [ - { - "id": "mde4r2LN-ywjP-Dev0-AgvY-BMv0mc8YrZbPmwCYytnIngK1Ddzf", - "interfaceName": "GigabitEthernet0/2", - "vlanId": 20 - } + }, + "get_site_details_mdu_child": { + "response": [ + { + "id": "61a79a23-210b-44d8-84fa-6f0a7d08f73b", + "parentId": "976ec932-e5b3-403c-add8-09ebc0af0f03", + "name": "LTTS", + "nameHierarchy": "Global/Madurai/LTTS", + "type": "building", + "latitude": 23.3, + "longitude": 23.4, + "address": "Kufra, Libya", + "country": "Libya" + }, + { + "id": "65761e39-fd3f-4eec-b174-ba968c0c7fee", + "parentId": "61a79a23-210b-44d8-84fa-6f0a7d08f73b", + "name": "FLOOR1", + "nameHierarchy": "Global/Madurai/LTTS/FLOOR1", + "type": "floor", + "floorNumber": 1, + "rfModel": "Cubes And Walled Offices", + "width": 100.0, + "length": 100.0, + "height": 10.0, + "unitsOfMeasure": "feet" + } + ], + "version": "1.0" + }, + "get_site_details_global": { + "response": [ + { + "id": "50f15f14-4c73-47a7-9dc3-cb10eb9508bd", + "name": "Global", + "type": "global" + } + ] + }, + "get_ssids_for_global": { + "response": [ + { + "id": "mda5B3bL-BJeT-AwfJ-BZbW-mwuYBJmXnc01AtzHn2m4BZLWmtbL", + "profileName": "open1-iac_profile", + "ssid": "open1-iac", + "wlanType": "Enterprise", + "authType": "OPEN", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": [], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "open1-iac_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeYz3vL-C3rF-D2LM-Av8Y-zZb1mwuYCZn0nf81DZzPn2y4AtLF", + "profileName": "guest_wifi_2_profile", + "ssid": "guest_wifi_2", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "guest_wifi_2_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": false, + "isHex": false, + "isBroadcastSSID": false, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeYz3vL-C3rF-C3nP-zf8X-zZb1mwuYCZn0nf81CZzZn2K4zdLF", + "profileName": "guest_ssid_1_profile", + "ssid": "guest_ssid_1", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "10.0.0.1" ], - "version": "1.0" - }, - - "get_dot11be_profile": { - "response": [ - { - "id": "5b711957-6620-3851-93c0-3b8360ea688d", - "profileName": "test_802_profile_1", - "muMimoDownLink": false, - "muMimoUpLink": false, - "ofdmaDownLink": true, - "ofdmaUpLink": true, - "ofdmaMultiRu": false, - "default": true - } + "acctServers": [ + "10.0.0.1" ], - "version": "1.0" - }, - - "response_for_profile_creation": { - "response": { - "taskId": "019675c0-a30a-72a9-adba-d05be846e702", - "url": "/api/v1/task/019675c0-a30a-72a9-adba-d05be846e702" - }, - "version": "1.0" - }, - - "get_task_details_response": { - "response": { - "endTime": 1745732281128, - "status": "SUCCESS", - "startTime": 1745732281098, - "resultLocation": "/dna/intent/api/v1/tasks/019675c0-a30a-72a9-adba-d05be846e702/detail", - "id": "019675c0-a30a-72a9-adba-d05be846e702" - }, - "version": "1.0" - }, - - "get_task_progress": { - "response": { - "progress": "Network Profile [07b6329f-a236-4f1f-81d7-853050ced201] Successfully Created" - } + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "guest_ssid_1_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdaZmtiZ-mtaY-mtmY-mtmY-ndm1mtyYnZm4mtKYmtaZmteXmtiY", + "profileName": "123_profile", + "ssid": "123", + "wlanType": "Enterprise", + "authType": "WPA2_WPA3_PERSONAL", + "l3AuthType": "open", + "passphrase": "NO!$DATA!$", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": [], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": true, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [ + "AP Location" + ], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "123_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": [], + "clientRateLimit": 90000, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": true, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": true, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": true, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + } + ], + "version": "1.0" + }, + "get_additional_interface1": { + "response": [ + { + "id": "mde4r2LN-ywjP-Dev0-AgvY-BMv0mc8YrZbPmwCYytnIngK1Ddzf", + "interfaceName": "GigabitEthernet0/2", + "vlanId": 20 + } + ], + "version": "1.0" + }, + "get_dot11be_profile": { + "response": [ + { + "id": "5b711957-6620-3851-93c0-3b8360ea688d", + "profileName": "test_802_profile_1", + "muMimoDownLink": false, + "muMimoUpLink": false, + "ofdmaDownLink": true, + "ofdmaUpLink": true, + "ofdmaMultiRu": false, + "default": true + } + ], + "version": "1.0" + }, + "response_for_profile_creation": { + "response": { + "taskId": "019675c0-a30a-72a9-adba-d05be846e702", + "url": "/api/v1/task/019675c0-a30a-72a9-adba-d05be846e702" }, - - "assign_site1_response": { - "response": { - "taskId": "019675c0-a703-7aae-b0da-3b1b5490cfec", - "url": "/api/v1/task/019675c0-a703-7aae-b0da-3b1b5490cfec" - }, - "version": "1.0" + "version": "1.0" + }, + "get_task_details_response": { + "response": { + "endTime": 1745732281128, + "status": "SUCCESS", + "startTime": 1745732281098, + "resultLocation": "/dna/intent/api/v1/tasks/019675c0-a30a-72a9-adba-d05be846e702/detail", + "id": "019675c0-a30a-72a9-adba-d05be846e702" }, - - "get_site1_task_details": { - "response": { - "endTime": 1745732282135, - "status": "SUCCESS", - "startTime": 1745732282115, - "resultLocation": "/dna/intent/api/v1/tasks/019675c0-a703-7aae-b0da-3b1b5490cfec/detail", - "id": "019675c0-a703-7aae-b0da-3b1b5490cfec" - }, - "version": "1.0" + "version": "1.0" + }, + "get_task_progress": { + "response": { + "progress": "Network Profile [07b6329f-a236-4f1f-81d7-853050ced201] Successfully Created" + } + }, + "assign_site1_response": { + "response": { + "taskId": "019675c0-a703-7aae-b0da-3b1b5490cfec", + "url": "/api/v1/task/019675c0-a703-7aae-b0da-3b1b5490cfec" }, - - "get_site1_task_progress": { - "response": { - "progress": "Sites Successfully Associated to Network Profile [07b6329f-a236-4f1f-81d7-853050ced201]" - } + "version": "1.0" + }, + "get_site1_task_details": { + "response": { + "endTime": 1745732282135, + "status": "SUCCESS", + "startTime": 1745732282115, + "resultLocation": "/dna/intent/api/v1/tasks/019675c0-a703-7aae-b0da-3b1b5490cfec/detail", + "id": "019675c0-a703-7aae-b0da-3b1b5490cfec" }, - - "assign_template1_response": { - "response": { - "taskId": "019675c0-b3b3-75d9-85a5-cc9db1e23cda", - "url": "/api/v1/task/019675c0-b3b3-75d9-85a5-cc9db1e23cda" - }, - "version": "1.0" + "version": "1.0" + }, + "get_site1_task_progress": { + "response": { + "progress": "Sites Successfully Associated to Network Profile [07b6329f-a236-4f1f-81d7-853050ced201]" + } + }, + "assign_template1_response": { + "response": { + "taskId": "019675c0-b3b3-75d9-85a5-cc9db1e23cda", + "url": "/api/v1/task/019675c0-b3b3-75d9-85a5-cc9db1e23cda" }, - - "get_template1_task_details": { - "response": { - "endTime": 1745732285415, - "status": "SUCCESS", - "startTime": 1745732285363, - "resultLocation": "/dna/intent/api/v1/tasks/019675c0-b3b3-75d9-85a5-cc9db1e23cda/detail", - "id": "019675c0-b3b3-75d9-85a5-cc9db1e23cda" - }, - "version": "1.0" + "version": "1.0" + }, + "get_template1_task_details": { + "response": { + "endTime": 1745732285415, + "status": "SUCCESS", + "startTime": 1745732285363, + "resultLocation": "/dna/intent/api/v1/tasks/019675c0-b3b3-75d9-85a5-cc9db1e23cda/detail", + "id": "019675c0-b3b3-75d9-85a5-cc9db1e23cda" }, - - "get_template1_task_progress": { - "progress": "Template successfully attached to the network profile" - }, - - "verify_wireless_profile_list": { - "response": [ - { - "id": "07b6329f-a236-4f1f-81d7-853050ced201", - "name": "wireless profile test1", - "type": "Wireless" - }, - { - "id": "768f5b27-1c6d-4626-9cf2-33ed69b13b0b", - "name": "rafeek_wireless_1", - "type": "Wireless" - }, - { - "id": "d37ee2f8-655e-43da-89c4-08bdca7f4759", - "name": "rafeek_wireless_2", - "type": "Wireless" + "version": "1.0" + }, + "get_template1_task_progress": { + "progress": "Template successfully attached to the network profile" + }, + "verify_wireless_profile_list": { + "response": [ + { + "id": "07b6329f-a236-4f1f-81d7-853050ced201", + "name": "wireless profile test1", + "type": "Wireless" + }, + { + "id": "768f5b27-1c6d-4626-9cf2-33ed69b13b0b", + "name": "rafeek_wireless_1", + "type": "Wireless" + }, + { + "id": "d37ee2f8-655e-43da-89c4-08bdca7f4759", + "name": "rafeek_wireless_2", + "type": "Wireless" + }, + { + "id": "7231ea09-daa9-4e99-92c1-abbcb0a7366c", + "name": "Campus_Wireless_Profile", + "type": "Wireless" + } + ], + "version": "1.0" + }, + "get_wireless_profile_details": { + "response": [ + { + "wirelessProfileName": "wireless profile test1", + "ssidDetails": [ + { + "ssidName": "guest_wifi_2", + "enableFabric": false, + "flexConnect": { + "enableFlexConnect": true, + "localToVlan": 2001 }, - { - "id": "7231ea09-daa9-4e99-92c1-abbcb0a7366c", - "name": "Campus_Wireless_Profile", - "type": "Wireless" - } + "interfaceName": "test_interface_1", + "wlanProfileName": "guest_wifi_2_profile", + "policyProfileName": "guest_wifi_2_profile", + "dot11beProfileId": "5b711957-6620-3851-93c0-3b8360ea688d" + } ], - "version": "1.0" - }, - - "get_wireless_profile_details": { - "response": [ - { - "wirelessProfileName": "wireless profile test1", - "ssidDetails": [ - { - "ssidName": "guest_wifi_2", - "enableFabric": false, - "flexConnect": { - "enableFlexConnect": true, - "localToVlan": 2001 - }, - "interfaceName": "test_interface_1", - "wlanProfileName": "guest_wifi_2_profile", - "policyProfileName": "guest_wifi_2_profile", - "dot11beProfileId": "5b711957-6620-3851-93c0-3b8360ea688d" - } - ], - "id": "07b6329f-a236-4f1f-81d7-853050ced201", - "additionalInterfaces": [ - "GigabitEthernet0/2" - ], - "apZones": [ - { - "apZoneName": "AP_Zone_North", - "rfProfileName": "LOW", - "ssids": [ - "guest_wifi_2" - ] - } - ] - } + "id": "07b6329f-a236-4f1f-81d7-853050ced201", + "additionalInterfaces": [ + "GigabitEthernet0/2" ], - "version": "1.1" - }, - - "get_cli_template_for_profile": { - "response": [ - { - "id": "5935fbdb-3d4c-4d6c-be5f-c61401be6b93", - "name": "WLC Template" - } + "apZones": [ + { + "apZoneName": "AP_Zone_North", + "rfProfileName": "LOW", + "ssids": [ + "guest_wifi_2" + ] + } + ] + } + ], + "version": "1.1" + }, + "get_cli_template_for_profile": { + "response": [ + { + "id": "5935fbdb-3d4c-4d6c-be5f-c61401be6b93", + "name": "WLC Template" + } + ], + "version": "1.0" + }, + "get_site_list_for_profile": { + "response": [ + { + "id": "976ec932-e5b3-403c-add8-09ebc0af0f03" + }, + { + "id": "61a79a23-210b-44d8-84fa-6f0a7d08f73b" + }, + { + "id": "65761e39-fd3f-4eec-b174-ba968c0c7fee" + } + ], + "version": "1.0" + }, + "get_network_profile_sites": { + "response": [ + { + "id": "021ce80b-f2bd-4360-86b4-005b82691b69", + "name": "New2_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "0309a82b-82cf-416e-a971-9c1c9b951bf1", + "name": "Ans NP WL creation 1", + "type": "Wireless" + }, + { + "id": "0c9411d3-4e88-4d64-bbb6-6dccd29ae81d", + "name": "New_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "13ddbfb3-0bb6-4656-be4e-849fedfd3005", + "name": "Ans NP WL creation 5", + "type": "Wireless" + }, + { + "id": "218cc2d3-6cdd-4082-abb2-d7532b533b1f", + "name": "Ans NP WL creation 4", + "type": "Wireless" + }, + { + "id": "24f7cfb5-efa5-46dd-997d-6eebe4efc5aa", + "name": "Ans NP WL creation 3", + "type": "Wireless" + }, + { + "id": "27787a94-8080-4367-b3eb-ff305b9a9218", + "name": "Thien_Profile", + "type": "Wireless" + }, + { + "id": "2e754dc5-f57a-458f-af6f-8bbc4f8a39c8", + "name": "New5_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "9a3e05a5-b2cc-47ae-9030-f7f1171d8326", + "name": "Ans NP WL creation 6", + "type": "Wireless" + }, + { + "id": "bc535014-7a5a-41e6-b560-93365a9918ab", + "name": "bulk_creation_98", + "type": "Wireless" + }, + { + "id": "bd13b2ec-7349-43c1-9420-389ad532bbb5", + "name": "Provision NY", + "type": "Wireless" + }, + { + "id": "d4250e2b-4c38-45a9-9794-774589fe3e8d", + "name": "Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "eb86d858-c01c-47c4-83a6-ef20d50d7e7e", + "name": "New1_Campus_Wireless_Profile1", + "type": "Wireless" + } + ], + "version": "1.0" + }, + "get_Sites": { + "response": [ + { + "id": "bdfc91e1-157e-4d88-b8aa-69859e6df0ec", + "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155/31dc7a2c-497a-4ab4-a329-b4733b5a9dc0/f6c1f9a9-d7dd-4eae-ae93-ea3853e0f8f2/bdfc91e1-157e-4d88-b8aa-69859e6df0ec", + "parentId": "f6c1f9a9-d7dd-4eae-ae93-ea3853e0f8f2", + "name": "bld1", + "nameHierarchy": "Global/India/Bangalore/bld1", + "type": "building", + "latitude": 46.2, + "longitude": -121.1, + "address": "Bureau of Indian Affairs Road 207, White Swan, Washington 98952, United States", + "country": "India" + } + ], + "version": "1.0" + }, + "get_sites1": { + "response": [], + "version": "1.0" + }, + "get_sites2": { + "response": [ + { + "id": "73273999-4fde-4376-b071-25ebee51d155", + "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155", + "name": "Global", + "nameHierarchy": "Global", + "type": "global" + } + ], + "version": "1.0" + }, + "get_enterprise_ssid": { + "response": [ + { + "id": "mdeZu1nj-rfnJ-AgvK-DwXL-CLmWuZfjmKqZuZrJnwG2ztDKohu5", + "profileName": "SSIDScheduler_profile", + "ssid": "SSIDScheduler", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" ], - "version": "1.0" - }, - - "get_site_list_for_profile": { - "response": [ - { - "id": "976ec932-e5b3-403c-add8-09ebc0af0f03" - }, - { - "id": "61a79a23-210b-44d8-84fa-6f0a7d08f73b" - }, - { - "id": "65761e39-fd3f-4eec-b174-ba968c0c7fee" - } + "acctServers": [ + "172.23.241.229" ], - "version": "1.0" - }, - "get_network_profile_sites":{ - "response": [ - { - "id": "021ce80b-f2bd-4360-86b4-005b82691b69", - "name": "New2_Campus_Wireless_Profile1", - "type": "Wireless" - }, - { - "id": "0309a82b-82cf-416e-a971-9c1c9b951bf1", - "name": "Ans NP WL creation 1", - "type": "Wireless" - }, - { - "id": "0c9411d3-4e88-4d64-bbb6-6dccd29ae81d", - "name": "New_Campus_Wireless_Profile1", - "type": "Wireless" - }, - { - "id": "13ddbfb3-0bb6-4656-be4e-849fedfd3005", - "name": "Ans NP WL creation 5", - "type": "Wireless" - }, - { - "id": "218cc2d3-6cdd-4082-abb2-d7532b533b1f", - "name": "Ans NP WL creation 4", - "type": "Wireless" - }, - { - "id": "24f7cfb5-efa5-46dd-997d-6eebe4efc5aa", - "name": "Ans NP WL creation 3", - "type": "Wireless" - }, - { - "id": "27787a94-8080-4367-b3eb-ff305b9a9218", - "name": "Thien_Profile", - "type": "Wireless" - }, - { - "id": "2e754dc5-f57a-458f-af6f-8bbc4f8a39c8", - "name": "New5_Campus_Wireless_Profile1", - "type": "Wireless" - }, - { - "id": "9a3e05a5-b2cc-47ae-9030-f7f1171d8326", - "name": "Ans NP WL creation 6", - "type": "Wireless" - }, - { - "id": "bc535014-7a5a-41e6-b560-93365a9918ab", - "name": "bulk_creation_98", - "type": "Wireless" - }, - { - "id": "bd13b2ec-7349-43c1-9420-389ad532bbb5", - "name": "Provision NY", - "type": "Wireless" - }, - { - "id": "d4250e2b-4c38-45a9-9794-774589fe3e8d", - "name": "Campus_Wireless_Profile1", - "type": "Wireless" - }, - { - "id": "eb86d858-c01c-47c4-83a6-ef20d50d7e7e", - "name": "New1_Campus_Wireless_Profile1", - "type": "Wireless" - } + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "SSIDScheduler_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiWr3vL-C3rF-D2vI-CgfZ-C3rOCM91z2HhmhuXztjZm3q0xZv3", + "profileName": "Guest_webpassthrough_profile", + "ssid": "Guest_webpassthrough", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_internal", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": true, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Guest_webpassthrough_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda3Cg9Z-DhvY-zxaW-BZfZ-mNqZDtrYnwu2CdDVohm5DdeWDteX", + "profileName": "posture_profile", + "ssid": "posture", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" ], - "version": "1.0" - }, - "get_Sites":{ - "response": [ - { - "id": "bdfc91e1-157e-4d88-b8aa-69859e6df0ec", - "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155/31dc7a2c-497a-4ab4-a329-b4733b5a9dc0/f6c1f9a9-d7dd-4eae-ae93-ea3853e0f8f2/bdfc91e1-157e-4d88-b8aa-69859e6df0ec", - "parentId": "f6c1f9a9-d7dd-4eae-ae93-ea3853e0f8f2", - "name": "bld1", - "nameHierarchy": "Global/India/Bangalore/bld1", - "type": "building", - "latitude": 46.2, - "longitude": -121.1, - "address": "Bureau of Indian Affairs Road 207, White Swan, Washington 98952, United States", - "country": "India" - } + "acctServers": [ + "172.23.241.229" ], - "version": "1.0" - }, - "get_sites1":{ - "response": [], - "version": "1.0" - }, - "get_sites2":{ - "response": [ - { - "id": "73273999-4fde-4376-b071-25ebee51d155", - "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155", - "name": "Global", - "nameHierarchy": "Global", - "type": "global" - } + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "posture_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda0t1bf-tK8W-udff-mK4Z-tZrqnuu2tJDpofa5rteWtJeXtZeY", + "profileName": "OPEN_profile", + "ssid": "OPEN", + "wlanType": "Enterprise", + "authType": "OPEN", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "OPEN_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda5ueHb-tI1t-u0Le-udbi-mueYtJmTnfm1uZzjn0q4udLimtbb", + "profileName": "PHAN-SSID_profile", + "ssid": "PHAN-SSID", + "wlanType": "Enterprise", + "authType": "WPA2_WPA3_PERSONAL", + "l3AuthType": "open", + "passphrase": "NO!$DATA!$", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": [], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "PHAN-SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": true, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": true, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiXr3vL-C3rF-CgfZ-C3rO-CM91z2HFAw50rZb1mwuYCZn0nf81", + "profileName": "Guest_passthrough_int_profile", + "ssid": "Guest_passthrough_int", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "https://10.195.227.116/", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": true, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Guest_passthrough_int_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiXr3vL-C3rF-D2vI-yxv0-AgLUDgvYBMfSrZb1mwuYCZn0nf81", + "profileName": "Guest_webauthinternal_profile", + "ssid": "Guest_webauthinternal", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_internal", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "Guest_webauthinternal_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeWvgHP-zw5F-u1nj-rfqW-AdfPmMuZBJrFnvm2uZDjoeq5vdeW", + "profileName": "Thien_SSID_profile", + "ssid": "Thien_SSID", + "wlanType": "Guest", + "authType": "WPA3_PERSONAL", + "l3AuthType": "web_auth", + "passphrase": "NO!$DATA!$", + "externalAuthIpAddress": "", + "fastTransition": "ENABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" ], - "version": "1.0" - }, - "get_enterprise_ssid":{ - "response": [ - { - "id": "mdeZu1nj-rfnJ-AgvK-DwXL-CLmWuZfjmKqZuZrJnwG2ztDKohu5", - "profileName": "SSIDScheduler_profile", - "ssid": "SSIDScheduler", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "SSIDScheduler_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdiWr3vL-C3rF-D2vI-CgfZ-C3rOCM91z2HhmhuXztjZm3q0xZv3", - "profileName": "Guest_webpassthrough_profile", - "ssid": "Guest_webpassthrough", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_internal", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": true, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Guest_webpassthrough_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mda3Cg9Z-DhvY-zxaW-BZfZ-mNqZDtrYnwu2CdDVohm5DdeWDteX", - "profileName": "posture_profile", - "ssid": "posture", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "posture_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mda0t1bf-tK8W-udff-mK4Z-tZrqnuu2tJDpofa5rteWtJeXtZeY", - "profileName": "OPEN_profile", - "ssid": "OPEN", - "wlanType": "Enterprise", - "authType": "OPEN", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "OPEN_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mda5ueHb-tI1t-u0Le-udbi-mueYtJmTnfm1uZzjn0q4udLimtbb", - "profileName": "PHAN-SSID_profile", - "ssid": "PHAN-SSID", - "wlanType": "Enterprise", - "authType": "WPA2_WPA3_PERSONAL", - "l3AuthType": "open", - "passphrase": "NO!$DATA!$", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": [], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "PHAN-SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": true, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": true, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdiXr3vL-C3rF-CgfZ-C3rO-CM91z2HFAw50rZb1mwuYCZn0nf81", - "profileName": "Guest_passthrough_int_profile", - "ssid": "Guest_passthrough_int", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "https://10.195.227.116/", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": true, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Guest_passthrough_int_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdiXr3vL-C3rF-D2vI-yxv0-AgLUDgvYBMfSrZb1mwuYCZn0nf81", - "profileName": "Guest_webauthinternal_profile", - "ssid": "Guest_webauthinternal", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_internal", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "Guest_webauthinternal_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdeWvgHP-zw5F-u1nj-rfqW-AdfPmMuZBJrFnvm2uZDjoeq5vdeW", - "profileName": "Thien_SSID_profile", - "ssid": "Thien_SSID", - "wlanType": "Guest", - "authType": "WPA3_PERSONAL", - "l3AuthType": "web_auth", - "passphrase": "NO!$DATA!$", - "externalAuthIpAddress": "", - "fastTransition": "ENABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Thien_SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "REQUIRED", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": true, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mda0t1bf-tK8W-udff-mK4Z-tZrqnuu2tJDpofa5rteWtJeXtZeY", - "profileName": "OPEN_profile", - "ssid": "OPEN", - "wlanType": "Enterprise", - "authType": "OPEN", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "OPEN_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mde4q1Db-x0Dv-rvnu-x1nt-surFqufbqZbxmueYxZnhnfu1rtzt", - "profileName": "CWA_GUEST_SSID_AAA_profile", - "ssid": "CWA_GUEST_SSID_AAA", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "CWA_GUEST_SSID_AAA_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mde0y3vZ-Dg9T-x3jM-x3nZ-AwrJmhuXCZj0m280BtvFnNi3zJHF", - "profileName": "custom_rf_ssid_profile", - "ssid": "custom_rf_ssid", - "wlanType": "Enterprise", - "authType": "WPA2_WPA3_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "custom_rf_ssid_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "REQUIRED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdiZDgHP-zw5S-B3PF-qxnZ-DxjHBMnLx2LJyxb0mgGXAtjLm240", - "profileName": "thienloz_Assurance_ic_profile", - "ssid": "thienloz_Assurance_icap", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_internal", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "thienloz_Assurance_ic_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mda1zgf0-mJfK-mgeX-DdiY-mZe0zdvHnNq3mJGXowqXmgeXmxqX", - "profileName": "dat21_profile", - "ssid": "dat21", - "wlanType": "Enterprise", - "authType": "WPA2_WPA3_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "dat21_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 2000, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": false, - "isHex": false, - "isBroadcastSSID": false, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": true, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdiYDgHP-zw52-B19b-C3n1-CMfUy2vFAwnHChqWAdfPmMuZBJr2", - "profileName": "thienvo_Assurance_ica_profile", - "ssid": "thienvo_Assurance_icap", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "thienvo_Assurance_ica_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdeZu1nj-rerv-quWG-qKfo-rfmWuZfjmKqZrdrvnue2tdCGoei5", - "profileName": "SSIDDUAL BAND_profile", - "ssid": "SSIDDUAL BAND", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ENABLE", - "authServer": "auth_external", - "authServers": [], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "SSIDDUAL BAND_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": true, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mda1r1vf-u1rh-mfuX-rtjt-m1q0rZvvnKu3uZHuouCXmfuXmuuX", - "profileName": "GUEST_profile", - "ssid": "GUEST", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "GUEST_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdeWuMfU-zg9T-x21H-y1iW-ytfUmMqZBZrTnv82BtDHogm5uJeW", - "profileName": "Random_mac_profile", - "ssid": "Random_mac", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "Random_mac_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": true, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": true, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdeYu2LU-z2XL-nuTc-yw5K-uZbPmw4YzZnSngu1ntzln0i4ytLU", - "profileName": "Single5KBand_profile", - "ssid": "Single5KBand", - "wlanType": "Enterprise", - "authType": "WPA2_PERSONAL", - "l3AuthType": "open", - "passphrase": "NO!$DATA!$", - "externalAuthIpAddress": "", - "fastTransition": "ENABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "Single5KBand_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": true, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "5GHz only", - "isCustomNasIdOptions": false - }, - { - "id": "mdaZDguX-DdbL-mteY-DdnL-nde1DdzLnZe4DdLLmtaXmtf0mtjL", - "profileName": "te1_profile", - "ssid": "te1", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ENABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "te1_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 2000, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": false, - "isHex": false, - "isBroadcastSSID": false, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": true, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": true, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdiXDgHP-zw5F-qxnZ-DxjH-BMnLmL9Py2fWDdbOmwKYztnUnf81", - "profileName": "thien_Assurance2_icap_profile", - "ssid": "thien_Assurance2_icap", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_internal", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "thien_Assurance2_icap_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mda2r1vf-u1qY-rZbv-muuY-uZnundi1rZzvn0u4uZLumtaYmtfh", - "profileName": "GUEST2_profile", - "ssid": "GUEST2", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "GUEST2_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mda4DhnZ-Dhn0-C3r0-mhmX-CZj0m3m0DdvZnNq3DdHZoxmXmhqX", - "profileName": "tsststst_profile", - "ssid": "tsststst", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "204.192.1.123" - ], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "tsststst_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mde0u1nj-rerV-Ddfy-sw5K-AwftmfmXstjem0q0BZv0nJe3wdHj", - "profileName": "SSIDDot1XIndia_profile", - "ssid": "SSIDDot1XIndia", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "SSIDDot1XIndia_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdiZicaG-icGH-jcHB-xdPD-qhXFjIuTi1ntsuqGmcaXidiGmYG0", - "profileName": "(!$([\\:]@|_&%-#SSID_profile", - "ssid": " (!$([\\:]@|_&%-#SSID", - "wlanType": "Enterprise", - "authType": "OPEN", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "(!$([\\:]@|_&%-#SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdeXuMfK-AxvZ-x3nZ-Awrs-mgeXzdjPm3u0CZvFnNm3CZHPowqX", - "profileName": "Radius_ssid_profile", - "ssid": "Radius_ssid", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [], - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "Radius_ssid_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdeWqvjv-qKfF-u1nj-reeW-uJfvmKiZqtrFnvm2uZDjoeq5qteW", - "profileName": "ARUBA_SSID_profile", - "ssid": "ARUBA_SSID", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "https://10.195.227.10/guest/guest_register_login.php", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "ARUBA_SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - } + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Thien_SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "REQUIRED", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": true, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda0t1bf-tK8W-udff-mK4Z-tZrqnuu2tJDpofa5rteWtJeXtZeY", + "profileName": "OPEN_profile", + "ssid": "OPEN", + "wlanType": "Enterprise", + "authType": "OPEN", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "OPEN_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mde4q1Db-x0Dv-rvnu-x1nt-surFqufbqZbxmueYxZnhnfu1rtzt", + "profileName": "CWA_GUEST_SSID_AAA_profile", + "ssid": "CWA_GUEST_SSID_AAA", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" ], - "version": "1.0" - }, - "get_feature_template_summary":{ - "response": [ - { - "type": "CLEANAIR_CONFIGURATION", - "count": 1, - "instances": [ - { - "designName": "Default CleanAir 802.11b Design", - "id": "b17463b1-b0f9-4e7f-a987-c3bb97236dd1", - "systemTemplate": true - } - ] - } + "acctServers": [ + "172.23.241.229" ], - "version": "1.0" - }, - "get_feature_template_summary1":{ - "response": [ - { - "type": "CLEANAIR_CONFIGURATION", - "count": 1, - "instances": [ - { - "designName": "Default CleanAir 6GHz Design", - "id": "dae784a7-7589-4b98-a924-b93c3d5f5604", - "systemTemplate": true - } - ] - } + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "CWA_GUEST_SSID_AAA_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mde0y3vZ-Dg9T-x3jM-x3nZ-AwrJmhuXCZj0m280BtvFnNi3zJHF", + "profileName": "custom_rf_ssid_profile", + "ssid": "custom_rf_ssid", + "wlanType": "Enterprise", + "authType": "WPA2_WPA3_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" ], - "version": "1.0" - }, - "get80211be_profiles":{ - "response": [ - { - "id": "8b1a9953-c461-3296-a827-abf8c47804d7", - "profileName": "Hello", - "muMimoDownLink": false, - "muMimoUpLink": false, - "ofdmaDownLink": true, - "ofdmaUpLink": true, - "ofdmaMultiRu": false, - "default": true - } + "acctServers": [ + "172.23.241.229" ], - "version": "1.0" - }, - "create_wireless_profile_connectivity":{ - "response": { - "taskId": "01981b6e-cb66-73f1-a9b2-755f0bc4675f", - "url": "/api/v1/task/01981b6e-cb66-73f1-a9b2-755f0bc4675f" - }, - "version": "1.0" - }, - "get_task_id1":{ - "response": { - "endTime": 1752806902660, - "status": "SUCCESS", - "startTime": 1752806902630, - "resultLocation": "/dna/intent/api/v1/tasks/01981b6e-cb66-73f1-a9b2-755f0bc4675f/detail", - "id": "01981b6e-cb66-73f1-a9b2-755f0bc4675f" - }, - "version": "1.0" - }, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "custom_rf_ssid_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "REQUIRED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiZDgHP-zw5S-B3PF-qxnZ-DxjHBMnLx2LJyxb0mgGXAtjLm240", + "profileName": "thienloz_Assurance_ic_profile", + "ssid": "thienloz_Assurance_icap", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_internal", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "thienloz_Assurance_ic_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda1zgf0-mJfK-mgeX-DdiY-mZe0zdvHnNq3mJGXowqXmgeXmxqX", + "profileName": "dat21_profile", + "ssid": "dat21", + "wlanType": "Enterprise", + "authType": "WPA2_WPA3_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "dat21_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 2000, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": false, + "isHex": false, + "isBroadcastSSID": false, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": true, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiYDgHP-zw52-B19b-C3n1-CMfUy2vFAwnHChqWAdfPmMuZBJr2", + "profileName": "thienvo_Assurance_ica_profile", + "ssid": "thienvo_Assurance_icap", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "thienvo_Assurance_ica_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeZu1nj-rerv-quWG-qKfo-rfmWuZfjmKqZrdrvnue2tdCGoei5", + "profileName": "SSIDDUAL BAND_profile", + "ssid": "SSIDDUAL BAND", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ENABLE", + "authServer": "auth_external", + "authServers": [], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "SSIDDUAL BAND_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": true, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda1r1vf-u1rh-mfuX-rtjt-m1q0rZvvnKu3uZHuouCXmfuXmuuX", + "profileName": "GUEST_profile", + "ssid": "GUEST", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "GUEST_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeWuMfU-zg9T-x21H-y1iW-ytfUmMqZBZrTnv82BtDHogm5uJeW", + "profileName": "Random_mac_profile", + "ssid": "Random_mac", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "Random_mac_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": true, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": true, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeYu2LU-z2XL-nuTc-yw5K-uZbPmw4YzZnSngu1ntzln0i4ytLU", + "profileName": "Single5KBand_profile", + "ssid": "Single5KBand", + "wlanType": "Enterprise", + "authType": "WPA2_PERSONAL", + "l3AuthType": "open", + "passphrase": "NO!$DATA!$", + "externalAuthIpAddress": "", + "fastTransition": "ENABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "Single5KBand_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": true, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "5GHz only", + "isCustomNasIdOptions": false + }, + { + "id": "mdaZDguX-DdbL-mteY-DdnL-nde1DdzLnZe4DdLLmtaXmtf0mtjL", + "profileName": "te1_profile", + "ssid": "te1", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ENABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "te1_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 2000, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": false, + "isHex": false, + "isBroadcastSSID": false, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": true, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": true, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiXDgHP-zw5F-qxnZ-DxjH-BMnLmL9Py2fWDdbOmwKYztnUnf81", + "profileName": "thien_Assurance2_icap_profile", + "ssid": "thien_Assurance2_icap", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_internal", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "thien_Assurance2_icap_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda2r1vf-u1qY-rZbv-muuY-uZnundi1rZzvn0u4uZLumtaYmtfh", + "profileName": "GUEST2_profile", + "ssid": "GUEST2", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "GUEST2_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda4DhnZ-Dhn0-C3r0-mhmX-CZj0m3m0DdvZnNq3DdHZoxmXmhqX", + "profileName": "tsststst_profile", + "ssid": "tsststst", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "204.192.1.123" + ], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "tsststst_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mde0u1nj-rerV-Ddfy-sw5K-AwftmfmXstjem0q0BZv0nJe3wdHj", + "profileName": "SSIDDot1XIndia_profile", + "ssid": "SSIDDot1XIndia", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "SSIDDot1XIndia_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiZicaG-icGH-jcHB-xdPD-qhXFjIuTi1ntsuqGmcaXidiGmYG0", + "profileName": "(!$([\\:]@|_&%-#SSID_profile", + "ssid": " (!$([\\:]@|_&%-#SSID", + "wlanType": "Enterprise", + "authType": "OPEN", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "(!$([\\:]@|_&%-#SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeXuMfK-AxvZ-x3nZ-Awrs-mgeXzdjPm3u0CZvFnNm3CZHPowqX", + "profileName": "Radius_ssid_profile", + "ssid": "Radius_ssid", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [], + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "Radius_ssid_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeWqvjv-qKfF-u1nj-reeW-uJfvmKiZqtrFnvm2uZDjoeq5qteW", + "profileName": "ARUBA_SSID_profile", + "ssid": "ARUBA_SSID", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "https://10.195.227.10/guest/guest_register_login.php", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "ARUBA_SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + } + ], + "version": "1.0" + }, + "get_feature_template_summary": { + "response": [ + { + "type": "CLEANAIR_CONFIGURATION", + "count": 1, + "instances": [ + { + "designName": "Default CleanAir 802.11b Design", + "id": "b17463b1-b0f9-4e7f-a987-c3bb97236dd1", + "systemTemplate": true + } + ] + } + ], + "version": "1.0" + }, + "get_feature_template_summary1": { + "response": [ + { + "type": "CLEANAIR_CONFIGURATION", + "count": 1, + "instances": [ + { + "designName": "Default CleanAir 6GHz Design", + "id": "dae784a7-7589-4b98-a924-b93c3d5f5604", + "systemTemplate": true + } + ] + } + ], + "version": "1.0" + }, + "get80211be_profiles": { + "response": [ + { + "id": "8b1a9953-c461-3296-a827-abf8c47804d7", + "profileName": "Hello", + "muMimoDownLink": false, + "muMimoUpLink": false, + "ofdmaDownLink": true, + "ofdmaUpLink": true, + "ofdmaMultiRu": false, + "default": true + } + ], + "version": "1.0" + }, + "create_wireless_profile_connectivity": { + "response": { + "taskId": "01981b6e-cb66-73f1-a9b2-755f0bc4675f", + "url": "/api/v1/task/01981b6e-cb66-73f1-a9b2-755f0bc4675f" + }, + "version": "1.0" + }, + "get_task_id1": { + "response": { + "endTime": 1752806902660, + "status": "SUCCESS", + "startTime": 1752806902630, + "resultLocation": "/dna/intent/api/v1/tasks/01981b6e-cb66-73f1-a9b2-755f0bc4675f/detail", + "id": "01981b6e-cb66-73f1-a9b2-755f0bc4675f" + }, + "version": "1.0" + }, "get_task_details_by_id": 1730, "task_details": { "progress": "Network Profile [b4e7e3de-e86b-4ade-9fa2-d1314f658fcb] Successfully Created" }, - "assign_a_network_profile_for_sites_to_the_given_site":{ - "response": { - "taskId": "01981b6e-cefc-7906-b37e-2435374c9aca", - "url": "/api/v1/task/01981b6e-cefc-7906-b37e-2435374c9aca" - }, - "version": "1.0" - }, - "get_task_id2":{ - "response": { - "endTime": 1752806903581, - "status": "SUCCESS", - "startTime": 1752806903548, - "resultLocation": "/dna/intent/api/v1/tasks/01981b6e-cefc-7906-b37e-2435374c9aca/detail", - "id": "01981b6e-cefc-7906-b37e-2435374c9aca" - }, - "version": "1.0" - }, - "retrieves_the_list_of_network_profiles_for_sites":{ + "assign_a_network_profile_for_sites_to_the_given_site": { + "response": { + "taskId": "01981b6e-cefc-7906-b37e-2435374c9aca", + "url": "/api/v1/task/01981b6e-cefc-7906-b37e-2435374c9aca" + }, + "version": "1.0" + }, + "get_task_id2": { + "response": { + "endTime": 1752806903581, + "status": "SUCCESS", + "startTime": 1752806903548, + "resultLocation": "/dna/intent/api/v1/tasks/01981b6e-cefc-7906-b37e-2435374c9aca/detail", + "id": "01981b6e-cefc-7906-b37e-2435374c9aca" + }, + "version": "1.0" + }, + "retrieves_the_list_of_network_profiles_for_sites": { "response": [ + { + "id": "021ce80b-f2bd-4360-86b4-005b82691b69", + "name": "New2_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "0309a82b-82cf-416e-a971-9c1c9b951bf1", + "name": "Ans NP WL creation 1", + "type": "Wireless" + }, + { + "id": "0c9411d3-4e88-4d64-bbb6-6dccd29ae81d", + "name": "New_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "13ddbfb3-0bb6-4656-be4e-849fedfd3005", + "name": "Ans NP WL creation 5", + "type": "Wireless" + }, + { + "id": "218cc2d3-6cdd-4082-abb2-d7532b533b1f", + "name": "Ans NP WL creation 4", + "type": "Wireless" + }, + { + "id": "24f7cfb5-efa5-46dd-997d-6eebe4efc5aa", + "name": "Ans NP WL creation 3", + "type": "Wireless" + }, + { + "id": "27787a94-8080-4367-b3eb-ff305b9a9218", + "name": "Thien_Profile", + "type": "Wireless" + }, + { + "id": "2e754dc5-f57a-458f-af6f-8bbc4f8a39c8", + "name": "New5_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "9a3e05a5-b2cc-47ae-9030-f7f1171d8326", + "name": "Ans NP WL creation 6", + "type": "Wireless" + }, + { + "id": "bc535014-7a5a-41e6-b560-93365a9918ab", + "name": "bulk_creation_98", + "type": "Wireless" + }, + { + "id": "bd13b2ec-7349-43c1-9420-389ad532bbb5", + "name": "Provision NY", + "type": "Wireless" + }, + { + "id": "d4250e2b-4c38-45a9-9794-774589fe3e8d", + "name": "Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "eb86d858-c01c-47c4-83a6-ef20d50d7e7e", + "name": "New1_Campus_Wireless_Profile1", + "type": "Wireless" + } + ], + "version": "1.0" + }, + "get_wireless_profiles_v1": { + "response": [ + { + "id": "b4e7e3de-e86b-4ade-9fa2-d1314f658fcb", + "wirelessProfileName": "New75_Campus_Wireless_Profile1", + "ssidDetails": [ + { + "ssidName": "posture", + "enableFabric": false, + "flexConnect": { + "enableFlexConnect": false + }, + "wlanProfileName": "posture_profile", + "policyProfileName": "posture_profile", + "dot11beProfileId": "8b1a9953-c461-3296-a827-abf8c47804d7", + "vlanGroupName": "Ans_NP_WL_INT_group_1" + } + ], + "additionalInterfaces": [], + "apZones": [], + "featureTemplates": [ + { + "designName": "Default CleanAir 802.11b Design", + "id": "b17463b1-b0f9-4e7f-a987-c3bb97236dd1", + "ssids": [] + }, + { + "designName": "Default CleanAir 6GHz Design", + "id": "dae784a7-7589-4b98-a924-b93c3d5f5604", + "ssids": [] + } + ] + } + ], + "version": "1.2" + }, + "get_site_lists_for_profile": { + "response": [ + { + "id": "bdfc91e1-157e-4d88-b8aa-69859e6df0ec" + } + ], + "version": "1.0" + }, + "retrieves_the_list_of_network_profiles_for_sites1": { + "response": [ + { + "id": "021ce80b-f2bd-4360-86b4-005b82691b69", + "name": "New2_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "0309a82b-82cf-416e-a971-9c1c9b951bf1", + "name": "Ans NP WL creation 1", + "type": "Wireless" + }, + { + "id": "0c9411d3-4e88-4d64-bbb6-6dccd29ae81d", + "name": "New_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "13ddbfb3-0bb6-4656-be4e-849fedfd3005", + "name": "Ans NP WL creation 5", + "type": "Wireless" + }, + { + "id": "218cc2d3-6cdd-4082-abb2-d7532b533b1f", + "name": "Ans NP WL creation 4", + "type": "Wireless" + }, + { + "id": "24f7cfb5-efa5-46dd-997d-6eebe4efc5aa", + "name": "Ans NP WL creation 3", + "type": "Wireless" + }, + { + "id": "27787a94-8080-4367-b3eb-ff305b9a9218", + "name": "Thien_Profile", + "type": "Wireless" + }, + { + "id": "2e754dc5-f57a-458f-af6f-8bbc4f8a39c8", + "name": "New5_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "487a1c07-b25a-4be0-80c2-508480adc9bf", + "name": "Campus_Wireless_Profile_1", + "type": "Wireless" + }, + { + "id": "9a3e05a5-b2cc-47ae-9030-f7f1171d8326", + "name": "Ans NP WL creation 6", + "type": "Wireless" + }, + { + "id": "b4e7e3de-e86b-4ade-9fa2-d1314f658fcb", + "name": "New75_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "bc535014-7a5a-41e6-b560-93365a9918ab", + "name": "bulk_creation_98", + "type": "Wireless" + }, + { + "id": "bd13b2ec-7349-43c1-9420-389ad532bbb5", + "name": "Provision NY", + "type": "Wireless" + }, + { + "id": "eb86d858-c01c-47c4-83a6-ef20d50d7e7e", + "name": "New1_Campus_Wireless_Profile1", + "type": "Wireless" + } + ], + "version": "1.0" + }, + "gets_the_templates_available": [ + { + "name": "WLC Template", + "projectName": "ODC Provisioning", + "projectId": "fa18dd05-d41c-441c-af44-8e2644781823", + "templateId": "5935fbdb-3d4c-4d6c-be5f-c61401be6b93", + "versionsInfo": [ { - "id": "021ce80b-f2bd-4360-86b4-005b82691b69", - "name": "New2_Campus_Wireless_Profile1", - "type": "Wireless" - }, - { - "id": "0309a82b-82cf-416e-a971-9c1c9b951bf1", - "name": "Ans NP WL creation 1", - "type": "Wireless" - }, - { - "id": "0c9411d3-4e88-4d64-bbb6-6dccd29ae81d", - "name": "New_Campus_Wireless_Profile1", - "type": "Wireless" - }, - { - "id": "13ddbfb3-0bb6-4656-be4e-849fedfd3005", - "name": "Ans NP WL creation 5", - "type": "Wireless" - }, - { - "id": "218cc2d3-6cdd-4082-abb2-d7532b533b1f", - "name": "Ans NP WL creation 4", - "type": "Wireless" - }, - { - "id": "24f7cfb5-efa5-46dd-997d-6eebe4efc5aa", - "name": "Ans NP WL creation 3", - "type": "Wireless" - }, - { - "id": "27787a94-8080-4367-b3eb-ff305b9a9218", - "name": "Thien_Profile", - "type": "Wireless" - }, - { - "id": "2e754dc5-f57a-458f-af6f-8bbc4f8a39c8", - "name": "New5_Campus_Wireless_Profile1", - "type": "Wireless" - }, - { - "id": "9a3e05a5-b2cc-47ae-9030-f7f1171d8326", - "name": "Ans NP WL creation 6", - "type": "Wireless" - }, - { - "id": "bc535014-7a5a-41e6-b560-93365a9918ab", - "name": "bulk_creation_98", - "type": "Wireless" - }, + "id": "38a74df1-779c-441e-97ce-9b4670cd1fd0", + "description": "", + "author": "admin", + "version": "3", + "versionComment": "", + "versionTime": 1740777392227 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ { - "id": "bd13b2ec-7349-43c1-9420-389ad532bbb5", - "name": "Provision NY", - "type": "Wireless" - }, + "productFamily": "Wireless Controller" + } + ] + }, + { + "name": "Ans Wireless DayN 1", + "projectName": "Cloud DayN Templates", + "projectId": "d5a01b46-075d-4366-8cb5-fd68ed3d7534", + "templateId": "b7494025-20f0-4902-aa72-e76d3e2394c9", + "versionsInfo": [ { - "id": "d4250e2b-4c38-45a9-9794-774589fe3e8d", - "name": "Campus_Wireless_Profile1", - "type": "Wireless" - }, + "id": "d99cbbc4-b997-408f-a7c0-e6546cc0e321", + "author": "admin", + "version": "1", + "versionTime": 1761200924634 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ { - "id": "eb86d858-c01c-47c4-83a6-ef20d50d7e7e", - "name": "New1_Campus_Wireless_Profile1", - "type": "Wireless" + "productFamily": "Wireless Controller" } + ] + } + ], + "get_sites": { + "response": [ + { + "id": "44e4706f-5244-46f4-a20b-6f402675271d", + "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155/f8bb33e5-38c2-41e8-b67c-986da5475cc2/355bbdf4-ec36-49af-b8aa-4bd69373a4f0/a988e384-4b56-44bd-af91-404a4b8d61ca/44e4706f-5244-46f4-a20b-6f402675271d", + "parentId": "a988e384-4b56-44bd-af91-404a4b8d61ca", + "name": "FLOOR1", + "nameHierarchy": "Global/USA/SAN JOSE/SJ_BLD23/FLOOR1", + "type": "floor", + "floorNumber": 1, + "rfModel": "Cubes And Walled Offices", + "width": 100.0, + "length": 100.0, + "height": 10.0, + "unitsOfMeasure": "feet" + } + ], + "version": "1.0" + }, + "get_sites11": { + "response": [], + "version": "1.0" + }, + "get_sites12": { + "response": [ + { + "id": "73273999-4fde-4376-b071-25ebee51d155", + "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155", + "name": "Global", + "nameHierarchy": "Global", + "type": "global" + } + ], + "version": "1.0" + }, + "get_enterprise_ssid1": { + "response": [ + { + "id": "mdeZu1nj-rfnJ-AgvK-DwXL-CLmWuZfjmKqZuZrJnwG2ztDKohu5", + "profileName": "SSIDScheduler_profile", + "ssid": "SSIDScheduler", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "SSIDScheduler_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiWr3vL-C3rF-D2vI-CgfZ-C3rOCM91z2HhmhuXztjZm3q0xZv3", + "profileName": "Guest_webpassthrough_profile", + "ssid": "Guest_webpassthrough", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_internal", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": true, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Guest_webpassthrough_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda3Cg9Z-DhvY-zxaW-BZfZ-mNqZDtrYnwu2CdDVohm5DdeWDteX", + "profileName": "posture_profile", + "ssid": "posture", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "posture_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda5vgHH-BL9t-u0Le-vdbO-mweYBJnFnfm1uZzjn0q4vdLOmtbH", + "profileName": "Than_SSID_profile", + "ssid": "Than_SSID", + "wlanType": "Enterprise", + "authType": "WPA2_WPA3_PERSONAL", + "l3AuthType": "open", + "passphrase": "NO!$DATA!$", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": [], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Than_SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": true, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": true, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda5ueHb-tI1t-u0Le-udbi-mueYtJmTnfm1uZzjn0q4udLimtbb", + "profileName": "PHAN-SSID_profile", + "ssid": "PHAN-SSID", + "wlanType": "Enterprise", + "authType": "WPA2_WPA3_PERSONAL", + "l3AuthType": "open", + "passphrase": "NO!$DATA!$", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": [], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "PHAN-SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": true, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": true, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiXr3vL-C3rF-CgfZ-C3rO-CM91z2HFAw50rZb1mwuYCZn0nf81", + "profileName": "Guest_passthrough_int_profile", + "ssid": "Guest_passthrough_int", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "https://10.195.227.116/", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": true, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Guest_passthrough_int_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiXr3vL-C3rF-D2vI-yxv0-AgLUDgvYBMfSrZb1mwuYCZn0nf81", + "profileName": "Guest_webauthinternal_profile", + "ssid": "Guest_webauthinternal", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_internal", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "Guest_webauthinternal_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeWvgHP-zw5F-u1nj-rfqW-AdfPmMuZBJrFnvm2uZDjoeq5vdeW", + "profileName": "Thien_SSID_profile", + "ssid": "Thien_SSID", + "wlanType": "Guest", + "authType": "WPA3_PERSONAL", + "l3AuthType": "web_auth", + "passphrase": "NO!$DATA!$", + "externalAuthIpAddress": "", + "fastTransition": "ENABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Thien_SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "REQUIRED", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": true, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda0t1bf-tK8W-udff-mK4Z-tZrqnuu2tJDpofa5rteWtJeXtZeY", + "profileName": "OPEN_profile", + "ssid": "OPEN", + "wlanType": "Enterprise", + "authType": "OPEN", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "OPEN_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mde4q1Db-x0Dv-rvnu-x1nt-surFqufbqZbxmueYxZnhnfu1rtzt", + "profileName": "CWA_GUEST_SSID_AAA_profile", + "ssid": "CWA_GUEST_SSID_AAA", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "CWA_GUEST_SSID_AAA_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mde0y3vZ-Dg9T-x3jM-x3nZ-AwrJmhuXCZj0m280BtvFnNi3zJHF", + "profileName": "custom_rf_ssid_profile", + "ssid": "custom_rf_ssid", + "wlanType": "Enterprise", + "authType": "WPA2_WPA3_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "custom_rf_ssid_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "REQUIRED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiZDgHP-zw5S-B3PF-qxnZ-DxjHBMnLx2LJyxb0mgGXAtjLm240", + "profileName": "thienloz_Assurance_ic_profile", + "ssid": "thienloz_Assurance_icap", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_internal", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "thienloz_Assurance_ic_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda1zgf0-mJfK-mgeX-DdiY-mZe0zdvHnNq3mJGXowqXmgeXmxqX", + "profileName": "dat21_profile", + "ssid": "dat21", + "wlanType": "Enterprise", + "authType": "WPA2_WPA3_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "dat21_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 2000, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": false, + "isHex": false, + "isBroadcastSSID": false, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": true, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiYDgHP-zw52-B19b-C3n1-CMfUy2vFAwnHChqWAdfPmMuZBJr2", + "profileName": "thienvo_Assurance_ica_profile", + "ssid": "thienvo_Assurance_icap", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "thienvo_Assurance_ica_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeZu1nj-rerv-quWG-qKfo-rfmWuZfjmKqZrdrvnue2tdCGoei5", + "profileName": "SSIDDUAL BAND_profile", + "ssid": "SSIDDUAL BAND", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ENABLE", + "authServer": "auth_external", + "authServers": [], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "SSIDDUAL BAND_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": true, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda1r1vf-u1rh-mfuX-rtjt-m1q0rZvvnKu3uZHuouCXmfuXmuuX", + "profileName": "GUEST_profile", + "ssid": "GUEST", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "GUEST_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeWuMfU-zg9T-x21H-y1iW-ytfUmMqZBZrTnv82BtDHogm5uJeW", + "profileName": "Random_mac_profile", + "ssid": "Random_mac", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "Random_mac_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": true, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": true, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeYu2LU-z2XL-nuTc-yw5K-uZbPmw4YzZnSngu1ntzln0i4ytLU", + "profileName": "Single5KBand_profile", + "ssid": "Single5KBand", + "wlanType": "Enterprise", + "authType": "WPA2_PERSONAL", + "l3AuthType": "open", + "passphrase": "NO!$DATA!$", + "externalAuthIpAddress": "", + "fastTransition": "ENABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "Single5KBand_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": true, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "5GHz only", + "isCustomNasIdOptions": false + }, + { + "id": "mdaZDguX-DdbL-mteY-DdnL-nde1DdzLnZe4DdLLmtaXmtf0mtjL", + "profileName": "te1_profile", + "ssid": "te1", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ENABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "te1_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 2000, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": false, + "isHex": false, + "isBroadcastSSID": false, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": true, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": true, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda3vgvZ-DgLU-z1qW-ztfZ-mNqZAtrUnwC2vdDLohm5DdeWAteX", + "profileName": "Testing_profile", + "ssid": "Testing", + "wlanType": "Enterprise", + "authType": "WPA3_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Testing_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "REQUIRED", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiXDgHP-zw5F-qxnZ-DxjH-BMnLmL9Py2fWDdbOmwKYztnUnf81", + "profileName": "thien_Assurance2_icap_profile", + "ssid": "thien_Assurance2_icap", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_internal", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "thien_Assurance2_icap_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda2r1vf-u1qY-rZbv-muuY-uZnundi1rZzvn0u4uZLumtaYmtfh", + "profileName": "GUEST2_profile", + "ssid": "GUEST2", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "GUEST2_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda4DhnZ-Dhn0-C3r0-mhmX-CZj0m3m0DdvZnNq3DdHZoxmXmhqX", + "profileName": "tsststst_profile", + "ssid": "tsststst", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "204.192.1.123" + ], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "tsststst_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mde0u1nj-rerV-Ddfy-sw5K-AwftmfmXstjem0q0BZv0nJe3wdHj", + "profileName": "SSIDDot1XIndia_profile", + "ssid": "SSIDDot1XIndia", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "SSIDDot1XIndia_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiZicaG-icGH-jcHB-xdPD-qhXFjIuTi1ntsuqGmcaXidiGmYG0", + "profileName": "(!$([\\:]@|_&%-#SSID_profile", + "ssid": " (!$([\\:]@|_&%-#SSID", + "wlanType": "Enterprise", + "authType": "OPEN", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "(!$([\\:]@|_&%-#SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeXuMfK-AxvZ-x3nZ-Awrs-mgeXzdjPm3u0CZvFnNm3CZHPowqX", + "profileName": "Radius_ssid_profile", + "ssid": "Radius_ssid", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [], + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "Radius_ssid_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeWqvjv-qKfF-u1nj-reeW-uJfvmKiZqtrFnvm2uZDjoeq5qteW", + "profileName": "ARUBA_SSID_profile", + "ssid": "ARUBA_SSID", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "https://10.195.227.10/guest/guest_register_login.php", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "ARUBA_SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + } + ], + "version": "1.0" + }, + "get_interfaces": { + "response": [ + { + "id": "mda5vKXb-tJaX-mdaX-vJbm-mueYtJmWnde1mdyWnZe4vJLmmtbb", + "interfaceName": "VLAN01001", + "vlanId": 20 + } + ], + "version": "1.0" + }, + "get_feature_template_summary11": { + "response": [ + { + "type": "FLEX_CONFIGURATION", + "count": 1, + "instances": [ + { + "designName": "Default Flex Configuration", + "id": "d57bc185-9616-46cd-965f-f24b5e86be99", + "systemTemplate": true + } + ] + } + ], + "version": "1.0" + }, + "get_dot11be_profile1": { + "response": [ + { + "id": "8b1a9953-c461-3296-a827-abf8c47804d7", + "profileName": "Hello", + "muMimoDownLink": false, + "muMimoUpLink": false, + "ofdmaDownLink": true, + "ofdmaUpLink": true, + "ofdmaMultiRu": false, + "default": true + } + ], + "version": "1.0" + }, + "configuration_templates": { + "response": { + "taskId": "019950d4-2919-7630-b71d-342167041b3f", + "url": "/api/v1/task/019950d4-2919-7630-b71d-342167041b3f" + }, + "version": "1.0" + }, + "configuration_templates_id": { + "response": { + "endTime": 1757997705581, + "status": "SUCCESS", + "startTime": 1757997705497, + "resultLocation": "/dna/intent/api/v1/tasks/019950d4-2919-7630-b71d-342167041b3f/detail", + "id": "019950d4-2919-7630-b71d-342167041b3f" + }, + "version": "1.0" + }, + "dn_template1": [ + { + "progress": "Template successfully attached to the network profile" + } + ], + "retrieves_the_list_of_network_profiles_for_sites11": { + "response": [ + { + "id": "021ce80b-f2bd-4360-86b4-005b82691b69", + "name": "New2_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "0309a82b-82cf-416e-a971-9c1c9b951bf1", + "name": "Ans NP WL creation 1", + "type": "Wireless" + }, + { + "id": "0c9411d3-4e88-4d64-bbb6-6dccd29ae81d", + "name": "New_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "13ddbfb3-0bb6-4656-be4e-849fedfd3005", + "name": "Ans NP WL creation 5", + "type": "Wireless" + }, + { + "id": "218cc2d3-6cdd-4082-abb2-d7532b533b1f", + "name": "Ans NP WL creation 4", + "type": "Wireless" + }, + { + "id": "24f7cfb5-efa5-46dd-997d-6eebe4efc5aa", + "name": "Ans NP WL creation 3", + "type": "Wireless" + }, + { + "id": "27787a94-8080-4367-b3eb-ff305b9a9218", + "name": "Thien_Profile", + "type": "Wireless" + }, + { + "id": "2e754dc5-f57a-458f-af6f-8bbc4f8a39c8", + "name": "New5_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "3217c2d3-5f80-436c-b985-981a1218d157", + "name": "Campus_Wireless_Profile_2", + "type": "Wireless" + }, + { + "id": "487a1c07-b25a-4be0-80c2-508480adc9bf", + "name": "Campus_Wireless_Profile_1", + "type": "Wireless" + }, + { + "id": "9a3e05a5-b2cc-47ae-9030-f7f1171d8326", + "name": "Ans NP WL creation 6", + "type": "Wireless" + }, + { + "id": "b4e7e3de-e86b-4ade-9fa2-d1314f658fcb", + "name": "New75_Campus_Wireless_Profile1", + "type": "Wireless" + }, + { + "id": "bc535014-7a5a-41e6-b560-93365a9918ab", + "name": "bulk_creation_98", + "type": "Wireless" + }, + { + "id": "bd13b2ec-7349-43c1-9420-389ad532bbb5", + "name": "Provision NY", + "type": "Wireless" + }, + { + "id": "eb86d858-c01c-47c4-83a6-ef20d50d7e7e", + "name": "New1_Campus_Wireless_Profile1", + "type": "Wireless" + } ], "version": "1.0" -}, - "get_wireless_profiles_v1":{ + }, + "get_wireless_profile": { "response": [ - { - "id": "b4e7e3de-e86b-4ade-9fa2-d1314f658fcb", - "wirelessProfileName": "New75_Campus_Wireless_Profile1", - "ssidDetails": [ - { - "ssidName": "posture", - "enableFabric": false, - "flexConnect": { - "enableFlexConnect": false - }, - "wlanProfileName": "posture_profile", - "policyProfileName": "posture_profile", - "dot11beProfileId": "8b1a9953-c461-3296-a827-abf8c47804d7", - "vlanGroupName": "Ans_NP_WL_INT_group_1" - } - ], - "additionalInterfaces": [], - "apZones": [], - "featureTemplates": [ - { - "designName": "Default CleanAir 802.11b Design", - "id": "b17463b1-b0f9-4e7f-a987-c3bb97236dd1", - "ssids": [] - }, - { - "designName": "Default CleanAir 6GHz Design", - "id": "dae784a7-7589-4b98-a924-b93c3d5f5604", - "ssids": [] - } + { + "id": "3217c2d3-5f80-436c-b985-981a1218d157", + "wirelessProfileName": "Campus_Wireless_Profile_2", + "ssidDetails": [ + { + "ssidName": "posture", + "enableFabric": false, + "flexConnect": { + "enableFlexConnect": false + }, + "wlanProfileName": "posture_profile", + "policyProfileName": "posture_profile", + "dot11beProfileId": "8b1a9953-c461-3296-a827-abf8c47804d7", + "vlanGroupName": "Ans_NP_WL_INT_group_1" + } + ], + "additionalInterfaces": [ + "VLAN01001" + ], + "apZones": [ + { + "apZoneName": "AP_Zone_North", + "rfProfileName": "HIGH", + "ssids": [ + "posture" ] - } + } + ], + "featureTemplates": [ + { + "designName": "Default Flex Configuration", + "id": "d57bc185-9616-46cd-965f-f24b5e86be99", + "ssids": [] + } + ] + } ], "version": "1.2" -}, -"get_site_lists_for_profile":{ - "response": [ - { - "id": "bdfc91e1-157e-4d88-b8aa-69859e6df0ec" - } - ], - "version": "1.0" -}, -"retrieves_the_list_of_network_profiles_for_sites1":{ - "response": [ - { - "id": "021ce80b-f2bd-4360-86b4-005b82691b69", - "name": "New2_Campus_Wireless_Profile1", - "type": "Wireless" - }, - { - "id": "0309a82b-82cf-416e-a971-9c1c9b951bf1", - "name": "Ans NP WL creation 1", - "type": "Wireless" - }, + }, + "gets_the_templates_available1": [ + { + "name": "Ans Switch DayN 1", + "projectName": "Cloud DayN Templates", + "projectId": "31ea119f-8466-4114-ae26-dc17c3a3445f", + "templateId": "487f2302-9a45-4b86-a748-d0b03f8595a7", + "versionsInfo": [ { - "id": "0c9411d3-4e88-4d64-bbb6-6dccd29ae81d", - "name": "New_Campus_Wireless_Profile1", - "type": "Wireless" + "id": "05adbf55-06d5-45b3-af96-7e335ae23c19", + "author": "thievo", + "version": "2", + "versionTime": 1752660544122 }, { - "id": "13ddbfb3-0bb6-4656-be4e-849fedfd3005", - "name": "Ans NP WL creation 5", - "type": "Wireless" - }, + "id": "026a9243-0ad7-4e52-9e27-b90e37a9cb9b", + "author": "thievo", + "version": "1", + "versionTime": 1752660387225 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ { - "id": "218cc2d3-6cdd-4082-abb2-d7532b533b1f", - "name": "Ans NP WL creation 4", - "type": "Wireless" - }, + "productFamily": "Switches and Hubs" + } + ] + }, + { + "name": "Ans Switch DayN 2", + "projectName": "Cloud DayN Templates", + "projectId": "31ea119f-8466-4114-ae26-dc17c3a3445f", + "templateId": "809bf7fd-ab67-41c4-abb0-1e8fed74fd2e", + "versionsInfo": [ { - "id": "24f7cfb5-efa5-46dd-997d-6eebe4efc5aa", - "name": "Ans NP WL creation 3", - "type": "Wireless" + "id": "5524a655-7f0e-456a-992d-a3e00fc00612", + "author": "thievo", + "version": "2", + "versionTime": 1752660547080 }, { - "id": "27787a94-8080-4367-b3eb-ff305b9a9218", - "name": "Thien_Profile", - "type": "Wireless" - }, + "id": "83a9fb54-7f4b-44b4-9568-d18a54c49547", + "author": "thievo", + "version": "1", + "versionTime": 1752660390223 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ { - "id": "2e754dc5-f57a-458f-af6f-8bbc4f8a39c8", - "name": "New5_Campus_Wireless_Profile1", - "type": "Wireless" - }, + "productFamily": "Switches and Hubs" + } + ] + }, + { + "name": "Ans Switch Onb 1", + "projectName": "Onboarding Configuration", + "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", + "templateId": "08e2992f-1e46-421d-9814-3f325767cebd", + "versionsInfo": [ { - "id": "487a1c07-b25a-4be0-80c2-508480adc9bf", - "name": "Campus_Wireless_Profile_1", - "type": "Wireless" + "id": "1a204038-bada-409d-b7a2-6c58eef51e4d", + "author": "thievo", + "version": "1", + "versionTime": 1752660380977 }, { - "id": "9a3e05a5-b2cc-47ae-9030-f7f1171d8326", - "name": "Ans NP WL creation 6", - "type": "Wireless" - }, + "id": "df7c2be2-c92d-48f7-a3d1-8f82fe7da662", + "author": "thievo", + "version": "2", + "versionTime": 1752660537959 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ { - "id": "b4e7e3de-e86b-4ade-9fa2-d1314f658fcb", - "name": "New75_Campus_Wireless_Profile1", - "type": "Wireless" - }, + "productFamily": "Switches and Hubs" + } + ] + }, + { + "name": "Ans Switch Onb 2", + "projectName": "Onboarding Configuration", + "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", + "templateId": "e6fb4448-f199-49c4-8c1d-20699e0df00a", + "versionsInfo": [ { - "id": "bc535014-7a5a-41e6-b560-93365a9918ab", - "name": "bulk_creation_98", - "type": "Wireless" + "id": "fff29c0f-bf39-4cdc-917d-3cbb0394a8d4", + "author": "thievo", + "version": "1", + "versionTime": 1752660383971 }, { - "id": "bd13b2ec-7349-43c1-9420-389ad532bbb5", - "name": "Provision NY", - "type": "Wireless" - }, + "id": "e3cae7b7-3dc5-4d66-bd57-4ec10f6d4197", + "author": "thievo", + "version": "2", + "versionTime": 1752660540933 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ { - "id": "eb86d858-c01c-47c4-83a6-ef20d50d7e7e", - "name": "New1_Campus_Wireless_Profile1", - "type": "Wireless" + "productFamily": "Switches and Hubs" } - ], - "version": "1.0" -}, -"gets_the_templates_available": [ - { - "name": "WLC Template", - "projectName": "ODC Provisioning", - "projectId": "fa18dd05-d41c-441c-af44-8e2644781823", - "templateId": "5935fbdb-3d4c-4d6c-be5f-c61401be6b93", - "versionsInfo": [ - { - "id": "38a74df1-779c-441e-97ce-9b4670cd1fd0", - "description": "", - "author": "admin", - "version": "3", - "versionComment": "", - "versionTime": 1740777392227 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Wireless Controller" - } - ] + ] }, { - "name": "Ans Wireless DayN 1", - "projectName": "Cloud DayN Templates", - "projectId": "d5a01b46-075d-4366-8cb5-fd68ed3d7534", - "templateId": "b7494025-20f0-4902-aa72-e76d3e2394c9", - "versionsInfo": [ - { - "id": "d99cbbc4-b997-408f-a7c0-e6546cc0e321", - "author": "admin", - "version": "1", - "versionTime": 1761200924634 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Wireless Controller" - } - ] - } -], -"get_sites":{ - "response": [ - { - "id": "44e4706f-5244-46f4-a20b-6f402675271d", - "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155/f8bb33e5-38c2-41e8-b67c-986da5475cc2/355bbdf4-ec36-49af-b8aa-4bd69373a4f0/a988e384-4b56-44bd-af91-404a4b8d61ca/44e4706f-5244-46f4-a20b-6f402675271d", - "parentId": "a988e384-4b56-44bd-af91-404a4b8d61ca", - "name": "FLOOR1", - "nameHierarchy": "Global/USA/SAN JOSE/SJ_BLD23/FLOOR1", - "type": "floor", - "floorNumber": 1, - "rfModel": "Cubes And Walled Offices", - "width": 100.0, - "length": 100.0, - "height": 10.0, - "unitsOfMeasure": "feet" - } - ], - "version": "1.0" -}, -"get_sites11":{ - "response": [], - "version": "1.0" -}, -"get_sites12":{ - "response": [ - { - "id": "73273999-4fde-4376-b071-25ebee51d155", - "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155", - "name": "Global", - "nameHierarchy": "Global", - "type": "global" - } - ], - "version": "1.0" -}, -"get_enterprise_ssid1":{ - "response": [ + "name": "PnP-Devices-SW", + "projectName": "Onboarding Configuration", + "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", + "templateId": "b4044e02-f893-48a2-9eeb-cea2fbd52970", + "versionsInfo": [ { - "id": "mdeZu1nj-rfnJ-AgvK-DwXL-CLmWuZfjmKqZuZrJnwG2ztDKohu5", - "profileName": "SSIDScheduler_profile", - "ssid": "SSIDScheduler", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "SSIDScheduler_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, - { - "id": "mdiWr3vL-C3rF-D2vI-CgfZ-C3rOCM91z2HhmhuXztjZm3q0xZv3", - "profileName": "Guest_webpassthrough_profile", - "ssid": "Guest_webpassthrough", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_internal", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": true, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Guest_webpassthrough_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false - }, + "id": "4d4f8389-c2e2-4916-acc2-b112b3200594", + "description": "", + "author": "admin", + "version": "1", + "versionComment": "", + "versionTime": 1753955154980 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ { - "id": "mda3Cg9Z-DhvY-zxaW-BZfZ-mNqZDtrYnwu2CdDVohm5DdeWDteX", - "profileName": "posture_profile", - "ssid": "posture", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "posture_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 2960-CX Series Switches" }, { - "id": "mda5vgHH-BL9t-u0Le-vdbO-mweYBJnFnfm1uZzjn0q4vdLOmtbH", - "profileName": "Than_SSID_profile", - "ssid": "Than_SSID", - "wlanType": "Enterprise", - "authType": "WPA2_WPA3_PERSONAL", - "l3AuthType": "open", - "passphrase": "NO!$DATA!$", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": [], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Than_SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": true, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": true, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco 550X Series Stackable Managed Switches" }, { - "id": "mda5ueHb-tI1t-u0Le-udbi-mueYtJmTnfm1uZzjn0q4udLimtbb", - "profileName": "PHAN-SSID_profile", - "ssid": "PHAN-SSID", - "wlanType": "Enterprise", - "authType": "WPA2_WPA3_PERSONAL", - "l3AuthType": "open", - "passphrase": "NO!$DATA!$", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": [], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "PHAN-SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": true, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": true, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco 350X Series Stackable Managed Switches" }, { - "id": "mdiXr3vL-C3rF-CgfZ-C3rO-CM91z2HFAw50rZb1mwuYCZn0nf81", - "profileName": "Guest_passthrough_int_profile", - "ssid": "Guest_passthrough_int", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "https://10.195.227.116/", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": true, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Guest_passthrough_int_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco 9350 Series Switches" }, { - "id": "mdiXr3vL-C3rF-D2vI-yxv0-AgLUDgvYBMfSrZb1mwuYCZn0nf81", - "profileName": "Guest_webauthinternal_profile", - "ssid": "Guest_webauthinternal", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_internal", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "Guest_webauthinternal_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 2960 Series Switches" }, { - "id": "mdeWvgHP-zw5F-u1nj-rfqW-AdfPmMuZBJrFnvm2uZDjoeq5vdeW", - "profileName": "Thien_SSID_profile", - "ssid": "Thien_SSID", - "wlanType": "Guest", - "authType": "WPA3_PERSONAL", - "l3AuthType": "web_auth", - "passphrase": "NO!$DATA!$", - "externalAuthIpAddress": "", - "fastTransition": "ENABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Thien_SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "REQUIRED", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": true, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco 350 Series Managed Switches" }, { - "id": "mda0t1bf-tK8W-udff-mK4Z-tZrqnuu2tJDpofa5rteWtJeXtZeY", - "profileName": "OPEN_profile", - "ssid": "OPEN", - "wlanType": "Enterprise", - "authType": "OPEN", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "OPEN_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 2960-X/XR Series Switches" }, { - "id": "mde4q1Db-x0Dv-rvnu-x1nt-surFqufbqZbxmueYxZnhnfu1rtzt", - "profileName": "CWA_GUEST_SSID_AAA_profile", - "ssid": "CWA_GUEST_SSID_AAA", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "CWA_GUEST_SSID_AAA_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 2960-L Series Switches" }, { - "id": "mde0y3vZ-Dg9T-x3jM-x3nZ-AwrJmhuXCZj0m280BtvFnNi3zJHF", - "profileName": "custom_rf_ssid_profile", - "ssid": "custom_rf_ssid", - "wlanType": "Enterprise", - "authType": "WPA2_WPA3_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "custom_rf_ssid_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "REQUIRED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 3560-C Series Switches" }, { - "id": "mdiZDgHP-zw5S-B3PF-qxnZ-DxjHBMnLx2LJyxb0mgGXAtjLm240", - "profileName": "thienloz_Assurance_ic_profile", - "ssid": "thienloz_Assurance_icap", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_internal", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "thienloz_Assurance_ic_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 4500 Series Switches" }, { - "id": "mda1zgf0-mJfK-mgeX-DdiY-mZe0zdvHnNq3mJGXowqXmgeXmxqX", - "profileName": "dat21_profile", - "ssid": "dat21", - "wlanType": "Enterprise", - "authType": "WPA2_WPA3_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "dat21_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 2000, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": false, - "isHex": false, - "isBroadcastSSID": false, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": true, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 3560-X Series Switches" }, { - "id": "mdiYDgHP-zw52-B19b-C3n1-CMfUy2vFAwnHChqWAdfPmMuZBJr2", - "profileName": "thienvo_Assurance_ica_profile", - "ssid": "thienvo_Assurance_icap", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "thienvo_Assurance_ica_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 4900 Series Switches" }, { - "id": "mdeZu1nj-rerv-quWG-qKfo-rfmWuZfjmKqZrdrvnue2tdCGoei5", - "profileName": "SSIDDUAL BAND_profile", - "ssid": "SSIDDUAL BAND", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ENABLE", - "authServer": "auth_external", - "authServers": [], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "SSIDDUAL BAND_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": true, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 3750 Series Switches" }, { - "id": "mda1r1vf-u1rh-mfuX-rtjt-m1q0rZvvnKu3uZHuouCXmfuXmuuX", - "profileName": "GUEST_profile", - "ssid": "GUEST", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "GUEST_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 2960-Plus Series Switches" }, { - "id": "mdeWuMfU-zg9T-x21H-y1iW-ytfUmMqZBZrTnv82BtDHogm5uJeW", - "profileName": "Random_mac_profile", - "ssid": "Random_mac", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "Random_mac_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": true, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": true, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco 9610 Series Switches" }, { - "id": "mdeYu2LU-z2XL-nuTc-yw5K-uZbPmw4YzZnSngu1ntzln0i4ytLU", - "profileName": "Single5KBand_profile", - "ssid": "Single5KBand", - "wlanType": "Enterprise", - "authType": "WPA2_PERSONAL", - "l3AuthType": "open", - "passphrase": "NO!$DATA!$", - "externalAuthIpAddress": "", - "fastTransition": "ENABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "Single5KBand_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": true, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "5GHz only", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 3650 Series Switches" }, { - "id": "mdaZDguX-DdbL-mteY-DdnL-nde1DdzLnZe4DdLLmtaXmtf0mtjL", - "profileName": "te1_profile", - "ssid": "te1", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ENABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "te1_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 2000, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": false, - "isHex": false, - "isBroadcastSSID": false, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": true, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": true, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 3560-CX Series Switches" }, { - "id": "mda3vgvZ-DgLU-z1qW-ztfZ-mNqZAtrUnwC2vdDLohm5DdeWAteX", - "profileName": "Testing_profile", - "ssid": "Testing", - "wlanType": "Enterprise", - "authType": "WPA3_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Testing_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "REQUIRED", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 3550 Series Switches" }, { - "id": "mdiXDgHP-zw5F-qxnZ-DxjH-BMnLmL9Py2fWDdbOmwKYztnUnf81", - "profileName": "thien_Assurance2_icap_profile", - "ssid": "thien_Assurance2_icap", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_internal", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "thien_Assurance2_icap_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 4500-X Series Switches" }, { - "id": "mda2r1vf-u1qY-rZbv-muuY-uZnundi1rZzvn0u4uZLumtaYmtfh", - "profileName": "GUEST2_profile", - "ssid": "GUEST2", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "GUEST2_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 2975 Series Switches" }, { - "id": "mda4DhnZ-Dhn0-C3r0-mhmX-CZj0m3m0DdvZnNq3DdHZoxmXmhqX", - "profileName": "tsststst_profile", - "ssid": "tsststst", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "204.192.1.123" - ], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "tsststst_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 3560-E Series Switches" }, { - "id": "mde0u1nj-rerV-Ddfy-sw5K-AwftmfmXstjem0q0BZv0nJe3wdHj", - "profileName": "SSIDDot1XIndia_profile", - "ssid": "SSIDDot1XIndia", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "SSIDDot1XIndia_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 3850 Series Ethernet Stackable Switch" }, { - "id": "mdiZicaG-icGH-jcHB-xdPD-qhXFjIuTi1ntsuqGmcaXidiGmYG0", - "profileName": "(!$([\\:]@|_&%-#SSID_profile", - "ssid": " (!$([\\:]@|_&%-#SSID", - "wlanType": "Enterprise", - "authType": "OPEN", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "(!$([\\:]@|_&%-#SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 2960-C Series Switches" }, { - "id": "mdeXuMfK-AxvZ-x3nZ-Awrs-mgeXzdjPm3u0CZvFnNm3CZHPowqX", - "profileName": "Radius_ssid_profile", - "ssid": "Radius_ssid", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [], - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "Radius_ssid_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 3560 Series Switches" }, { - "id": "mdeWqvjv-qKfF-u1nj-reeW-uJfvmKiZqtrFnvm2uZDjoeq5qteW", - "profileName": "ARUBA_SSID_profile", - "ssid": "ARUBA_SSID", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "https://10.195.227.10/guest/guest_register_login.php", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "ARUBA_SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 2950 Series Switches" } - ], - "version": "1.0" -}, -"get_interfaces":{ - "response": [ - { - "id": "mda5vKXb-tJaX-mdaX-vJbm-mueYtJmWnde1mdyWnZe4vJLmmtbb", - "interfaceName": "VLAN01001", - "vlanId": 20 - } - ], - "version": "1.0" -}, -"get_feature_template_summary11":{ - "response": [ + ] + }, { - "type": "FLEX_CONFIGURATION", - "count": 1, - "instances": [ + "name": "PnP-Devices_SF-EWLC_No-Vars", + "projectName": "Onboarding Configuration", + "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", + "templateId": "38ba1e13-4109-4378-ac9d-346f3f597f4b", + "versionsInfo": [ { - "designName": "Default Flex Configuration", - "id": "d57bc185-9616-46cd-965f-f24b5e86be99", - "systemTemplate": true + "id": "1674c47b-afba-4751-9d14-a0e8148d5f2f", + "author": "admin", + "version": "1", + "versionTime": 1750777018996 } - ] - } - ], - "version": "1.0" -}, -"get_dot11be_profile1": { - "response": [ + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ { - "id": "8b1a9953-c461-3296-a827-abf8c47804d7", - "profileName": "Hello", - "muMimoDownLink": false, - "muMimoUpLink": false, - "ofdmaDownLink": true, - "ofdmaUpLink": true, - "ofdmaMultiRu": false, - "default": true + "productFamily": "Wireless Controller", + "productSeries": "Cisco Catalyst 9800 Series Wireless Controllers" } - ], - "version": "1.0" -}, -"configuration_templates":{ - "response": { - "taskId": "019950d4-2919-7630-b71d-342167041b3f", - "url": "/api/v1/task/019950d4-2919-7630-b71d-342167041b3f" - }, - "version": "1.0" -}, -"configuration_templates_id":{ - "response": { - "endTime": 1757997705581, - "status": "SUCCESS", - "startTime": 1757997705497, - "resultLocation": "/dna/intent/api/v1/tasks/019950d4-2919-7630-b71d-342167041b3f/detail", - "id": "019950d4-2919-7630-b71d-342167041b3f" - }, - "version": "1.0" -}, -"dn_template1":[ + ] + }, { - "progress": "Template successfully attached to the network profile" - } - ], - "retrieves_the_list_of_network_profiles_for_sites11":{ - "response": [ - { - "id": "021ce80b-f2bd-4360-86b4-005b82691b69", - "name": "New2_Campus_Wireless_Profile1", - "type": "Wireless" - }, - { - "id": "0309a82b-82cf-416e-a971-9c1c9b951bf1", - "name": "Ans NP WL creation 1", - "type": "Wireless" - }, - { - "id": "0c9411d3-4e88-4d64-bbb6-6dccd29ae81d", - "name": "New_Campus_Wireless_Profile1", - "type": "Wireless" - }, - { - "id": "13ddbfb3-0bb6-4656-be4e-849fedfd3005", - "name": "Ans NP WL creation 5", - "type": "Wireless" - }, - { - "id": "218cc2d3-6cdd-4082-abb2-d7532b533b1f", - "name": "Ans NP WL creation 4", - "type": "Wireless" - }, - { - "id": "24f7cfb5-efa5-46dd-997d-6eebe4efc5aa", - "name": "Ans NP WL creation 3", - "type": "Wireless" - }, - { - "id": "27787a94-8080-4367-b3eb-ff305b9a9218", - "name": "Thien_Profile", - "type": "Wireless" - }, - { - "id": "2e754dc5-f57a-458f-af6f-8bbc4f8a39c8", - "name": "New5_Campus_Wireless_Profile1", - "type": "Wireless" - }, - { - "id": "3217c2d3-5f80-436c-b985-981a1218d157", - "name": "Campus_Wireless_Profile_2", - "type": "Wireless" - }, + "name": "PnP-Devices_SJ-EWLC", + "projectName": "Onboarding Configuration", + "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", + "templateId": "23e15911-06a8-410c-9dd2-f072a1bfc06c", + "versionsInfo": [ { - "id": "487a1c07-b25a-4be0-80c2-508480adc9bf", - "name": "Campus_Wireless_Profile_1", - "type": "Wireless" - }, + "id": "aeb2b631-36fc-4185-8549-14791efb57b4", + "author": "admin", + "version": "1", + "versionTime": 1750776888396 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ { - "id": "9a3e05a5-b2cc-47ae-9030-f7f1171d8326", - "name": "Ans NP WL creation 6", - "type": "Wireless" - }, + "productFamily": "Wireless Controller", + "productSeries": "Cisco Catalyst 9800 Series Wireless Controllers" + } + ] + }, + { + "name": "PnP-Upstream-SW", + "projectName": "access_van_template_9300_switches", + "projectId": "8a803f05-cec4-4b0c-a2e5-b03825a3d751", + "templateId": "410c17e8-2de1-461c-a03c-533f35f8d234", + "versionsInfo": [ { - "id": "b4e7e3de-e86b-4ade-9fa2-d1314f658fcb", - "name": "New75_Campus_Wireless_Profile1", - "type": "Wireless" + "id": "7281d4d6-b743-4184-891b-41ed935f3468", + "description": "Template to configure Access Vlan n Access Interfaces", + "author": "datcpham", + "version": "4", + "versionTime": 1754299417469 }, { - "id": "bc535014-7a5a-41e6-b560-93365a9918ab", - "name": "bulk_creation_98", - "type": "Wireless" + "id": "51ffd943-9150-4336-baf5-11e04e4ddcf8", + "description": "Template to configure Access Vlan n Access Interfaces", + "author": "datcpham", + "version": "3", + "versionTime": 1754297578550 }, { - "id": "bd13b2ec-7349-43c1-9420-389ad532bbb5", - "name": "Provision NY", - "type": "Wireless" + "id": "eeab1b0a-7f13-470a-8e39-37b7a915bdc3", + "description": "Template to configure Access Vlan n Access Interfaces", + "author": "datcpham", + "version": "2", + "versionTime": 1754297158497 }, { - "id": "eb86d858-c01c-47c4-83a6-ef20d50d7e7e", - "name": "New1_Campus_Wireless_Profile1", - "type": "Wireless" + "id": "f32369a3-0ba3-4942-889e-57765f1aea6d", + "description": "Template to configure Access Vlan n Access Interfaces", + "author": "datcpham", + "version": "1", + "versionTime": 1754295990305 } - ], - "version": "1.0" -}, -"get_wireless_profile":{ - "response": [ + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ { - "id": "3217c2d3-5f80-436c-b985-981a1218d157", - "wirelessProfileName": "Campus_Wireless_Profile_2", - "ssidDetails": [ - { - "ssidName": "posture", - "enableFabric": false, - "flexConnect": { - "enableFlexConnect": false - }, - "wlanProfileName": "posture_profile", - "policyProfileName": "posture_profile", - "dot11beProfileId": "8b1a9953-c461-3296-a827-abf8c47804d7", - "vlanGroupName": "Ans_NP_WL_INT_group_1" - } - ], - "additionalInterfaces": [ - "VLAN01001" - ], - "apZones": [ - { - "apZoneName": "AP_Zone_North", - "rfProfileName": "HIGH", - "ssids": [ - "posture" - ] - } - ], - "featureTemplates": [ - { - "designName": "Default Flex Configuration", - "id": "d57bc185-9616-46cd-965f-f24b5e86be99", - "ssids": [] - } - ] + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 9300 Series Switches" } - ], - "version": "1.2" -}, -"gets_the_templates_available1":[ - { - "name": "Ans Switch DayN 1", - "projectName": "Cloud DayN Templates", - "projectId": "31ea119f-8466-4114-ae26-dc17c3a3445f", - "templateId": "487f2302-9a45-4b86-a748-d0b03f8595a7", - "versionsInfo": [ - { - "id": "05adbf55-06d5-45b3-af96-7e335ae23c19", - "author": "thievo", - "version": "2", - "versionTime": 1752660544122 - }, - { - "id": "026a9243-0ad7-4e52-9e27-b90e37a9cb9b", - "author": "thievo", - "version": "1", - "versionTime": 1752660387225 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Switches and Hubs" - } - ] - }, - { - "name": "Ans Switch DayN 2", - "projectName": "Cloud DayN Templates", - "projectId": "31ea119f-8466-4114-ae26-dc17c3a3445f", - "templateId": "809bf7fd-ab67-41c4-abb0-1e8fed74fd2e", - "versionsInfo": [ - { - "id": "5524a655-7f0e-456a-992d-a3e00fc00612", - "author": "thievo", - "version": "2", - "versionTime": 1752660547080 - }, - { - "id": "83a9fb54-7f4b-44b4-9568-d18a54c49547", - "author": "thievo", - "version": "1", - "versionTime": 1752660390223 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Switches and Hubs" - } - ] - }, - { - "name": "Ans Switch Onb 1", - "projectName": "Onboarding Configuration", - "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", - "templateId": "08e2992f-1e46-421d-9814-3f325767cebd", - "versionsInfo": [ - { - "id": "1a204038-bada-409d-b7a2-6c58eef51e4d", - "author": "thievo", - "version": "1", - "versionTime": 1752660380977 - }, - { - "id": "df7c2be2-c92d-48f7-a3d1-8f82fe7da662", - "author": "thievo", - "version": "2", - "versionTime": 1752660537959 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Switches and Hubs" - } - ] - }, - { - "name": "Ans Switch Onb 2", - "projectName": "Onboarding Configuration", - "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", - "templateId": "e6fb4448-f199-49c4-8c1d-20699e0df00a", - "versionsInfo": [ - { - "id": "fff29c0f-bf39-4cdc-917d-3cbb0394a8d4", - "author": "thievo", - "version": "1", - "versionTime": 1752660383971 - }, - { - "id": "e3cae7b7-3dc5-4d66-bd57-4ec10f6d4197", - "author": "thievo", - "version": "2", - "versionTime": 1752660540933 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Switches and Hubs" - } - ] - }, - { - "name": "PnP-Devices-SW", - "projectName": "Onboarding Configuration", - "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", - "templateId": "b4044e02-f893-48a2-9eeb-cea2fbd52970", - "versionsInfo": [ - { - "id": "4d4f8389-c2e2-4916-acc2-b112b3200594", - "description": "", - "author": "admin", - "version": "1", - "versionComment": "", - "versionTime": 1753955154980 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 2960-CX Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco 550X Series Stackable Managed Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco 350X Series Stackable Managed Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco 9350 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 2960 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco 350 Series Managed Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 2960-X/XR Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 2960-L Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 3560-C Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 4500 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 3560-X Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 4900 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 3750 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 2960-Plus Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco 9610 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 3650 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 3560-CX Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 3550 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 4500-X Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 2975 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 3560-E Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 3850 Series Ethernet Stackable Switch" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 2960-C Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 3560 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 2950 Series Switches" - } - ] - }, - { - "name": "PnP-Devices_SF-EWLC_No-Vars", - "projectName": "Onboarding Configuration", - "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", - "templateId": "38ba1e13-4109-4378-ac9d-346f3f597f4b", - "versionsInfo": [ - { - "id": "1674c47b-afba-4751-9d14-a0e8148d5f2f", - "author": "admin", - "version": "1", - "versionTime": 1750777018996 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco Catalyst 9800 Series Wireless Controllers" - } - ] - }, - { - "name": "PnP-Devices_SJ-EWLC", - "projectName": "Onboarding Configuration", - "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", - "templateId": "23e15911-06a8-410c-9dd2-f072a1bfc06c", - "versionsInfo": [ - { - "id": "aeb2b631-36fc-4185-8549-14791efb57b4", - "author": "admin", - "version": "1", - "versionTime": 1750776888396 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco Catalyst 9800 Series Wireless Controllers" - } - ] - }, - { - "name": "PnP-Upstream-SW", - "projectName": "access_van_template_9300_switches", - "projectId": "8a803f05-cec4-4b0c-a2e5-b03825a3d751", - "templateId": "410c17e8-2de1-461c-a03c-533f35f8d234", - "versionsInfo": [ - { - "id": "7281d4d6-b743-4184-891b-41ed935f3468", - "description": "Template to configure Access Vlan n Access Interfaces", - "author": "datcpham", - "version": "4", - "versionTime": 1754299417469 - }, - { - "id": "51ffd943-9150-4336-baf5-11e04e4ddcf8", - "description": "Template to configure Access Vlan n Access Interfaces", - "author": "datcpham", - "version": "3", - "versionTime": 1754297578550 - }, - { - "id": "eeab1b0a-7f13-470a-8e39-37b7a915bdc3", - "description": "Template to configure Access Vlan n Access Interfaces", - "author": "datcpham", - "version": "2", - "versionTime": 1754297158497 - }, - { - "id": "f32369a3-0ba3-4942-889e-57765f1aea6d", - "description": "Template to configure Access Vlan n Access Interfaces", - "author": "datcpham", - "version": "1", - "versionTime": 1754295990305 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 9300 Series Switches" - } - ] - }, - { - "name": "PnP-Upstream-SW", - "projectName": "Onboarding Configuration", - "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", - "templateId": "7bcd1efe-8169-4982-9b36-b8bd2090ed86", - "versionsInfo": [ - { - "id": "b4960dfd-4274-43df-906a-312c6dae57fb", - "description": "ABAAAA", - "author": "thievo", - "version": "6", - "versionTime": 1753342011415 - }, - { - "id": "f266fef7-150d-4b68-98a3-cbcfcecc1fa5", - "description": "ABAAAA", - "author": "thievo", - "version": "5", - "versionComment": "", - "versionTime": 1753341821153 - }, - { - "id": "69e437be-15c5-4bfd-8c79-bdef2f866d91", - "description": "ABAAAA", - "author": "thievo", - "version": "4", - "versionTime": 1753341553810 - }, - { - "id": "7660267a-8158-43fc-a48a-31fbac53a49c", - "description": "ABAAAA", - "author": "thievo", - "version": "3", - "versionTime": 1753340671783 - }, - { - "id": "02f0f0e9-5be5-4499-8d97-1166c311deae", - "description": "\u00e1dasdasd", - "author": "thievo", - "version": "2", - "versionTime": 1753339687516 - }, - { - "id": "79148f6f-a9af-41f5-863f-001b4207852f", - "author": "thievo", - "version": "1", - "versionTime": 1753169301471 - }, - { - "id": "284c64c7-3da1-4409-884a-90c78471c2fa", - "description": "ABAAAA", - "author": "thievo", - "version": "7", - "versionComment": "", - "versionTime": 1753342130406 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 9500 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 9300 Series Switches" - } - ] - }, - { - "name": "PnP-Upstream-SW1", - "projectName": "Onboarding Configuration", - "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", - "templateId": "32b46c36-eed3-4a4e-bc12-97d7185d8b89", - "versionsInfo": [ - { - "id": "807fa8cf-9056-40e8-9daa-cdac1907fbd4", - "author": "datcpham", - "version": "3", - "versionTime": 1754297581401 - }, - { - "id": "e8515fa1-ccd0-44ce-8ef1-2e3570c2f014", - "author": "datcpham", - "version": "2", - "versionTime": 1754297161322 - }, - { - "id": "22e07ea0-d542-4eb8-9d87-edbafcd4b060", - "author": "datcpham", - "version": "1", - "versionTime": 1754295991389 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 9500 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 9300 Series Switches" - } - ] - }, - { - "name": "PnP_Upstream_SF_EWLC_No-Vars", - "projectName": "Onboarding Configuration", - "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", - "templateId": "52f531f0-746e-4611-a566-f03751bc95dc", - "versionsInfo": [ - { - "id": "25ff2938-aee3-41aa-ac7d-2bb9dbfb1b69", - "author": "admin", - "version": "1", - "versionTime": 1750776953915 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 9500 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 9300 Series Switches" - } - ] - }, - { - "name": "PnP_Upstream_SJ_EWLC_No-Vars", - "projectName": "Onboarding Configuration", - "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", - "templateId": "f1771358-215b-4312-a981-0b2b307fd626", - "versionsInfo": [ - { - "id": "fc94f050-87cb-41aa-950e-90cb48ab714d", - "author": "admin", - "version": "1", - "versionTime": 1750776821729 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 9500 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 9300 Series Switches" - } - ] - }, - { - "name": "Template-Router-for-Deploy", - "projectName": "Onboarding Configuration", - "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", - "templateId": "64680b71-bc08-4e6a-a7c7-d79d88b44420", - "versionsInfo": [ - { - "id": "f3b23da4-053a-4acf-b3e3-024eb9743554", - "author": "thievo", - "version": "1", - "versionTime": 1752657935004 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Routers", - "productSeries": "Cisco ASR 1000 Series Aggregation Services Routers" - } - ] - }, - { - "name": "Template-Switch-for-Deploy", - "projectName": "Onboarding Configuration", - "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", - "templateId": "2b1f4ba0-e430-49f8-baa9-fefc503df5cd", - "versionsInfo": [ - { - "id": "a4a37475-5873-4baf-9acf-2b44133dc93e", - "author": "thievo", - "version": "1", - "versionTime": 1751439334649 - }, - { - "id": "3b795383-bd69-4769-848a-b51124bc3797", - "author": "thievo", - "version": "4", - "versionComment": "", - "versionTime": 1752657490522 - }, - { - "id": "13fb5530-5a80-4c0f-a04a-983e9e3a850b", - "author": "thievo", - "version": "3", - "versionComment": "", - "versionTime": 1752657415463 - }, - { - "id": "cb945c56-d3ec-419f-bb6d-8caa9a1f4665", - "author": "thievo", - "version": "2", - "versionTime": 1752656622884 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 9500 Series Switches" - }, - { - "productFamily": "Switches and Hubs", - "productSeries": "Cisco Catalyst 9300 Series Switches" - } - ] - }, - { - "name": "wireless_template", - "projectName": "Onboarding Configuration", - "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", - "templateId": "fac6594b-2666-41a7-b691-89764b8fcd3d", - "versionsInfo": [ - { - "id": "5d63d72c-a887-4d47-8690-cc36b7264530", - "description": "", - "author": "mohmshai", - "version": "1", - "versionComment": "", - "versionTime": 1757524578592 - } - ], - "composite": false, - "tags": [], - "softwareType": "IOS-XE", - "deviceTypes": [ - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco 3500 Series Wireless LAN Controller" - }, - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco 2500 Series Wireless LAN Controller" - }, - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco VIRTUAL Series Wireless LAN Controller" - }, - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco Catalyst 9800 Series Wireless Controllers" - }, - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco Mobility Express" - }, - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco Embedded Wireless Controller on Catalyst Access Points" - }, - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco 8500 Series Wireless LAN Controller" - }, - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco Access Point Modules" - }, - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco Catalyst 9800 Wireless Controllers for Cloud" - }, - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco Flex 7500 Series Wireless LAN Controller" - }, - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco 5760 Series Wireless LAN Controller" - }, - { - "productFamily": "Wireless Controller", - "productSeries": "Cisco 5500 Series Wireless LAN Controllers" - } - ] - } -], -"get_sites3":{ - "response": [ - { - "id": "44e4706f-5244-46f4-a20b-6f402675271d", - "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155/f8bb33e5-38c2-41e8-b67c-986da5475cc2/355bbdf4-ec36-49af-b8aa-4bd69373a4f0/a988e384-4b56-44bd-af91-404a4b8d61ca/44e4706f-5244-46f4-a20b-6f402675271d", - "parentId": "a988e384-4b56-44bd-af91-404a4b8d61ca", - "name": "FLOOR1", - "nameHierarchy": "Global/USA/SAN JOSE/SJ_BLD23/FLOOR1", - "type": "floor", - "floorNumber": 1, - "rfModel": "Cubes And Walled Offices", - "width": 100.0, - "length": 100.0, - "height": 10.0, - "unitsOfMeasure": "feet" - } - ], - "version": "1.0" -}, -"get_sites4":{ - "response": [], - "version": "1.0" -}, -"get_sites5":{ - "response": [ - { - "id": "73273999-4fde-4376-b071-25ebee51d155", - "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155", - "name": "Global", - "nameHierarchy": "Global", - "type": "global" - } - ], - "version": "1.0" -}, -" get_enterprise_ssid":{ - "response": [ + ] + }, + { + "name": "PnP-Upstream-SW", + "projectName": "Onboarding Configuration", + "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", + "templateId": "7bcd1efe-8169-4982-9b36-b8bd2090ed86", + "versionsInfo": [ { - "id": "mdeZu1nj-rfnJ-AgvK-DwXL-CLmWuZfjmKqZuZrJnwG2ztDKohu5", - "profileName": "SSIDScheduler_profile", - "ssid": "SSIDScheduler", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "SSIDScheduler_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "b4960dfd-4274-43df-906a-312c6dae57fb", + "description": "ABAAAA", + "author": "thievo", + "version": "6", + "versionTime": 1753342011415 }, { - "id": "mdiWr3vL-C3rF-D2vI-CgfZ-C3rOCM91z2HhmhuXztjZm3q0xZv3", - "profileName": "Guest_webpassthrough_profile", - "ssid": "Guest_webpassthrough", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_internal", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": true, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Guest_webpassthrough_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "f266fef7-150d-4b68-98a3-cbcfcecc1fa5", + "description": "ABAAAA", + "author": "thievo", + "version": "5", + "versionComment": "", + "versionTime": 1753341821153 }, { - "id": "mda3Cg9Z-DhvY-zxaW-BZfZ-mNqZDtrYnwu2CdDVohm5DdeWDteX", - "profileName": "posture_profile", - "ssid": "posture", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "posture_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "69e437be-15c5-4bfd-8c79-bdef2f866d91", + "description": "ABAAAA", + "author": "thievo", + "version": "4", + "versionTime": 1753341553810 + }, + { + "id": "7660267a-8158-43fc-a48a-31fbac53a49c", + "description": "ABAAAA", + "author": "thievo", + "version": "3", + "versionTime": 1753340671783 }, { - "id": "mda5vgHH-BL9t-u0Le-vdbO-mweYBJnFnfm1uZzjn0q4vdLOmtbH", - "profileName": "Than_SSID_profile", - "ssid": "Than_SSID", - "wlanType": "Enterprise", - "authType": "WPA2_WPA3_PERSONAL", - "l3AuthType": "open", - "passphrase": "NO!$DATA!$", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": [], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Than_SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": true, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": true, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "02f0f0e9-5be5-4499-8d97-1166c311deae", + "description": "\u00e1dasdasd", + "author": "thievo", + "version": "2", + "versionTime": 1753339687516 }, { - "id": "mda5ueHb-tI1t-u0Le-udbi-mueYtJmTnfm1uZzjn0q4udLimtbb", - "profileName": "PHAN-SSID_profile", - "ssid": "PHAN-SSID", - "wlanType": "Enterprise", - "authType": "WPA2_WPA3_PERSONAL", - "l3AuthType": "open", - "passphrase": "NO!$DATA!$", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": [], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "PHAN-SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": true, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": true, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "79148f6f-a9af-41f5-863f-001b4207852f", + "author": "thievo", + "version": "1", + "versionTime": 1753169301471 }, { - "id": "mdiXr3vL-C3rF-CgfZ-C3rO-CM91z2HFAw50rZb1mwuYCZn0nf81", - "profileName": "Guest_passthrough_int_profile", - "ssid": "Guest_passthrough_int", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "https://10.195.227.116/", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": true, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Guest_passthrough_int_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "284c64c7-3da1-4409-884a-90c78471c2fa", + "description": "ABAAAA", + "author": "thievo", + "version": "7", + "versionComment": "", + "versionTime": 1753342130406 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ + { + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 9500 Series Switches" }, { - "id": "mdiXr3vL-C3rF-D2vI-yxv0-AgLUDgvYBMfSrZb1mwuYCZn0nf81", - "profileName": "Guest_webauthinternal_profile", - "ssid": "Guest_webauthinternal", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_internal", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "Guest_webauthinternal_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 9300 Series Switches" + } + ] + }, + { + "name": "PnP-Upstream-SW1", + "projectName": "Onboarding Configuration", + "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", + "templateId": "32b46c36-eed3-4a4e-bc12-97d7185d8b89", + "versionsInfo": [ + { + "id": "807fa8cf-9056-40e8-9daa-cdac1907fbd4", + "author": "datcpham", + "version": "3", + "versionTime": 1754297581401 }, { - "id": "mdeWvgHP-zw5F-u1nj-rfqW-AdfPmMuZBJrFnvm2uZDjoeq5vdeW", - "profileName": "Thien_SSID_profile", - "ssid": "Thien_SSID", - "wlanType": "Guest", - "authType": "WPA3_PERSONAL", - "l3AuthType": "web_auth", - "passphrase": "NO!$DATA!$", - "externalAuthIpAddress": "", - "fastTransition": "ENABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Thien_SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "REQUIRED", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": true, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "e8515fa1-ccd0-44ce-8ef1-2e3570c2f014", + "author": "datcpham", + "version": "2", + "versionTime": 1754297161322 }, { - "id": "mda0t1bf-tK8W-udff-mK4Z-tZrqnuu2tJDpofa5rteWtJeXtZeY", - "profileName": "OPEN_profile", - "ssid": "OPEN", - "wlanType": "Enterprise", - "authType": "OPEN", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "OPEN_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "22e07ea0-d542-4eb8-9d87-edbafcd4b060", + "author": "datcpham", + "version": "1", + "versionTime": 1754295991389 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ + { + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 9500 Series Switches" }, { - "id": "mde4q1Db-x0Dv-rvnu-x1nt-surFqufbqZbxmueYxZnhnfu1rtzt", - "profileName": "CWA_GUEST_SSID_AAA_profile", - "ssid": "CWA_GUEST_SSID_AAA", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "CWA_GUEST_SSID_AAA_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 9300 Series Switches" + } + ] + }, + { + "name": "PnP_Upstream_SF_EWLC_No-Vars", + "projectName": "Onboarding Configuration", + "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", + "templateId": "52f531f0-746e-4611-a566-f03751bc95dc", + "versionsInfo": [ + { + "id": "25ff2938-aee3-41aa-ac7d-2bb9dbfb1b69", + "author": "admin", + "version": "1", + "versionTime": 1750776953915 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ + { + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 9500 Series Switches" }, { - "id": "mde0y3vZ-Dg9T-x3jM-x3nZ-AwrJmhuXCZj0m280BtvFnNi3zJHF", - "profileName": "custom_rf_ssid_profile", - "ssid": "custom_rf_ssid", - "wlanType": "Enterprise", - "authType": "WPA2_WPA3_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "custom_rf_ssid_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "REQUIRED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 9300 Series Switches" + } + ] + }, + { + "name": "PnP_Upstream_SJ_EWLC_No-Vars", + "projectName": "Onboarding Configuration", + "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", + "templateId": "f1771358-215b-4312-a981-0b2b307fd626", + "versionsInfo": [ + { + "id": "fc94f050-87cb-41aa-950e-90cb48ab714d", + "author": "admin", + "version": "1", + "versionTime": 1750776821729 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ + { + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 9500 Series Switches" }, { - "id": "mdiZDgHP-zw5S-B3PF-qxnZ-DxjHBMnLx2LJyxb0mgGXAtjLm240", - "profileName": "thienloz_Assurance_ic_profile", - "ssid": "thienloz_Assurance_icap", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_internal", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "thienloz_Assurance_ic_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 9300 Series Switches" + } + ] + }, + { + "name": "Template-Router-for-Deploy", + "projectName": "Onboarding Configuration", + "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", + "templateId": "64680b71-bc08-4e6a-a7c7-d79d88b44420", + "versionsInfo": [ + { + "id": "f3b23da4-053a-4acf-b3e3-024eb9743554", + "author": "thievo", + "version": "1", + "versionTime": 1752657935004 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ + { + "productFamily": "Routers", + "productSeries": "Cisco ASR 1000 Series Aggregation Services Routers" + } + ] + }, + { + "name": "Template-Switch-for-Deploy", + "projectName": "Onboarding Configuration", + "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", + "templateId": "2b1f4ba0-e430-49f8-baa9-fefc503df5cd", + "versionsInfo": [ + { + "id": "a4a37475-5873-4baf-9acf-2b44133dc93e", + "author": "thievo", + "version": "1", + "versionTime": 1751439334649 }, { - "id": "mda1zgf0-mJfK-mgeX-DdiY-mZe0zdvHnNq3mJGXowqXmgeXmxqX", - "profileName": "dat21_profile", - "ssid": "dat21", - "wlanType": "Enterprise", - "authType": "WPA2_WPA3_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "dat21_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 2000, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": false, - "isHex": false, - "isBroadcastSSID": false, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": true, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "3b795383-bd69-4769-848a-b51124bc3797", + "author": "thievo", + "version": "4", + "versionComment": "", + "versionTime": 1752657490522 }, { - "id": "mdiYDgHP-zw52-B19b-C3n1-CMfUy2vFAwnHChqWAdfPmMuZBJr2", - "profileName": "thienvo_Assurance_ica_profile", - "ssid": "thienvo_Assurance_icap", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "thienvo_Assurance_ica_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "13fb5530-5a80-4c0f-a04a-983e9e3a850b", + "author": "thievo", + "version": "3", + "versionComment": "", + "versionTime": 1752657415463 }, { - "id": "mdeZu1nj-rerv-quWG-qKfo-rfmWuZfjmKqZrdrvnue2tdCGoei5", - "profileName": "SSIDDUAL BAND_profile", - "ssid": "SSIDDUAL BAND", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ENABLE", - "authServer": "auth_external", - "authServers": [], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "SSIDDUAL BAND_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": true, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "id": "cb945c56-d3ec-419f-bb6d-8caa9a1f4665", + "author": "thievo", + "version": "2", + "versionTime": 1752656622884 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ + { + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 9500 Series Switches" }, { - "id": "mda1r1vf-u1rh-mfuX-rtjt-m1q0rZvvnKu3uZHuouCXmfuXmuuX", - "profileName": "GUEST_profile", - "ssid": "GUEST", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "GUEST_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Switches and Hubs", + "productSeries": "Cisco Catalyst 9300 Series Switches" + } + ] + }, + { + "name": "wireless_template", + "projectName": "Onboarding Configuration", + "projectId": "404fc836-7549-4c11-a91b-dc7089041a9a", + "templateId": "fac6594b-2666-41a7-b691-89764b8fcd3d", + "versionsInfo": [ + { + "id": "5d63d72c-a887-4d47-8690-cc36b7264530", + "description": "", + "author": "mohmshai", + "version": "1", + "versionComment": "", + "versionTime": 1757524578592 + } + ], + "composite": false, + "tags": [], + "softwareType": "IOS-XE", + "deviceTypes": [ + { + "productFamily": "Wireless Controller", + "productSeries": "Cisco 3500 Series Wireless LAN Controller" }, { - "id": "mdeWuMfU-zg9T-x21H-y1iW-ytfUmMqZBZrTnv82BtDHogm5uJeW", - "profileName": "Random_mac_profile", - "ssid": "Random_mac", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "Random_mac_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": true, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": true, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Wireless Controller", + "productSeries": "Cisco 2500 Series Wireless LAN Controller" }, { - "id": "mdeYu2LU-z2XL-nuTc-yw5K-uZbPmw4YzZnSngu1ntzln0i4ytLU", - "profileName": "Single5KBand_profile", - "ssid": "Single5KBand", - "wlanType": "Enterprise", - "authType": "WPA2_PERSONAL", - "l3AuthType": "open", - "passphrase": "NO!$DATA!$", - "externalAuthIpAddress": "", - "fastTransition": "ENABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "Single5KBand_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": true, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "5GHz only", - "isCustomNasIdOptions": false + "productFamily": "Wireless Controller", + "productSeries": "Cisco VIRTUAL Series Wireless LAN Controller" }, { - "id": "mdaZDguX-DdbL-mteY-DdnL-nde1DdzLnZe4DdLLmtaXmtf0mtjL", - "profileName": "te1_profile", - "ssid": "te1", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ENABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "te1_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 2000, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": false, - "isHex": false, - "isBroadcastSSID": false, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": true, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": true, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Wireless Controller", + "productSeries": "Cisco Catalyst 9800 Series Wireless Controllers" }, { - "id": "mda3vgvZ-DgLU-z1qW-ztfZ-mNqZAtrUnwC2vdDLohm5DdeWAteX", - "profileName": "Testing_profile", - "ssid": "Testing", - "wlanType": "Enterprise", - "authType": "WPA3_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "Testing_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "REQUIRED", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Wireless Controller", + "productSeries": "Cisco Mobility Express" }, { - "id": "mdiXDgHP-zw5F-qxnZ-DxjH-BMnLmL9Py2fWDdbOmwKYztnUnf81", - "profileName": "thien_Assurance2_icap_profile", - "ssid": "thien_Assurance2_icap", - "wlanType": "Guest", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_internal", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "thien_Assurance2_icap_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Wireless Controller", + "productSeries": "Cisco Embedded Wireless Controller on Catalyst Access Points" }, { - "id": "mda2r1vf-u1qY-rZbv-muuY-uZnundi1rZzvn0u4uZLumtaYmtfh", - "profileName": "GUEST2_profile", - "ssid": "GUEST2", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "172.23.241.229" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "GUEST2_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Wireless Controller", + "productSeries": "Cisco 8500 Series Wireless LAN Controller" }, { - "id": "mda4DhnZ-Dhn0-C3r0-mhmX-CZj0m3m0DdvZnNq3DdHZoxmXmhqX", - "profileName": "tsststst_profile", - "ssid": "tsststst", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_ise", - "authServers": [ - "204.192.1.123" - ], - "acctServers": [], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": [], - "sessionTimeOutEnable": true, - "sessionTimeOut": 28800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "tsststst_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": true, - "coverageHoleDetectionEnable": true, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": [], - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": true, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Wireless Controller", + "productSeries": "Cisco Access Point Modules" }, { - "id": "mde0u1nj-rerV-Ddfy-sw5K-AwftmfmXstjem0q0BZv0nJe3wdHj", - "profileName": "SSIDDot1XIndia_profile", - "ssid": "SSIDDot1XIndia", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [ - "172.23.241.230" - ], - "acctServers": [ - "172.23.241.229" - ], - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "SSIDDot1XIndia_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "DISABLED", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Wireless Controller", + "productSeries": "Cisco Catalyst 9800 Wireless Controllers for Cloud" }, { - "id": "mdiZicaG-icGH-jcHB-xdPD-qhXFjIuTi1ntsuqGmcaXidiGmYG0", - "profileName": "(!$([\\:]@|_&%-#SSID_profile", - "ssid": " (!$([\\:]@|_&%-#SSID", - "wlanType": "Enterprise", - "authType": "OPEN", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": true, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "(!$([\\:]@|_&%-#SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "", - "ingressQos": "", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": true, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Wireless Controller", + "productSeries": "Cisco Flex 7500 Series Wireless LAN Controller" }, { - "id": "mdeXuMfK-AxvZ-x3nZ-Awrs-mgeXzdjPm3u0CZvFnNm3CZHPowqX", - "profileName": "Radius_ssid_profile", - "ssid": "Radius_ssid", - "wlanType": "Enterprise", - "authType": "WPA2_ENTERPRISE", - "l3AuthType": "open", - "passphrase": "", - "externalAuthIpAddress": "", - "fastTransition": "ADAPTIVE", - "authServer": "auth_external", - "authServers": [], - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": true, - "policyProfileName": "Radius_ssid_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": true, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": true, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": true, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Wireless Controller", + "productSeries": "Cisco 5760 Series Wireless LAN Controller" }, { - "id": "mdeWqvjv-qKfF-u1nj-reeW-uJfvmKiZqtrFnvm2uZDjoeq5qteW", - "profileName": "ARUBA_SSID_profile", - "ssid": "ARUBA_SSID", - "wlanType": "Guest", - "authType": "OPEN", - "l3AuthType": "web_auth", - "passphrase": "", - "externalAuthIpAddress": "https://10.195.227.10/guest/guest_register_login.php", - "fastTransition": "DISABLE", - "authServer": "auth_external", - "authServers": null, - "acctServers": null, - "ghz24Policy": "dot11-bg-only", - "ghz6PolicyClientSteering": false, - "wlanBandSelectEnable": false, - "webPassthrough": false, - "sleepingClientEnable": false, - "sleepingClientTimeout": 720, - "nasOptions": null, - "sessionTimeOutEnable": true, - "sessionTimeOut": 1800, - "clientExclusionEnable": true, - "clientExclusionTimeout": 180, - "basicServiceSetMaxIdleEnable": true, - "basicServiceSetClientIdleTimeout": 300, - "directedMulticastServiceEnable": true, - "neighborListEnable": true, - "managementFrameProtectionClientprotection": "OPTIONAL", - "fastTransitionOverTheDistributedSystemEnable": false, - "policyProfileName": "ARUBA_SSID_profile", - "openSsid": "", - "aclName": "", - "rsnCipherSuiteCcmp256": false, - "rsnCipherSuiteGcmp128": false, - "rsnCipherSuiteGcmp256": false, - "rsnCipherSuiteCcmp128": false, - "egressQos": "PLATINUM", - "ingressQos": "PLATINUM-UP", - "cckmTsfTolerance": 0, - "aaaOverride": false, - "coverageHoleDetectionEnable": false, - "protectedManagementFrame": "OPTIONAL", - "multiPSKSettings": null, - "clientRateLimit": 0, - "inheritedSiteUUID": null, - "inheritedSiteName": "", - "inheritedSiteNameHierarchy": null, - "randomMacFilterEnabled": false, - "isFastLaneEnabled": false, - "isMacFilteringEnabled": false, - "isEnabled": true, - "isHex": false, - "isBroadcastSSID": true, - "isRandomMacFilterEnabled": false, - "isRadiusProfilingEnabled": false, - "isAuthKey8021x": false, - "isAuthKey8021xPlusFT": false, - "isAuthKey8021x_SHA256": false, - "isAuthKeySae": false, - "isAuthKeySaePlusFT": false, - "isAuthKeyPSK": false, - "isAuthKeyPSKPlusFT": false, - "isAuthKeyOWE": false, - "isAuthKeyEasyPSK": false, - "isAuthKeyPSKSHA256": false, - "isAuthKeySaeExt": false, - "isAuthKeySaeExtPlusFT": false, - "isAuthKeySuiteB1x": false, - "isAuthKeySuiteB1921x": false, - "isApBeaconProtectionEnabled": false, - "isPosturingEnabled": false, - "isCckmEnabled": false, - "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", - "isCustomNasIdOptions": false + "productFamily": "Wireless Controller", + "productSeries": "Cisco 5500 Series Wireless LAN Controllers" } + ] + } + ], + "get_sites3": { + "response": [ + { + "id": "44e4706f-5244-46f4-a20b-6f402675271d", + "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155/f8bb33e5-38c2-41e8-b67c-986da5475cc2/355bbdf4-ec36-49af-b8aa-4bd69373a4f0/a988e384-4b56-44bd-af91-404a4b8d61ca/44e4706f-5244-46f4-a20b-6f402675271d", + "parentId": "a988e384-4b56-44bd-af91-404a4b8d61ca", + "name": "FLOOR1", + "nameHierarchy": "Global/USA/SAN JOSE/SJ_BLD23/FLOOR1", + "type": "floor", + "floorNumber": 1, + "rfModel": "Cubes And Walled Offices", + "width": 100.0, + "length": 100.0, + "height": 10.0, + "unitsOfMeasure": "feet" + } + ], + "version": "1.0" + }, + "get_sites4": { + "response": [], + "version": "1.0" + }, + "get_sites5": { + "response": [ + { + "id": "73273999-4fde-4376-b071-25ebee51d155", + "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155", + "name": "Global", + "nameHierarchy": "Global", + "type": "global" + } ], "version": "1.0" -}, - - "get_interfaces2":{ + }, + " get_enterprise_ssid": { "response": [ - { + { + "id": "mdeZu1nj-rfnJ-AgvK-DwXL-CLmWuZfjmKqZuZrJnwG2ztDKohu5", + "profileName": "SSIDScheduler_profile", + "ssid": "SSIDScheduler", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "SSIDScheduler_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiWr3vL-C3rF-D2vI-CgfZ-C3rOCM91z2HhmhuXztjZm3q0xZv3", + "profileName": "Guest_webpassthrough_profile", + "ssid": "Guest_webpassthrough", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_internal", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": true, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Guest_webpassthrough_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda3Cg9Z-DhvY-zxaW-BZfZ-mNqZDtrYnwu2CdDVohm5DdeWDteX", + "profileName": "posture_profile", + "ssid": "posture", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "posture_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda5vgHH-BL9t-u0Le-vdbO-mweYBJnFnfm1uZzjn0q4vdLOmtbH", + "profileName": "Than_SSID_profile", + "ssid": "Than_SSID", + "wlanType": "Enterprise", + "authType": "WPA2_WPA3_PERSONAL", + "l3AuthType": "open", + "passphrase": "NO!$DATA!$", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": [], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Than_SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": true, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": true, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda5ueHb-tI1t-u0Le-udbi-mueYtJmTnfm1uZzjn0q4udLimtbb", + "profileName": "PHAN-SSID_profile", + "ssid": "PHAN-SSID", + "wlanType": "Enterprise", + "authType": "WPA2_WPA3_PERSONAL", + "l3AuthType": "open", + "passphrase": "NO!$DATA!$", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": [], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "PHAN-SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": true, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": true, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiXr3vL-C3rF-CgfZ-C3rO-CM91z2HFAw50rZb1mwuYCZn0nf81", + "profileName": "Guest_passthrough_int_profile", + "ssid": "Guest_passthrough_int", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "https://10.195.227.116/", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": true, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Guest_passthrough_int_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiXr3vL-C3rF-D2vI-yxv0-AgLUDgvYBMfSrZb1mwuYCZn0nf81", + "profileName": "Guest_webauthinternal_profile", + "ssid": "Guest_webauthinternal", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_internal", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "Guest_webauthinternal_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeWvgHP-zw5F-u1nj-rfqW-AdfPmMuZBJrFnvm2uZDjoeq5vdeW", + "profileName": "Thien_SSID_profile", + "ssid": "Thien_SSID", + "wlanType": "Guest", + "authType": "WPA3_PERSONAL", + "l3AuthType": "web_auth", + "passphrase": "NO!$DATA!$", + "externalAuthIpAddress": "", + "fastTransition": "ENABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Thien_SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "REQUIRED", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": true, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda0t1bf-tK8W-udff-mK4Z-tZrqnuu2tJDpofa5rteWtJeXtZeY", + "profileName": "OPEN_profile", + "ssid": "OPEN", + "wlanType": "Enterprise", + "authType": "OPEN", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "OPEN_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mde4q1Db-x0Dv-rvnu-x1nt-surFqufbqZbxmueYxZnhnfu1rtzt", + "profileName": "CWA_GUEST_SSID_AAA_profile", + "ssid": "CWA_GUEST_SSID_AAA", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "CWA_GUEST_SSID_AAA_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mde0y3vZ-Dg9T-x3jM-x3nZ-AwrJmhuXCZj0m280BtvFnNi3zJHF", + "profileName": "custom_rf_ssid_profile", + "ssid": "custom_rf_ssid", + "wlanType": "Enterprise", + "authType": "WPA2_WPA3_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "custom_rf_ssid_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "REQUIRED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiZDgHP-zw5S-B3PF-qxnZ-DxjHBMnLx2LJyxb0mgGXAtjLm240", + "profileName": "thienloz_Assurance_ic_profile", + "ssid": "thienloz_Assurance_icap", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_internal", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "thienloz_Assurance_ic_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda1zgf0-mJfK-mgeX-DdiY-mZe0zdvHnNq3mJGXowqXmgeXmxqX", + "profileName": "dat21_profile", + "ssid": "dat21", + "wlanType": "Enterprise", + "authType": "WPA2_WPA3_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "dat21_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 2000, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": false, + "isHex": false, + "isBroadcastSSID": false, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": true, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiYDgHP-zw52-B19b-C3n1-CMfUy2vFAwnHChqWAdfPmMuZBJr2", + "profileName": "thienvo_Assurance_ica_profile", + "ssid": "thienvo_Assurance_icap", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "thienvo_Assurance_ica_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeZu1nj-rerv-quWG-qKfo-rfmWuZfjmKqZrdrvnue2tdCGoei5", + "profileName": "SSIDDUAL BAND_profile", + "ssid": "SSIDDUAL BAND", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ENABLE", + "authServer": "auth_external", + "authServers": [], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "SSIDDUAL BAND_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": true, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda1r1vf-u1rh-mfuX-rtjt-m1q0rZvvnKu3uZHuouCXmfuXmuuX", + "profileName": "GUEST_profile", + "ssid": "GUEST", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "GUEST_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeWuMfU-zg9T-x21H-y1iW-ytfUmMqZBZrTnv82BtDHogm5uJeW", + "profileName": "Random_mac_profile", + "ssid": "Random_mac", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "Random_mac_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": true, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": true, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeYu2LU-z2XL-nuTc-yw5K-uZbPmw4YzZnSngu1ntzln0i4ytLU", + "profileName": "Single5KBand_profile", + "ssid": "Single5KBand", + "wlanType": "Enterprise", + "authType": "WPA2_PERSONAL", + "l3AuthType": "open", + "passphrase": "NO!$DATA!$", + "externalAuthIpAddress": "", + "fastTransition": "ENABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "Single5KBand_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": true, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "5GHz only", + "isCustomNasIdOptions": false + }, + { + "id": "mdaZDguX-DdbL-mteY-DdnL-nde1DdzLnZe4DdLLmtaXmtf0mtjL", + "profileName": "te1_profile", + "ssid": "te1", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ENABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "te1_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 2000, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": false, + "isHex": false, + "isBroadcastSSID": false, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": true, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": true, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda3vgvZ-DgLU-z1qW-ztfZ-mNqZAtrUnwC2vdDLohm5DdeWAteX", + "profileName": "Testing_profile", + "ssid": "Testing", + "wlanType": "Enterprise", + "authType": "WPA3_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "Testing_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "REQUIRED", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiXDgHP-zw5F-qxnZ-DxjH-BMnLmL9Py2fWDdbOmwKYztnUnf81", + "profileName": "thien_Assurance2_icap_profile", + "ssid": "thien_Assurance2_icap", + "wlanType": "Guest", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_internal", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "thien_Assurance2_icap_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda2r1vf-u1qY-rZbv-muuY-uZnundi1rZzvn0u4uZLumtaYmtfh", + "profileName": "GUEST2_profile", + "ssid": "GUEST2", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "172.23.241.229" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "GUEST2_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mda4DhnZ-Dhn0-C3r0-mhmX-CZj0m3m0DdvZnNq3DdHZoxmXmhqX", + "profileName": "tsststst_profile", + "ssid": "tsststst", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_ise", + "authServers": [ + "204.192.1.123" + ], + "acctServers": [], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": [], + "sessionTimeOutEnable": true, + "sessionTimeOut": 28800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "tsststst_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": true, + "coverageHoleDetectionEnable": true, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": [], + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": true, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mde0u1nj-rerV-Ddfy-sw5K-AwftmfmXstjem0q0BZv0nJe3wdHj", + "profileName": "SSIDDot1XIndia_profile", + "ssid": "SSIDDot1XIndia", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [ + "172.23.241.230" + ], + "acctServers": [ + "172.23.241.229" + ], + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "SSIDDot1XIndia_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "DISABLED", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdiZicaG-icGH-jcHB-xdPD-qhXFjIuTi1ntsuqGmcaXidiGmYG0", + "profileName": "(!$([\\:]@|_&%-#SSID_profile", + "ssid": " (!$([\\:]@|_&%-#SSID", + "wlanType": "Enterprise", + "authType": "OPEN", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": true, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "(!$([\\:]@|_&%-#SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "", + "ingressQos": "", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": true, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeXuMfK-AxvZ-x3nZ-Awrs-mgeXzdjPm3u0CZvFnNm3CZHPowqX", + "profileName": "Radius_ssid_profile", + "ssid": "Radius_ssid", + "wlanType": "Enterprise", + "authType": "WPA2_ENTERPRISE", + "l3AuthType": "open", + "passphrase": "", + "externalAuthIpAddress": "", + "fastTransition": "ADAPTIVE", + "authServer": "auth_external", + "authServers": [], + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": true, + "policyProfileName": "Radius_ssid_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": true, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": true, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": true, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + }, + { + "id": "mdeWqvjv-qKfF-u1nj-reeW-uJfvmKiZqtrFnvm2uZDjoeq5qteW", + "profileName": "ARUBA_SSID_profile", + "ssid": "ARUBA_SSID", + "wlanType": "Guest", + "authType": "OPEN", + "l3AuthType": "web_auth", + "passphrase": "", + "externalAuthIpAddress": "https://10.195.227.10/guest/guest_register_login.php", + "fastTransition": "DISABLE", + "authServer": "auth_external", + "authServers": null, + "acctServers": null, + "ghz24Policy": "dot11-bg-only", + "ghz6PolicyClientSteering": false, + "wlanBandSelectEnable": false, + "webPassthrough": false, + "sleepingClientEnable": false, + "sleepingClientTimeout": 720, + "nasOptions": null, + "sessionTimeOutEnable": true, + "sessionTimeOut": 1800, + "clientExclusionEnable": true, + "clientExclusionTimeout": 180, + "basicServiceSetMaxIdleEnable": true, + "basicServiceSetClientIdleTimeout": 300, + "directedMulticastServiceEnable": true, + "neighborListEnable": true, + "managementFrameProtectionClientprotection": "OPTIONAL", + "fastTransitionOverTheDistributedSystemEnable": false, + "policyProfileName": "ARUBA_SSID_profile", + "openSsid": "", + "aclName": "", + "rsnCipherSuiteCcmp256": false, + "rsnCipherSuiteGcmp128": false, + "rsnCipherSuiteGcmp256": false, + "rsnCipherSuiteCcmp128": false, + "egressQos": "PLATINUM", + "ingressQos": "PLATINUM-UP", + "cckmTsfTolerance": 0, + "aaaOverride": false, + "coverageHoleDetectionEnable": false, + "protectedManagementFrame": "OPTIONAL", + "multiPSKSettings": null, + "clientRateLimit": 0, + "inheritedSiteUUID": null, + "inheritedSiteName": "", + "inheritedSiteNameHierarchy": null, + "randomMacFilterEnabled": false, + "isFastLaneEnabled": false, + "isMacFilteringEnabled": false, + "isEnabled": true, + "isHex": false, + "isBroadcastSSID": true, + "isRandomMacFilterEnabled": false, + "isRadiusProfilingEnabled": false, + "isAuthKey8021x": false, + "isAuthKey8021xPlusFT": false, + "isAuthKey8021x_SHA256": false, + "isAuthKeySae": false, + "isAuthKeySaePlusFT": false, + "isAuthKeyPSK": false, + "isAuthKeyPSKPlusFT": false, + "isAuthKeyOWE": false, + "isAuthKeyEasyPSK": false, + "isAuthKeyPSKSHA256": false, + "isAuthKeySaeExt": false, + "isAuthKeySaeExtPlusFT": false, + "isAuthKeySuiteB1x": false, + "isAuthKeySuiteB1921x": false, + "isApBeaconProtectionEnabled": false, + "isPosturingEnabled": false, + "isCckmEnabled": false, + "ssidRadioType": "Triple band operation(2.4GHz, 5GHz and 6GHz)", + "isCustomNasIdOptions": false + } + ], + "version": "1.0" + }, + "get_interfaces2": { + "response": [ + { "id": "mda5vKXb-tJaX-mdaX-vJbm-mueYtJmWnde1mdyWnZe4vJLmmtbb", "interfaceName": "VLAN01001", "vlanId": 20 - } + } ], "version": "1.0" - }, - "get_feature_template_summary111":{ + }, + "get_feature_template_summary111": { "response": [ - { + { "type": "FLEX_CONFIGURATION", "count": 1, "instances": [ - { + { "designName": "Default Flex Configuration", "id": "d57bc185-9616-46cd-965f-f24b5e86be99", "systemTemplate": true - } + } ] - } + } ], "version": "1.0" - }, - "retrieve_cli_templates_attached_to_a_network_profile":{ + }, + "retrieve_cli_templates_attached_to_a_network_profile": { "response": [ - { + { "id": "fac6594b-2666-41a7-b691-89764b8fcd3d", "name": "wireless_template" + } + ], + "version": "1.0" + }, + "retrieves_the_list_of_sites_that_the_given_network_profile_for_sites_is_assigned_to": { + "response": [ + { + "id": "44e4706f-5244-46f4-a20b-6f402675271d" + } + ], + "version": "1.0" + }, + "get80211be_profiles1": { + "response": [ + { + "id": "8b1a9953-c461-3296-a827-abf8c47804d7", + "profileName": "Hello", + "muMimoDownLink": false, + "muMimoUpLink": false, + "ofdmaDownLink": true, + "ofdmaUpLink": true, + "ofdmaMultiRu": false, + "default": true + } + ], + "version": "1.0" + }, + "playbook_new_feature_template": [ + { + "additional_interfaces": [ + { + "interface_name": "VLAN01001", + "vlan_id": 20 + } + ], + "ap_zones": [ + { + "ap_zone_name": "AP_Zone_North", + "rf_profile_name": "HIGH", + "ssids": [ + "posture" + ] + } + ], + "day_n_templates": [ + "wireless_template" + ], + "feature_template_designs": [ + { + "design_type": "FLEX_CONFIGURATION", + "feature_templates": [ + "Default Flex Configuration" + ] + } + ], + "profile_name": "Campus_Wireless_Profile_2", + "site_names": [ + "Global/USA/SAN JOSE/SJ_BLD23/FLOOR1" + ], + "ssid_details": [ + { + "dot11be_profile_name": "Hello", + "enable_fabric": false, + "ssid_name": "posture", + "vlan_group_name": "Ans_NP_WL_INT_group_1" + } + ] + } + ], + "basic_profile_creation_config": [ + { + "profile_name": "Campus_Wireless_Profile", + "site_names": [ + "Global/India/Bangalore/bld1" + ], + "ssid_details": [ + { + "ssid_name": "OPEN", + "enable_fabric": false, + "dot11be_profile_name": "Ans NP WL BE 1", + "interface_name": "temp_1", + "local_to_vlan": 2001 + } + ], + "ap_zones": [ + { + "ap_zone_name": "AP_Zone_North", + "rf_profile_name": "HIGH", + "ssids": [ + "OPEN" + ] + } + ], + "onboarding_templates": null, + "day_n_templates": [ + "Ans Wireless DayN 1" + ], + "additional_interfaces": [ + { + "interface_name": "temp_20", + "vlan_id": 20 + } + ], + "feature_template_designs": [ + { + "design_type": "AAA_RADIUS_ATTRIBUTES_CONFIGURATION", + "feature_templates": [ + "Default AAA_Radius_Attributes_Configuration" + ] } + ] + } + ], + "get_sites_basic": { + "response": [ + { + "id": "54f02572-5338-417e-bed1-738d5541609e", + "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155/ff16454c-7171-4faa-b5b2-d93e7a217f98/fec0b8f2-dcbe-40d3-aee6-95dcd7a77178/54f02572-5338-417e-bed1-738d5541609e", + "parentId": "fec0b8f2-dcbe-40d3-aee6-95dcd7a77178", + "name": "bld1", + "nameHierarchy": "Global/India/Bangalore/bld1", + "type": "building", + "latitude": 46.2, + "longitude": -121.1, + "address": "Bureau of Indian Affairs Road 207, White Swan, Washington 98952, United States", + "country": "India" + } + ] + }, + "get_interfaces_basic": { + "response": [ + { + "id": "mda3DgvT-Cf8Y-mhqW-ztfT-mNaZxZqYnta2DdDLog05CdeWxZeX", + "interfaceName": "temp_20", + "vlanId": 20 + } ], "version": "1.0" - }, - "retrieves_the_list_of_sites_that_the_given_network_profile_for_sites_is_assigned_to":{ - "response": [ - { - "id": "44e4706f-5244-46f4-a20b-6f402675271d" - } - ], - "version": "1.0" - }, - "get80211be_profiles1":{ - "response": [ - { - "id": "8b1a9953-c461-3296-a827-abf8c47804d7", - "profileName": "Hello", - "muMimoDownLink": false, - "muMimoUpLink": false, - "ofdmaDownLink": true, - "ofdmaUpLink": true, - "ofdmaMultiRu": false, - "default": true - } - ], - "version": "1.0" - }, - "playbook_new_feature_template":[ - { - "additional_interfaces": [ - { - "interface_name": "VLAN01001", - "vlan_id": 20 - } - ], - "ap_zones": [ - { - "ap_zone_name": "AP_Zone_North", - "rf_profile_name": "HIGH", - "ssids": [ - "posture" - ] - } - ], - "day_n_templates": [ - "wireless_template" - ], - "feature_template_designs": [ - { - "design_type": "FLEX_CONFIGURATION", - "feature_templates": [ - "Default Flex Configuration" - ] - } - ], - "profile_name": "Campus_Wireless_Profile_2", - "site_names": [ - "Global/USA/SAN JOSE/SJ_BLD23/FLOOR1" - ], - "ssid_details": [ - { - "dot11be_profile_name": "Hello", - "enable_fabric": false, - "ssid_name": "posture", - "vlan_group_name": "Ans_NP_WL_INT_group_1" - } - ] - } - ], - - "basic_profile_creation_config":[{ - "profile_name": "Campus_Wireless_Profile", - "site_names": [ - "Global/India/Bangalore/bld1" - ], - "ssid_details": [ - { - "ssid_name": "OPEN", - "enable_fabric": false, - "dot11be_profile_name": "Ans NP WL BE 1", - "interface_name": "temp_1", - "local_to_vlan": 2001 - } - ], - "ap_zones": [ - { - "ap_zone_name": "AP_Zone_North", - "rf_profile_name": "HIGH", - "ssids": [ - "OPEN" - ] - } - ], - "onboarding_templates": null, - "day_n_templates": [ - "Ans Wireless DayN 1" - ], - "additional_interfaces": [ - { - "interface_name": "temp_20", - "vlan_id": 20 - } - ], - "feature_template_designs": [ - { - "design_type": "AAA_RADIUS_ATTRIBUTES_CONFIGURATION", - "feature_templates": [ - "Default AAA_Radius_Attributes_Configuration" - ] - } - ] - }], - - "get_sites_basic": { - "response": [ - { - "id": "54f02572-5338-417e-bed1-738d5541609e", - "siteHierarchyId": "73273999-4fde-4376-b071-25ebee51d155/ff16454c-7171-4faa-b5b2-d93e7a217f98/fec0b8f2-dcbe-40d3-aee6-95dcd7a77178/54f02572-5338-417e-bed1-738d5541609e", - "parentId": "fec0b8f2-dcbe-40d3-aee6-95dcd7a77178", - "name": "bld1", - "nameHierarchy": "Global/India/Bangalore/bld1", - "type": "building", - "latitude": 46.2, - "longitude": -121.1, - "address": "Bureau of Indian Affairs Road 207, White Swan, Washington 98952, United States", - "country": "India" - } + }, + "get_feature_template_summary_basic": { + "response": [ + { + "type": "AAA_RADIUS_ATTRIBUTES_CONFIGURATION", + "count": 1, + "instances": [ + { + "designName": "Default AAA_Radius_Attributes_Configuration", + "id": "3e2f3f3c-5f4b-4f2e-8f4a-5e6d7c8b9a0b", + "systemTemplate": true + } ] - }, - - "get_interfaces_basic":{ - "response": [ - { - "id": "mda3DgvT-Cf8Y-mhqW-ztfT-mNaZxZqYnta2DdDLog05CdeWxZeX", - "interfaceName": "temp_20", - "vlanId": 20 - } - ], - "version": "1.0" - }, - - "get_feature_template_summary_basic":{ - "response": [ - { - "type": "AAA_RADIUS_ATTRIBUTES_CONFIGURATION", - "count": 1, - "instances": [ - { - "designName": "Default AAA_Radius_Attributes_Configuration", - "id": "3e2f3f3c-5f4b-4f2e-8f4a-5e6d7c8b9a0b", - "systemTemplate": true - } - ] - } - ], - "version": "1.0" - }, - - "get80211be_profiles_basic":{ - "response": [ - { - "id": "8b1a9953-c461-3296-a827-abf8c47804d7", - "profileName": "Hello", - "muMimoDownLink": false, - "muMimoUpLink": false, - "ofdmaDownLink": true, - "ofdmaUpLink": true, - "ofdmaMultiRu": false, - "default": true - } - ], - "version": "1.0" - }, - - "verify_profile_details_basic": { - "response": [ - { - "id": "7231ea09-daa9-4e99-92c1-abbcb0a7366c", - "wirelessProfileName": "Campus_Wireless_Profile", - "ssidDetails": [ - { - "ssidName": "OPEN", - "enableFabric": false, - "flexConnect": { - "enableFlexConnect": true, - "localToVlan": 2001 - }, - "interfaceName": "temp_1", - "wlanProfileName": "OPEN_profile", - "policyProfileName": "OPEN_profile", - "dot11beProfileId": "c69f975a-5a16-39c9-9b85-643ac0a06cdb" - } - ], - "additionalInterfaces": [ - "temp_20" - ], - "apZones": [ - { - "apZoneName": "AP_Zone_North", - "rfProfileName": "HIGH", - "ssids": [ - "OPEN" - ] - } - ], - "featureTemplates": [ - { - "designName": "Default AAA_Radius_Attributes_Configuration", - "id": "8864fe4d-b305-4fd2-b8f9-2d9bc54b6347", - "ssids": [] - } - ] - } + } + ], + "version": "1.0" + }, + "get80211be_profiles_basic": { + "response": [ + { + "id": "8b1a9953-c461-3296-a827-abf8c47804d7", + "profileName": "Hello", + "muMimoDownLink": false, + "muMimoUpLink": false, + "ofdmaDownLink": true, + "ofdmaUpLink": true, + "ofdmaMultiRu": false, + "default": true + } + ], + "version": "1.0" + }, + "verify_profile_details_basic": { + "response": [ + { + "id": "7231ea09-daa9-4e99-92c1-abbcb0a7366c", + "wirelessProfileName": "Campus_Wireless_Profile", + "ssidDetails": [ + { + "ssidName": "OPEN", + "enableFabric": false, + "flexConnect": { + "enableFlexConnect": true, + "localToVlan": 2001 + }, + "interfaceName": "temp_1", + "wlanProfileName": "OPEN_profile", + "policyProfileName": "OPEN_profile", + "dot11beProfileId": "c69f975a-5a16-39c9-9b85-643ac0a06cdb" + } ], - "version": "1.2" - }, - - "get_cli_template_for_profile_basic": { - "response": [ - { - "id": "b7494025-20f0-4902-aa72-e76d3e2394c9", - "name": "Ans Wireless DayN 1" - } + "additionalInterfaces": [ + "temp_20" ], - "version": "1.0" - }, - - "get_site_list_for_profile_basic": { - "response": [ - { - "id": "54f02572-5338-417e-bed1-738d5541609e" - } + "apZones": [ + { + "apZoneName": "AP_Zone_North", + "rfProfileName": "HIGH", + "ssids": [ + "OPEN" + ] + } ], - "version": "1.0" - }, - - "profile_deletion":[{ - "profile_name": "Campus_Wireless_Profile", - "site_names": null, - "ssid_details": null, - "onboarding_templates": null, - "day_n_templates": null, - "additional_interfaces": null, - "feature_template_designs": null - }] -} + "featureTemplates": [ + { + "designName": "Default AAA_Radius_Attributes_Configuration", + "id": "8864fe4d-b305-4fd2-b8f9-2d9bc54b6347", + "ssids": [] + } + ] + } + ], + "version": "1.2" + }, + "get_cli_template_for_profile_basic": { + "response": [ + { + "id": "b7494025-20f0-4902-aa72-e76d3e2394c9", + "name": "Ans Wireless DayN 1" + } + ], + "version": "1.0" + }, + "get_site_list_for_profile_basic": { + "response": [ + { + "id": "54f02572-5338-417e-bed1-738d5541609e" + } + ], + "version": "1.0" + }, + "profile_deletion": [ + { + "profile_name": "Campus_Wireless_Profile", + "site_names": null, + "ssid_details": null, + "onboarding_templates": null, + "day_n_templates": null, + "additional_interfaces": null, + "feature_template_designs": null + } + ], + "site_removal_with_parent_inheritance_config": [ + { + "profile_name": "Campus_Wireless_Profile", + "site_names": [ + "Global/USA/SAN JOSE/SJ_BLD20", + "Global/USA/SAN JOSE/SJ_BLD20/FLOOR1", + "Global/USA/New York/NY_BLD1/FLOOR3", + "Global/USA/New York/NY_BLD1/FLOOR4" + ] + } + ], + "parent_inheritance_wireless_profile_list": { + "response": [ + { + "id": "7231ea09-daa9-4e99-92c1-abbcb0a7366c", + "name": "Campus_Wireless_Profile", + "type": "Wireless" + } + ], + "version": "1.0" + }, + "parent_inheritance_profile_details": { + "response": [ + { + "id": "7231ea09-daa9-4e99-92c1-abbcb0a7366c", + "wirelessProfileName": "Campus_Wireless_Profile", + "ssidDetails": [], + "additionalInterfaces": [], + "apZones": [], + "featureTemplates": [] + } + ], + "version": "1.0" + }, + "parent_inheritance_site_list_for_profile": { + "response": [ + { + "id": "3aec3320-1789-44d4-b3ed-262541f74b5c" + }, + { + "id": "6bb2f95e-66c2-4bcc-8010-f73e0b915265" + }, + { + "id": "5f028634-02fc-4137-a8aa-1b51a7a0a9d1" + }, + { + "id": "fedc4172-4379-473b-bbea-7928646b0065" + }, + { + "id": "7430b349-e807-4928-a3be-d6b6146ea766" + } + ], + "version": "1.0" + }, + "get_site_sj_bld20": { + "response": [ + { + "id": "3aec3320-1789-44d4-b3ed-262541f74b5c", + "name": "SJ_BLD20", + "nameHierarchy": "Global/USA/SAN JOSE/SJ_BLD20", + "type": "building", + "parentId": "501a3d4f-549c-4da4-a706-72489c017e60" + } + ], + "version": "1.0" + }, + "get_site_sj_bld20_floor1": { + "response": [ + { + "id": "6bb2f95e-66c2-4bcc-8010-f73e0b915265", + "name": "FLOOR1", + "nameHierarchy": "Global/USA/SAN JOSE/SJ_BLD20/FLOOR1", + "type": "floor", + "parentId": "3aec3320-1789-44d4-b3ed-262541f74b5c" + } + ], + "version": "1.0" + }, + "get_site_ny_bld1_floor3": { + "response": [ + { + "id": "5f028634-02fc-4137-a8aa-1b51a7a0a9d1", + "name": "FLOOR3", + "nameHierarchy": "Global/USA/New York/NY_BLD1/FLOOR3", + "type": "floor", + "parentId": "7430b349-e807-4928-a3be-d6b6146ea766" + } + ], + "version": "1.0" + }, + "get_site_ny_bld1_floor4": { + "response": [ + { + "id": "fedc4172-4379-473b-bbea-7928646b0065", + "name": "FLOOR4", + "nameHierarchy": "Global/USA/New York/NY_BLD1/FLOOR4", + "type": "floor", + "parentId": "7430b349-e807-4928-a3be-d6b6146ea766" + } + ], + "version": "1.0" + }, + "get_site_ny_bld1": { + "response": [ + { + "id": "7430b349-e807-4928-a3be-d6b6146ea766", + "name": "NY_BLD1", + "nameHierarchy": "Global/USA/New York/NY_BLD1", + "type": "building", + "parentId": "08e83afa-d7b0-433f-911b-0bab5259aae7" + } + ], + "version": "1.0" + }, + "get_site_san_jose": { + "response": [ + { + "id": "501a3d4f-549c-4da4-a706-72489c017e60", + "name": "SAN JOSE", + "nameHierarchy": "Global/USA/SAN JOSE", + "type": "area", + "parentId": "0cc72385-0e00-4a5a-b11b-a9b79fe2abd1" + } + ], + "version": "1.0" + }, + "get_site_usa": { + "response": [ + { + "id": "0cc72385-0e00-4a5a-b11b-a9b79fe2abd1", + "name": "USA", + "nameHierarchy": "Global/USA", + "type": "area", + "parentId": "73273999-4fde-4376-b071-25ebee51d155" + } + ], + "version": "1.0" + }, + "get_site_global": { + "response": [ + { + "id": "73273999-4fde-4376-b071-25ebee51d155", + "name": "Global", + "nameHierarchy": "Global", + "type": "global" + } + ], + "version": "1.0" + }, + "get_site_bangalore": { + "response": [ + { + "id": "fec0b8f2-dcbe-40d3-aee6-95dcd7a77178", + "name": "Bangalore", + "nameHierarchy": "Global/India/Bangalore", + "type": "area", + "parentId": "ff16454c-7171-4faa-b5b2-d93e7a217f98" + } + ], + "version": "1.0" + }, + "get_site_india": { + "response": [ + { + "id": "ff16454c-7171-4faa-b5b2-d93e7a217f98", + "name": "India", + "nameHierarchy": "Global/India", + "type": "area", + "parentId": "73273999-4fde-4376-b071-25ebee51d155" + } + ], + "version": "1.0" + }, + "site_removal_child_only_config": [ + { + "profile_name": "Campus_Wireless_Profile", + "site_names": [ + "Global/USA/New York/NY_BLD1/FLOOR3", + "Global/USA/New York/NY_BLD1/FLOOR4" + ] + } + ] +} \ No newline at end of file diff --git a/tests/unit/modules/catalyst/test_network_profile_wireless_workflow_manager.py b/tests/unit/modules/catalyst/test_network_profile_wireless_workflow_manager.py index f13907e21..ed1576eca 100644 --- a/tests/unit/modules/catalyst/test_network_profile_wireless_workflow_manager.py +++ b/tests/unit/modules/catalyst/test_network_profile_wireless_workflow_manager.py @@ -31,6 +31,8 @@ class TestCatalystCenterNetworkWirelessProfileWorkflow(TestCatalystModule): basic_profile_creation_config = test_data.get("basic_profile_creation_config") profile_deletion = test_data.get("profile_deletion") profile_creation_config_feature_template = test_data.get("profile_creation_config_feature_template") + site_removal_with_parent_inheritance_config = test_data.get("site_removal_with_parent_inheritance_config") + site_removal_child_only_config = test_data.get("site_removal_child_only_config") def setUp(self): super(TestCatalystCenterNetworkWirelessProfileWorkflow, self).setUp() @@ -93,9 +95,15 @@ def load_fixtures(self, response=None, device=""): self.test_data.get("assign_template1_response"), self.test_data.get("get_template1_task_details"), self.test_data.get("get_template1_task_progress"), + # is_parent_assigned: recurse up hierarchy for "Global/India/Bangalore/bld1" + self.test_data.get("get_site_bangalore"), + self.test_data.get("get_site_india"), + self.test_data.get("get_site_global"), + # unassign site self.test_data.get("assign_site1_response"), self.test_data.get("get_site1_task_details"), self.test_data.get("get_site1_task_progress"), + # profile update (SSIDs, interfaces, AP zones, feature templates removed) self.test_data.get("response_for_profile_creation"), self.test_data.get("get_task_details_response"), self.test_data.get("get_task_progress") @@ -123,6 +131,64 @@ def load_fixtures(self, response=None, device=""): self.test_data.get("get_feature_template_summary"), self.test_data.get("get_feature_template_summary1") ] + elif "site_removal_parent_inheritance" in self._testMethodName: + self.run_catalystcenter_exec.side_effect = [ + # get_have: get_network_profile (retrieves_the_list_of_network_profiles_for_sites) + self.test_data.get("parent_inheritance_wireless_profile_list"), + # get_have: get_wireless_profile (get_wireless_profiles) + self.test_data.get("parent_inheritance_profile_details"), + # check_site_template: get_site_id + get_child_sites for each of 4 sites + self.test_data.get("get_site_sj_bld20"), + self.test_data.get("get_sites4"), + self.test_data.get("get_site_sj_bld20_floor1"), + self.test_data.get("get_sites4"), + self.test_data.get("get_site_ny_bld1_floor3"), + self.test_data.get("get_sites4"), + self.test_data.get("get_site_ny_bld1_floor4"), + self.test_data.get("get_sites4"), + # get_have: get_site_lists_for_profile + self.test_data.get("parent_inheritance_site_list_for_profile"), + # _remove_site_names: is_parent_assigned for SJ_BLD20 (recurse up to Global) + self.test_data.get("get_site_san_jose"), + self.test_data.get("get_site_usa"), + self.test_data.get("get_site_global"), + # unassign SJ_BLD20 (task creation + task status + task details) + self.test_data.get("assign_site1_response"), + self.test_data.get("get_site1_task_details"), + self.test_data.get("get_site1_task_progress"), + # is_parent_assigned for FLOOR1 (recurse up to Global) + self.test_data.get("get_site_sj_bld20"), + self.test_data.get("get_site_san_jose"), + self.test_data.get("get_site_usa"), + self.test_data.get("get_site_global"), + # unassign FLOOR1 + self.test_data.get("assign_site1_response"), + self.test_data.get("get_site1_task_details"), + self.test_data.get("get_site1_task_progress"), + # is_parent_assigned for FLOOR3 - blocked by NY_BLD1 + self.test_data.get("get_site_ny_bld1"), + # is_parent_assigned for FLOOR4 - blocked by NY_BLD1 + self.test_data.get("get_site_ny_bld1"), + ] + elif "site_removal_child_only" in self._testMethodName: + self.run_catalystcenter_exec.side_effect = [ + # get_have: get_network_profile (retrieves_the_list_of_network_profiles_for_sites) + self.test_data.get("parent_inheritance_wireless_profile_list"), + # get_have: get_wireless_profile (get_wireless_profiles) + self.test_data.get("parent_inheritance_profile_details"), + # check_site_template: get_site_id + get_child_sites for FLOOR3 + self.test_data.get("get_site_ny_bld1_floor3"), + self.test_data.get("get_sites4"), + # check_site_template: get_site_id + get_child_sites for FLOOR4 + self.test_data.get("get_site_ny_bld1_floor4"), + self.test_data.get("get_sites4"), + # get_have: get_site_lists_for_profile + self.test_data.get("parent_inheritance_site_list_for_profile"), + # _remove_site_names: is_parent_assigned for FLOOR3 - blocked by NY_BLD1 + self.test_data.get("get_site_ny_bld1"), + # _remove_site_names: is_parent_assigned for FLOOR4 - blocked by NY_BLD1 + self.test_data.get("get_site_ny_bld1"), + ] def test_network_profile_workflow_manager_basic_profile_creation(self): """ @@ -231,3 +297,72 @@ def test_network_profile_workflow_manager_profile_creation_fail_feature_template "Invalid parameters in playbook config:", result.get('response') ) + + def test_network_profile_workflow_manager_site_removal_parent_inheritance(self): + """ + Test case for wireless profile workflow manager site removal with parent inheritance. + + This test verifies that when removing sites from a profile, child sites whose + parent is still assigned to the profile are skipped (not removed), while sites + whose parents are also being removed or are not assigned are removed successfully. + """ + set_module_args( + dict( + catalystcenter_host="1.1.1.1", + catalystcenter_username="dummy", + catalystcenter_password="dummy", + catalystcenter_log=True, + state="deleted", + catalystcenter_version="3.1.3.0", + config_verify=False, + config=self.site_removal_with_parent_inheritance_config + ) + ) + + result = self.execute_module(changed=True, failed=False) + self.maxDiff = None + self.assertTrue(result.get("changed")) + # response is a list: [{"profile_name": {"sites_removed": [...], "sites_skipped": [...]}}] + response = result.get("response", []) + self.assertIsInstance(response, list) + profile_data = list(response[0].values())[0] if response else {} + self.assertTrue(profile_data.get("sites_removed")) + self.assertTrue(profile_data.get("sites_skipped")) + self.assertIn("SJ_BLD20", result.get("msg")) + self.assertIn("FLOOR1", result.get("msg")) + self.assertIn("FLOOR3", result.get("msg")) + self.assertIn("FLOOR4", result.get("msg")) + self.assertIn("sites_skipped", result.get("msg")) + self.assertIn( + "Wireless profile data removed successfully", + result.get('msg') + ) + + def test_network_profile_workflow_manager_site_removal_child_only(self): + """ + Test case for wireless profile workflow manager where only child sites + are requested for removal while the parent site remains assigned. + + All requested sites should be skipped due to parent inheritance, + resulting in changed=False. + """ + set_module_args( + dict( + catalystcenter_host="1.1.1.1", + catalystcenter_username="dummy", + catalystcenter_password="dummy", + catalystcenter_log=True, + state="deleted", + catalystcenter_version="3.1.3.0", + config_verify=False, + config=self.site_removal_child_only_config + ) + ) + + result = self.execute_module(changed=False, failed=False) + self.maxDiff = None + self.assertFalse(result.get("changed")) + self.assertIn("No sites were unassigned", result.get("msg")) + self.assertIn("skipped due to parent inheritance", result.get("msg")) + self.assertIn("FLOOR3", result.get("msg")) + self.assertIn("FLOOR4", result.get("msg"))