<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: WLC98k Configure AP Tags through Netconf in Network Devices</title>
    <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4520801#M155</link>
    <description>&lt;P&gt;I this just a perm broken ? did anyone fix this ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 17 Dec 2021 22:15:12 GMT</pubDate>
    <dc:creator>Hafthor Hilmarsson O'Connor</dc:creator>
    <dc:date>2021-12-17T22:15:12Z</dc:date>
    <item>
      <title>WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4146361#M145</link>
      <description>&lt;P&gt;Hi all&lt;/P&gt;
&lt;P&gt;I'm trying to add Tags&amp;nbsp;through netconf to an Access Point on a WLC98k (17.3.1).&lt;/P&gt;
&lt;P&gt;Here is the code:&lt;/P&gt;
&lt;PRE&gt;from ncclient import manager

insert_ap_cfg_data = '''
&amp;lt;ap-cfg-data xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-ap-cfg"&amp;gt;
    &amp;lt;ap-tags&amp;gt;
        &amp;lt;ap-tag&amp;gt;
            &amp;lt;ap-mac&amp;gt;a4:53:0e:39:d3:f8&amp;lt;/ap-mac&amp;gt;
            &amp;lt;policy-tag&amp;gt;policy-tag&amp;lt;/policy-tag&amp;gt;
            &amp;lt;site-tag&amp;gt;site-tag&amp;lt;/site-tag&amp;gt;
            &amp;lt;rf-tag&amp;gt;rf-tag_typical_density&amp;lt;/rf-tag&amp;gt;
        &amp;lt;/ap-tag&amp;gt;
    &amp;lt;/ap-tags&amp;gt;
&amp;lt;/ap-cfg-data&amp;gt;
'''
wlc = {"host": "10.90.255.180", "port": "xxx", "username": "xxx", "password": "xxx"}

with manager.connect(host=wlc['host'], port=wlc['port'], username=wlc['username'], password=wlc['password'], hostkey_verify=False, device_params={'name':'iosxe'}) as wlc_con:
    connected = wlc_con.connected
    if connected:
            print('Connection to ' + wlc['host'] + ' established!\n')

            reply = wlc_con.edit_config(target='running', config=insert_ap_cfg_data)
            print(reply)&lt;/PRE&gt;
&lt;P&gt;But all I'm getting is this error:&lt;/P&gt;
&lt;PRE&gt;[root@ansible temp]# python3 wlc98k_config_ap.py
Connection to 10.90.255.180 established!

Traceback (most recent call last):
  File "wlc98k_config_ap.py", line 46, in &amp;lt;module&amp;gt;
    reply = wlc_con.edit_config(target='running', config=insert_ap_cfg_data)
  File "/usr/local/lib/python3.6/site-packages/ncclient/manager.py", line 231, in execute
    huge_tree=self._huge_tree).request(*args, **kwds)
  File "/usr/local/lib/python3.6/site-packages/ncclient/operations/edit.py", line 65, in request
    node.append(validated_element(config, ("config", qualify("config"))))
  File "/usr/local/lib/python3.6/site-packages/ncclient/xml_.py", line 150, in validated_element
    raise XMLError("Element [%s] does not meet requirement" % ele.tag)
ncclient.xml_.XMLError: Element [{http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-ap-cfg}ap-cfg-data] does not meet requirement&lt;/PRE&gt;
&lt;P&gt;What am I missing here?&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Oli&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 18:30:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4146361#M145</guid>
      <dc:creator>0_Kiss</dc:creator>
      <dc:date>2023-05-08T18:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4146521#M146</link>
      <description>&lt;P&gt;I changed the netconf payload to this:&lt;/P&gt;&lt;PRE&gt;&amp;lt;config&amp;gt;
  &amp;lt;ap-cfg-data xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-ap-cfg"&amp;gt;
    &amp;lt;ap-tags&amp;gt;
      &amp;lt;ap-tag&amp;gt;
        &amp;lt;ap-mac&amp;gt;a4:53:0e:39:d3:f8&amp;lt;/ap-mac&amp;gt;
        &amp;lt;policy-tag&amp;gt;policy-tag&amp;lt;/policy-tag&amp;gt;
        &amp;lt;site-tag&amp;gt;site-tag&amp;lt;/site-tag&amp;gt;
        &amp;lt;rf-tag&amp;gt;rf-tag_typical_density&amp;lt;/rf-tag&amp;gt;
      &amp;lt;/ap-tag&amp;gt;
    &amp;lt;/ap-tags&amp;gt;
  &amp;lt;/ap-cfg-data&amp;gt;
&amp;lt;/config&amp;gt;&lt;/PRE&gt;&lt;P&gt;But now I am getting this message:&lt;/P&gt;&lt;PRE&gt;[root@ansible temp]# python3 wlc98k_config_ap.py
Connection to 10.90.255.180 established!

Traceback (most recent call last):
  File "wlc98k_config_ap.py", line 15, in &amp;lt;module&amp;gt;
    reply = wlc_con.edit_config(target='running', config=netconf_payload)
  File "/usr/local/lib/python3.6/site-packages/ncclient/manager.py", line 231, in execute
    huge_tree=self._huge_tree).request(*args, **kwds)
  File "/usr/local/lib/python3.6/site-packages/ncclient/operations/edit.py", line 69, in request
    return self._request(node)
  File "/usr/local/lib/python3.6/site-packages/ncclient/operations/rpc.py", line 360, in _request
    raise self._reply.error
ncclient.operations.rpc.RPCError: {'type': 'protocol', 'tag': 'unknown-element', 'app_tag': None, 'severity': 'error', 'info': '&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&amp;lt;error-info xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0"&amp;gt;&amp;lt;bad-element&amp;gt;config&amp;lt;/bad-element&amp;gt;\n&amp;lt;/error-info&amp;gt;\n', 'path': '\n    /rpc/edit-config\n  ', 'message': None}&lt;/PRE&gt;&lt;P&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2020 15:42:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4146521#M146</guid>
      <dc:creator>0_Kiss</dc:creator>
      <dc:date>2020-09-04T15:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4146860#M147</link>
      <description>&lt;P&gt;It is possible that YANG model&amp;nbsp;&lt;EM&gt;Cisco-IOS-XE-wireless-ap-cfg.yang&lt;/EM&gt; is not included in your router's configuration. Please check your router's YANG capabilities:&lt;/P&gt;&lt;PRE&gt;ssh -p &amp;lt;netconf-port&amp;gt; &amp;lt;username&amp;gt;@10.90.255.180 -s netconf&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Sep 2020 22:27:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4146860#M147</guid>
      <dc:creator>yangorelik</dc:creator>
      <dc:date>2020-09-05T22:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4147216#M148</link>
      <description>&lt;P&gt;Hi Yan&lt;/P&gt;&lt;P&gt;The module is included. I was able to read the Access Point configuration through "get-config" without any issues. I basically copied the "get-config" output to create the configuration snippet.&lt;/P&gt;&lt;P&gt;It might be an issue with the Software version, someone else is facing something similar:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.cisco.com/t5/yang-development-kit-ydk/netconf-error-in-ios-xe-17-3-1a-but-works-fine-on-ios-xe-16-12-4/m-p/4146535#M1670" target="_self"&gt;https://community.cisco.com/t5/yang-development-kit-ydk/netconf-error-in-ios-xe-17-3-1a-but-works-fine-on-ios-xe-16-12-4/m-p/4146535#M1670&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I'm going to try an earlier release and report back if it fixed it.&lt;/P&gt;&lt;P&gt;Oli&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2020 08:51:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4147216#M148</guid>
      <dc:creator>0_Kiss</dc:creator>
      <dc:date>2020-09-07T08:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4147303#M149</link>
      <description>&lt;P&gt;I can now confirm that the script runs on a WLC with version 16.12.4a but not on one with version 17.3.1. Yang model is identical.&lt;/P&gt;&lt;P&gt;WTH Cisco?!&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2020 12:50:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4147303#M149</guid>
      <dc:creator>0_Kiss</dc:creator>
      <dc:date>2020-09-07T12:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4148147#M150</link>
      <description>&lt;P&gt;I am getting this on 17.3.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ncclient.operations.rpc.RPCError: {'type': 'protocol', 'tag': 'unknown-element', 'app_tag': None, 'severity': 'error', 'info': '&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&amp;lt;error-info xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0"&amp;gt;&amp;lt;bad-element&amp;gt;config&amp;lt;/bad-element&amp;gt;\n&amp;lt;/error-info&amp;gt;\n', 'path': '\n /rpc/edit-config\n ', 'message': None}&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 02:53:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4148147#M150</guid>
      <dc:creator>thefranmanatt</dc:creator>
      <dc:date>2020-09-09T02:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4148250#M151</link>
      <description>&lt;P&gt;Same as me &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here is an interesting observation I made: Yesterday I installed the advanced netconf explorer (&lt;A href="https://github.com/cisco-ie/anx" target="_self"&gt;https://github.com/cisco-ie/anx&lt;/A&gt;) and used its Netconf console to configure the WLC.&lt;/P&gt;&lt;P&gt;I tried this snippet on a WLC98k 17.3.1:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;edit-config xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"&amp;gt;
  &amp;lt;target&amp;gt;
    &amp;lt;running/&amp;gt;
  &amp;lt;/target&amp;gt;
  &amp;lt;config&amp;gt;
    &amp;lt;ap-cfg-data xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-ap-cfg"&amp;gt;
      &amp;lt;ap-tags&amp;gt;
        &amp;lt;ap-tag&amp;gt;
          &amp;lt;ap-mac&amp;gt;10:10:10:10:10:10&amp;lt;/ap-mac&amp;gt;
          &amp;lt;policy-tag&amp;gt;policy_test_tag&amp;lt;/policy-tag&amp;gt;
          &amp;lt;site-tag&amp;gt;site_test_tag&amp;lt;/site-tag&amp;gt;
          &amp;lt;rf-tag&amp;gt;rf_test_tag&amp;lt;/rf-tag&amp;gt;
        &amp;lt;/ap-tag&amp;gt;
      &amp;lt;/ap-tags&amp;gt;
    &amp;lt;/ap-cfg-data&amp;gt;
  &amp;lt;/config&amp;gt;
&amp;lt;/edit-config&amp;gt;&lt;/PRE&gt;&lt;P&gt;It worked with the advanced netconf explorer:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="anx_console.PNG" style="width: 754px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/83079i87769E37159BD190/image-dimensions/754x461?v=v2" width="754" height="461" role="button" title="anx_console.PNG" alt="anx_console.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Then I removed the "edit-config" and "target" part of the snippet so it looked like this:&lt;/P&gt;&lt;PRE&gt;&amp;lt;config&amp;gt;
  &amp;lt;ap-cfg-data xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-ap-cfg"&amp;gt;
    &amp;lt;ap-tags&amp;gt;
      &amp;lt;ap-tag&amp;gt;
        &amp;lt;ap-mac&amp;gt;10:10:10:10:10:10&amp;lt;/ap-mac&amp;gt;
        &amp;lt;policy-tag&amp;gt;policy_test_tag&amp;lt;/policy-tag&amp;gt;
        &amp;lt;site-tag&amp;gt;site_test_tag&amp;lt;/site-tag&amp;gt;
        &amp;lt;rf-tag&amp;gt;rf_test_tag&amp;lt;/rf-tag&amp;gt;
      &amp;lt;/ap-tag&amp;gt;
    &amp;lt;/ap-tags&amp;gt;
  &amp;lt;/ap-cfg-data&amp;gt;
&amp;lt;/config&amp;gt;&lt;/PRE&gt;&lt;P&gt;And then I called it with the python ncclient:&lt;/P&gt;&lt;PRE&gt;reply_raw = wlc_con.edit_config(target='running', config=netconf_payload)&lt;/PRE&gt;&lt;P&gt;This did not work on 17.3.1 but worked on 16.12.4a. I think there might be a communication issue between the ncclient and the WLC.&lt;/P&gt;&lt;P&gt;Oli&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 09:26:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4148250#M151</guid>
      <dc:creator>0_Kiss</dc:creator>
      <dc:date>2020-09-09T09:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4148744#M152</link>
      <description>&lt;P&gt;mine fails through netconf explorer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;config&amp;gt;
    &amp;lt;wlan-cfg-data xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-wlan-cfg"&amp;gt;
      &amp;lt;wlan-cfg-entries&amp;gt;
        &amp;lt;wlan-cfg-entry xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-wlan-cfg"&amp;gt;
        &amp;lt;profile-name xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-wlan-cfg"&amp;gt;WT-Python&amp;lt;/profile-name&amp;gt;
        &amp;lt;wlan-id xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-wlan-cfg"&amp;gt;204&amp;lt;/wlan-id&amp;gt;
        &amp;lt;auth-key-mgmt-psk xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-wlan-cfg"&amp;gt;true&amp;lt;/auth-key-mgmt-psk&amp;gt;
        &amp;lt;auth-key-mgmt-dot1x xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-wlan-cfg"&amp;gt;false&amp;lt;/auth-key-mgmt-dot1x&amp;gt;
        &amp;lt;psk xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-wlan-cfg"&amp;gt;12345678&amp;lt;/psk&amp;gt;
        &amp;lt;radio-policy xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-wlan-cfg"&amp;gt;apf-vap-radio-80211a-only&amp;lt;/radio-policy&amp;gt;
        &amp;lt;apf-vap-id-data xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-wlan-cfg"&amp;gt;
            &amp;lt;broadcast-ssid xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-wlan-cfg"&amp;gt;true&amp;lt;/broadcast-ssid&amp;gt;
            &amp;lt;ssid xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-wlan-cfg"&amp;gt;WT Python&amp;lt;/ssid&amp;gt;
            &amp;lt;wlan-status xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-wlan-cfg"&amp;gt;true&amp;lt;/wlan-status&amp;gt;
        &amp;lt;/apf-vap-id-data&amp;gt;
        &amp;lt;/wlan-cfg-entry&amp;gt;
      &amp;lt;/wlan-cfg-entries&amp;gt;
    &amp;lt;/wlan-cfg-data&amp;gt;
&amp;lt;/config&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gives me&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;rpc-error xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"&amp;gt;
  
  &amp;lt;error-type&amp;gt;protocol&amp;lt;/error-type&amp;gt;
  
  &amp;lt;error-tag&amp;gt;operation-not-supported&amp;lt;/error-tag&amp;gt;
  
  &amp;lt;error-severity&amp;gt;error&amp;lt;/error-severity&amp;gt;
  
  &amp;lt;error-info&amp;gt;
    &amp;lt;bad-element&amp;gt;config&amp;lt;/bad-element&amp;gt;
    
  &amp;lt;/error-info&amp;gt;
  
&amp;lt;/rpc-error&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This worked on 16.12.4a as well&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 23:10:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4148744#M152</guid>
      <dc:creator>thefranmanatt</dc:creator>
      <dc:date>2020-09-09T23:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4153862#M153</link>
      <description>&lt;P&gt;Thanks everyone. Can confirm, had the same error on 17.3.1 but rolled back to 16.12.4a and its working as expected.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2020 18:35:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4153862#M153</guid>
      <dc:creator>jamessciortino0060</dc:creator>
      <dc:date>2020-09-18T18:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4515494#M154</link>
      <description>&lt;P&gt;I can confirm i am having the same issue as mentioned above. I can run a python script to my WLC on 16.12.x code. However, I'm unable to perform the same function with my WLC on 17.x.x code. it still looks like an issue between ncclient and the WLC on 17.x.x.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 20:48:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4515494#M154</guid>
      <dc:creator>aihassan1</dc:creator>
      <dc:date>2021-12-08T20:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4520801#M155</link>
      <description>&lt;P&gt;I this just a perm broken ? did anyone fix this ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Dec 2021 22:15:12 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4520801#M155</guid>
      <dc:creator>Hafthor Hilmarsson O'Connor</dc:creator>
      <dc:date>2021-12-17T22:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4587862#M156</link>
      <description>&lt;P&gt;Have you tried this solution?&lt;BR /&gt;&lt;A href="https://github.com/ncclient/ncclient/issues/489" target="_blank"&gt;https://github.com/ncclient/ncclient/issues/489&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Apr 2022 07:23:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4587862#M156</guid>
      <dc:creator>JPavonM</dc:creator>
      <dc:date>2022-04-07T07:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: WLC98k Configure AP Tags through Netconf</title>
      <link>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4588308#M157</link>
      <description>&lt;P&gt;Thanks for very helpful link!&lt;/P&gt;&lt;P&gt;I changed the following RPC:&lt;/P&gt;&lt;PRE&gt;&amp;lt;ap-cfg-data xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-ap-cfg"&amp;gt;
  &amp;lt;ap-tags&amp;gt;
    &amp;lt;ap-tag&amp;gt;
      &amp;lt;ap-mac&amp;gt;10:10:10:10:10:10&amp;lt;/ap-mac&amp;gt;
      &amp;lt;policy-tag&amp;gt;policy-tag&amp;lt;/policy-tag&amp;gt;
      &amp;lt;site-tag&amp;gt;site-tag&amp;lt;/site-tag&amp;gt;
      &amp;lt;rf-tag&amp;gt;rf-tag_typical_density&amp;lt;/rf-tag&amp;gt;
    &amp;lt;/ap-tag&amp;gt;
  &amp;lt;/ap-tags&amp;gt;
&amp;lt;/ap-cfg-data&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;&amp;lt;config xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"&amp;gt;&lt;/STRONG&gt;
    &amp;lt;ap-cfg-data xmlns="http://cisco.com/ns/yang/Cisco-IOS-XE-wireless-ap-cfg"&amp;gt;
        &amp;lt;ap-tags&amp;gt;
            &amp;lt;ap-tag&amp;gt;
                &amp;lt;ap-mac&amp;gt;10:10:10:10:10:10&amp;lt;/ap-mac&amp;gt;
                &amp;lt;policy-tag&amp;gt;policy_tag&amp;lt;/policy-tag&amp;gt;
                &amp;lt;site-tag&amp;gt;site_tag&amp;lt;/site-tag&amp;gt;
                &amp;lt;rf-tag&amp;gt;rf-tag_typical_density&amp;lt;/rf-tag&amp;gt;
            &amp;lt;/ap-tag&amp;gt;
        &amp;lt;/ap-tags&amp;gt;
    &amp;lt;/ap-cfg-data&amp;gt;
&lt;STRONG&gt;&amp;lt;/config&amp;gt;&lt;/STRONG&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This way it works now!&amp;nbsp;&lt;SPAN&gt;I tested it on 17.3.4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Apr 2022 13:53:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-devices/wlc98k-configure-ap-tags-through-netconf/m-p/4588308#M157</guid>
      <dc:creator>0_Kiss</dc:creator>
      <dc:date>2022-04-07T13:53:15Z</dc:date>
    </item>
  </channel>
</rss>

