<?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: Best Practice configs for a High Density Deployment? in ZoneDirector</title>
    <link>https://community.ruckuswireless.com/t5/ZoneDirector/Best-Practice-configs-for-a-High-Density-Deployment/m-p/9128#M1789</link>
    <description>SYSLOG:
&lt;BR /&gt;
I syslog to a linux machine to store logs that I can check for roaming and other problems.
&lt;BR /&gt;
Max O'Driscoll posted good information about syslogging to an external windows server:
&lt;BR /&gt;
&lt;A href="https://forums.ruckuswireless.com/ruckuswireless/topics/centralize_log_viewers_analyzers" rel="nofollow"&gt;https://forums.ruckuswireless.com/ruc...&lt;/A&gt;
&lt;BR /&gt;&lt;BR /&gt;
SMARTROAM:
&lt;BR /&gt;
In case people have questions about smartroam, I'd suggest checking out this link:
&lt;BR /&gt;
&lt;A href="https://support.ruckuswireless.com/answers/000002277" rel="nofollow"&gt;https://support.ruckuswireless.com/an...&lt;/A&gt;
&lt;BR /&gt;&lt;BR /&gt;
FYI:
&lt;BR /&gt;
smartroam factors + equivalent db/signal-percentages:
&lt;BR /&gt;
kick-off a client when the dB value is below:
&lt;BR /&gt;
1   5db/ 2%?
&lt;BR /&gt;
2  10db/12%
&lt;BR /&gt;
3  15db/25%
&lt;BR /&gt;
4  17db/30%
&lt;BR /&gt;
5  20db/37%
&lt;BR /&gt;
6  23db/45%
&lt;BR /&gt;
7  27db/54%
&lt;BR /&gt;
8  32db/67%
&lt;BR /&gt;
9  40db/87%
&lt;BR /&gt;
10 60db/99%
&lt;BR /&gt;
note:
&lt;BR /&gt;
These are the dB/signal-percentages you see under the monitor tab when looking at clients.
&lt;BR /&gt;&lt;BR /&gt;
BEST PRACTICES:
&lt;BR /&gt;
The "Best practices deployment guide" could be good to know about:
&lt;BR /&gt;
&lt;A href="https://support.ruckuswireless.com/documents/483-spot-best-practices-guide/download" rel="nofollow"&gt;https://support.ruckuswireless.com/do...&lt;/A&gt;</description>
    <pubDate>Wed, 15 Oct 2014 18:16:20 GMT</pubDate>
    <dc:creator>bill_burns_6069</dc:creator>
    <dc:date>2014-10-15T18:16:20Z</dc:date>
    <item>
      <title>Best Practice configs for a High Density Deployment?</title>
      <link>https://community.ruckuswireless.com/t5/ZoneDirector/Best-Practice-configs-for-a-High-Density-Deployment/m-p/9127#M1788</link>
      <description>When using Ruckus APs in a High Density enviroment, some clients refuse to roam when they should and others roam excessively.
&lt;BR /&gt;&lt;BR /&gt;
What (if anything) would be better than the following config for avoiding roaming issues in a high AP density environment?
&lt;BR /&gt;
..assuming a non-encrypted guest network...
&lt;BR /&gt;&lt;BR /&gt;
Create 2 WLANs:
&lt;BR /&gt;&lt;BR /&gt;
wlan public50
&lt;BR /&gt;
ssid public50
&lt;BR /&gt;
description "public 5Ghz SSID"
&lt;BR /&gt;
no band-balancing
&lt;BR /&gt;
no load-balancing
&lt;BR /&gt;
vlan 111
&lt;BR /&gt;
ofdm-only
&lt;BR /&gt;
bss-minrate 24
&lt;BR /&gt;
smart-roam 2
&lt;BR /&gt;
exit
&lt;BR /&gt;&lt;BR /&gt;
wlan public24
&lt;BR /&gt;
ssid public24
&lt;BR /&gt;
description "public 2.4Ghz SSID"
&lt;BR /&gt;
vlan 111
&lt;BR /&gt;
no band-balancing
&lt;BR /&gt;
no load-balancing
&lt;BR /&gt;
ofdm-only
&lt;BR /&gt;
bss-minrate 12
&lt;BR /&gt;
smart-roam 1
&lt;BR /&gt;
exit
&lt;BR /&gt;&lt;BR /&gt;
Create 2 WLAN groups:
&lt;BR /&gt;&lt;BR /&gt;
wlan-group public24
&lt;BR /&gt;
wlan public24
&lt;BR /&gt;
exit
&lt;BR /&gt;&lt;BR /&gt;
wlan-group public50
&lt;BR /&gt;
wlan public50
&lt;BR /&gt;
exit
&lt;BR /&gt;&lt;BR /&gt;
Then assign the WLAN groups to the appropriate radio of each AP.
&lt;BR /&gt;&lt;BR /&gt;
Reasoning:
&lt;BR /&gt;&lt;BR /&gt;
1) Turn off band-balancing a.k.a. band-steering to prevent an AP from accidentially pushing a 2.4Ghz client to a further-away 2.4Ghz radio instead of the intended local 5Ghz radio.
&lt;BR /&gt;&lt;BR /&gt;
2) set ofdm-only to prevent old "B-only" clients from dropping the AP to "B-only" mode.
&lt;BR /&gt;&lt;BR /&gt;
3) set bss-minrate to prevent clients from going to lower speeds. (and encourage them to roam to a nearer AP on their own)
&lt;BR /&gt;&lt;BR /&gt;
4) set smart-roam (not recommended by Ruckus?) to kick clients off an AP when the AP sees a very poor signal from the client. (and "force" a client to roam)
&lt;BR /&gt;&lt;BR /&gt;
5) Use different SSIDs for the 2.4Ghz radios vs the 5Ghz radios.
&lt;BR /&gt;
Even though I've already turned off band-steering and load-balancing, the clients may still decide to jump back+forth between 2.4Ghz and 5Ghz radios.
&lt;BR /&gt;
Using a different SSID for each band makes a client less likely to decide to roam between bands.
&lt;BR /&gt;&lt;BR /&gt;
This still leaves the possibility for 2.4Ghz clients to decide to excessively jump between 2.4Ghz radios.
&lt;BR /&gt;
If you need a way to prevent that kind of roaming, you could take the additional step of assigning a unique SSID/WLAN to each radio on each AP.
&lt;BR /&gt;&lt;BR /&gt;
If your environment doesn't suffer from excessive roaming, you can add a single "public" SSID that exists on all radios.
&lt;BR /&gt;
End users would then be able to choose the SSID that works best for them.
&lt;BR /&gt;&lt;BR /&gt;
If anyone has a better solution, please let me know.</description>
      <pubDate>Wed, 15 Oct 2014 17:24:00 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ZoneDirector/Best-Practice-configs-for-a-High-Density-Deployment/m-p/9127#M1788</guid>
      <dc:creator>bill_burns_6069</dc:creator>
      <dc:date>2014-10-15T17:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: Best Practice configs for a High Density Deployment?</title>
      <link>https://community.ruckuswireless.com/t5/ZoneDirector/Best-Practice-configs-for-a-High-Density-Deployment/m-p/9128#M1789</link>
      <description>SYSLOG:
&lt;BR /&gt;
I syslog to a linux machine to store logs that I can check for roaming and other problems.
&lt;BR /&gt;
Max O'Driscoll posted good information about syslogging to an external windows server:
&lt;BR /&gt;
&lt;A href="https://forums.ruckuswireless.com/ruckuswireless/topics/centralize_log_viewers_analyzers" rel="nofollow"&gt;https://forums.ruckuswireless.com/ruc...&lt;/A&gt;
&lt;BR /&gt;&lt;BR /&gt;
SMARTROAM:
&lt;BR /&gt;
In case people have questions about smartroam, I'd suggest checking out this link:
&lt;BR /&gt;
&lt;A href="https://support.ruckuswireless.com/answers/000002277" rel="nofollow"&gt;https://support.ruckuswireless.com/an...&lt;/A&gt;
&lt;BR /&gt;&lt;BR /&gt;
FYI:
&lt;BR /&gt;
smartroam factors + equivalent db/signal-percentages:
&lt;BR /&gt;
kick-off a client when the dB value is below:
&lt;BR /&gt;
1   5db/ 2%?
&lt;BR /&gt;
2  10db/12%
&lt;BR /&gt;
3  15db/25%
&lt;BR /&gt;
4  17db/30%
&lt;BR /&gt;
5  20db/37%
&lt;BR /&gt;
6  23db/45%
&lt;BR /&gt;
7  27db/54%
&lt;BR /&gt;
8  32db/67%
&lt;BR /&gt;
9  40db/87%
&lt;BR /&gt;
10 60db/99%
&lt;BR /&gt;
note:
&lt;BR /&gt;
These are the dB/signal-percentages you see under the monitor tab when looking at clients.
&lt;BR /&gt;&lt;BR /&gt;
BEST PRACTICES:
&lt;BR /&gt;
The "Best practices deployment guide" could be good to know about:
&lt;BR /&gt;
&lt;A href="https://support.ruckuswireless.com/documents/483-spot-best-practices-guide/download" rel="nofollow"&gt;https://support.ruckuswireless.com/do...&lt;/A&gt;</description>
      <pubDate>Wed, 15 Oct 2014 18:16:20 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ZoneDirector/Best-Practice-configs-for-a-High-Density-Deployment/m-p/9128#M1789</guid>
      <dc:creator>bill_burns_6069</dc:creator>
      <dc:date>2014-10-15T18:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: Best Practice configs for a High Density Deployment?</title>
      <link>https://community.ruckuswireless.com/t5/ZoneDirector/Best-Practice-configs-for-a-High-Density-Deployment/m-p/9129#M1790</link>
      <description>RE: Entering configs via the CLI:
&lt;BR /&gt;
The commands in the initial post can be entered via the ZoneDirector CLI.
&lt;BR /&gt;&lt;BR /&gt;
To access the CLI, SSH to the IP address of your ZD.
&lt;BR /&gt;&lt;BR /&gt;
If you don't have an SSH client already, download putty:
&lt;BR /&gt;
&lt;A href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" rel="nofollow"&gt;http://www.chiark.greenend.org.uk/~sg...&lt;/A&gt;
&lt;BR /&gt;&lt;BR /&gt;
To get into configuration mode see the example on page 34 of the CLI User Guide:
&lt;BR /&gt;
&lt;A href="https://support.ruckuswireless.com/documents/151-zonedirector-release-9-0-cli-user-guide/download" rel="nofollow"&gt;https://support.ruckuswireless.com/do...&lt;/A&gt;
&lt;BR /&gt;
(hint: type the word "config")</description>
      <pubDate>Thu, 16 Oct 2014 03:35:30 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ZoneDirector/Best-Practice-configs-for-a-High-Density-Deployment/m-p/9129#M1790</guid>
      <dc:creator>bill_burns_6069</dc:creator>
      <dc:date>2014-10-16T03:35:30Z</dc:date>
    </item>
  </channel>
</rss>

