<?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: R510 AP - Unleashed - import CSV for Access List? in Unleashed</title>
    <link>https://community.ruckuswireless.com/t5/Unleashed/R510-AP-Unleashed-import-CSV-for-Access-List/m-p/79340#M6046</link>
    <description>&lt;P&gt;Thanks, I appreciate the response.&amp;nbsp; &amp;nbsp;Ruckus really should add that functionality.&amp;nbsp; &amp;nbsp; I think it is time for me to move to ubiquiti or something that doesn't require scripts.&lt;/P&gt;</description>
    <pubDate>Fri, 03 May 2024 15:16:35 GMT</pubDate>
    <dc:creator>bdillard</dc:creator>
    <dc:date>2024-05-03T15:16:35Z</dc:date>
    <item>
      <title>R510 AP - Unleashed - import CSV for Access List?</title>
      <link>https://community.ruckuswireless.com/t5/Unleashed/R510-AP-Unleashed-import-CSV-for-Access-List/m-p/78688#M5972</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a few R510's on unleashed 200.15.6.112.52&lt;/P&gt;&lt;P&gt;We use mac addresses to control who is allowed on our wireless.&amp;nbsp; &amp;nbsp;We really don't want to set up a radius server.&amp;nbsp; &amp;nbsp;Is there an easy way to import the mac access list (or perhaps I'm doing it the hard way) as I can only seem to find a manual entry.&lt;/P&gt;&lt;P&gt;I go to admin &amp;amp; Services,&amp;nbsp; &amp;nbsp;Services,&amp;nbsp; Access control and see edit but no place to import CSV.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2024 22:40:16 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/Unleashed/R510-AP-Unleashed-import-CSV-for-Access-List/m-p/78688#M5972</guid>
      <dc:creator>bdillard</dc:creator>
      <dc:date>2024-04-25T22:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: R510 AP - Unleashed - import CSV for Access List?</title>
      <link>https://community.ruckuswireless.com/t5/Unleashed/R510-AP-Unleashed-import-CSV-for-Access-List/m-p/78918#M5974</link>
      <description>&lt;P&gt;You can probably achieve a good end result using DPSK instead, which will let you import MACs from a CSV file.&lt;/P&gt;&lt;P&gt;Otherwise...&lt;/P&gt;&lt;P&gt;Not a method supported by Ruckus &lt;EM&gt;&lt;STRONG&gt;at all&lt;/STRONG&gt;&lt;/EM&gt;...&lt;/P&gt;&lt;P&gt;But I added this functionality to &lt;A href="https://pypi.org/project/aioruckus/" target="_self"&gt;aioruckus&lt;/A&gt;, if you want to script it.&lt;/P&gt;&lt;P&gt;You will need to install aioruckus (pip install aioruckus), then you could create a python script something like this:-&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from aioruckus import AjaxSession
import asyncio

async def test_aioruckus():

    with open("&amp;lt;my text file&amp;gt;", "r") as f:
        macs = [line.strip() for line in f if line.strip()]

    async with AjaxSession.async_create("&amp;lt;ruckus ip&amp;gt;", "&amp;lt;ruckus user&amp;gt;", "&amp;lt;ruckus password&amp;gt;") as session:
        await session.api.do_set_acl_members("&amp;lt;name of l2 acl&amp;gt;", macs)

asyncio.run(test_aioruckus())&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note that you can't add more than 128 MACs to an ACL.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2024 09:31:33 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/Unleashed/R510-AP-Unleashed-import-CSV-for-Access-List/m-p/78918#M5974</guid>
      <dc:creator>ms264556</dc:creator>
      <dc:date>2024-04-27T09:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: R510 AP - Unleashed - import CSV for Access List?</title>
      <link>https://community.ruckuswireless.com/t5/Unleashed/R510-AP-Unleashed-import-CSV-for-Access-List/m-p/79340#M6046</link>
      <description>&lt;P&gt;Thanks, I appreciate the response.&amp;nbsp; &amp;nbsp;Ruckus really should add that functionality.&amp;nbsp; &amp;nbsp; I think it is time for me to move to ubiquiti or something that doesn't require scripts.&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 15:16:35 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/Unleashed/R510-AP-Unleashed-import-CSV-for-Access-List/m-p/79340#M6046</guid>
      <dc:creator>bdillard</dc:creator>
      <dc:date>2024-05-03T15:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: R510 AP - Unleashed - import CSV for Access List?</title>
      <link>https://community.ruckuswireless.com/t5/Unleashed/R510-AP-Unleashed-import-CSV-for-Access-List/m-p/79372#M6047</link>
      <description>&lt;P&gt;I moved from Ubiquiti &amp;amp; wouldn't go back. Reliable WiFi with no dead-spots is very under-rated.&lt;/P&gt;&lt;P&gt;Ruckus have always been great at supporting APs with updated software for many years longer than you'd expect. And they're exceedingly generous allowing anyone to convert 2nd-hand enterprise APs into a controllerless mesh setup - &lt;EM&gt;for free&lt;/EM&gt; - and then regularly adding new functionality for no cost.&lt;/P&gt;&lt;P&gt;If a script is occassionally required to do something non-standard (e.g. bulk adding MACs instead of using DPSK) then it's a small price to pay for having WiFi which "just works".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 May 2024 00:53:54 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/Unleashed/R510-AP-Unleashed-import-CSV-for-Access-List/m-p/79372#M6047</guid>
      <dc:creator>ms264556</dc:creator>
      <dc:date>2024-05-04T00:53:54Z</dc:date>
    </item>
  </channel>
</rss>

