<?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 Cisco 5508 WLC - Configuring multiple Access Points in Wireless</title>
    <link>https://community.cisco.com/t5/wireless/cisco-5508-wlc-configuring-multiple-access-points/m-p/2309862#M118460</link>
    <description>&lt;P&gt;Hi all...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On a Cisco 5508 running 7.4.110, is it possible to configure the &lt;STRONG&gt;AP Mode&lt;/STRONG&gt; on multiple acess points. I have around 15 new APs, but don't particularily want to go into each indiviual one to change the AP Mode from Local to FlexConnect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can't see anyting under Global Configuration for this... although I suppose CLI is another option?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Tony&lt;/P&gt;</description>
    <pubDate>Sun, 04 Jul 2021 07:55:20 GMT</pubDate>
    <dc:creator>tonymitchell</dc:creator>
    <dc:date>2021-07-04T07:55:20Z</dc:date>
    <item>
      <title>Cisco 5508 WLC - Configuring multiple Access Points</title>
      <link>https://community.cisco.com/t5/wireless/cisco-5508-wlc-configuring-multiple-access-points/m-p/2309862#M118460</link>
      <description>&lt;P&gt;Hi all...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On a Cisco 5508 running 7.4.110, is it possible to configure the &lt;STRONG&gt;AP Mode&lt;/STRONG&gt; on multiple acess points. I have around 15 new APs, but don't particularily want to go into each indiviual one to change the AP Mode from Local to FlexConnect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can't see anyting under Global Configuration for this... although I suppose CLI is another option?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Tony&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jul 2021 07:55:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/cisco-5508-wlc-configuring-multiple-access-points/m-p/2309862#M118460</guid>
      <dc:creator>tonymitchell</dc:creator>
      <dc:date>2021-07-04T07:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco 5508 WLC - Configuring multiple Access Points</title>
      <link>https://community.cisco.com/t5/wireless/cisco-5508-wlc-configuring-multiple-access-points/m-p/2309863#M118461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There isn't a way to do that. You would have to change each one either through the GUI or the CLI. The Flex7500 does that only because it supports only FlexConnect AP's.&lt;BR /&gt;&lt;BR /&gt;Sent from Cisco Technical Support iPhone App&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Sep 2013 11:37:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/cisco-5508-wlc-configuring-multiple-access-points/m-p/2309863#M118461</guid>
      <dc:creator>Scott Fella</dc:creator>
      <dc:date>2013-09-24T11:37:57Z</dc:date>
    </item>
    <item>
      <title>Cisco 5508 WLC - Configuring multiple Access Points</title>
      <link>https://community.cisco.com/t5/wireless/cisco-5508-wlc-configuring-multiple-access-points/m-p/2309864#M118462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks Scott.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suppose I'd have to go through all of them anyway to set the hostname and location! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Sep 2013 12:29:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/cisco-5508-wlc-configuring-multiple-access-points/m-p/2309864#M118462</guid>
      <dc:creator>tonymitchell</dc:creator>
      <dc:date>2013-09-24T12:29:02Z</dc:date>
    </item>
    <item>
      <title>Cisco 5508 WLC - Configuring multiple Access Points</title>
      <link>https://community.cisco.com/t5/wireless/cisco-5508-wlc-configuring-multiple-access-points/m-p/2309865#M118463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use linux tools for stuff like this. ie, using awk, if you had a list of just ap names in a file, you could take the output of the following and paste into CLI:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;awk '{print "config ap mode se-connect",$1;print "y"}' apfile.txt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or the same, except grabbing a list of currently joined AP's from the WLC and using that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;snmpwalk -v2c -c &lt;COMMUNITY&gt; &lt;WLC_IP_ADDRESS&gt; 1.3.6.1.4.1.14179.2.2.1.1.3 | &lt;/WLC_IP_ADDRESS&gt;&lt;/COMMUNITY&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;awk -F "\"" '{print "config ap mode se-connect",$2;print "y"}'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Sep 2013 20:53:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/cisco-5508-wlc-configuring-multiple-access-points/m-p/2309865#M118463</guid>
      <dc:creator>mikealbano</dc:creator>
      <dc:date>2013-09-24T20:53:38Z</dc:date>
    </item>
  </channel>
</rss>

