06-16-2025 03:05 AM
Hello,
We are running 9800 controllers on software 17.12.4 and plan to use NETCONF for automatic setup.
However we could not figure out so far how to change the names of access points.
Is this even supported? Or only in a later release perhaps?
Thanks for your help!
06-16-2025 07:46 AM - edited 06-16-2025 08:29 AM
@foelsch
https://github.com/YangModels/yang/blob/main/vendor/cisco/xe/17121/Cisco-IOS-XE-wireless-access-point-cfg-rpc.yang
grouping set-ap-name {
description
"Configure a new AP name";
leaf name {
type string {
length "1..32";
pattern '[!-~]+';
}
mandatory true;
description
"New AP name";
}
choice alternative-choice {
mandatory true;
description
"AP name or AP MAC address";
case ap-identifier-name {
leaf ap-name {
type string;
mandatory true;
description
"Existing name of AP to be renamed";
}
}
case ap-identifier-mac-address {
leaf mac-addr {
type yang:mac-address;
mandatory true;
description
"MAC address of AP to be renamed";
}
}
}
}
You can check the result via: https://github.com/YangModels/yang/blob/main/vendor/cisco/xe/17121/Cisco-IOS-XE-wireless-access-point-oper.yang
grouping ap-name-mac-map {
description
"Mapping between AP name and base radio MAC";
leaf wtp-name {
type string;
description
"AP Name";
}
06-16-2025 08:14 AM
Although I could not able to understand the exact requirement of yours or what is the ultimate goal, but here is one thing that I can suggest you to test (and most likely will work).
If you are managing the controller via Cat Centre, then you can use CLI template which can be pushed to the controller during provisioning. So add the commands to change the AP hostname (ap name <existing name> name <new name>) into a CLI template and push it to the controller.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide