<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Cloudpath — RUCKUS Networks Community</title>
        <link>https://community.ruckuswireless.com/</link>
        <pubDate>Mon, 17 Aug 2026 17:25:19 +0000</pubDate>
        <language>en</language>
            <description>Cloudpath — RUCKUS Networks Community</description>
    <atom:link href="https://community.ruckuswireless.com/discussions/tagged/cloudpath/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>Configuring RSTP (802.1w) and Spanning Tree Best Practices on ICX Switches</title>
        <link>https://community.ruckuswireless.com/discussion/36660/configuring-rstp-802-1w-and-spanning-tree-best-practices-on-icx-switches</link>
        <pubDate>Wed, 03 Nov 2021 18:45:36 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>BenBeck</dc:creator>
        <guid isPermaLink="false">36660@/discussions</guid>
        <description><![CDATA[<p>Hey all,&nbsp;</p>
<p>&nbsp;</p>
<p>I wanted to take a moment to look at spanning tree. By default, ICX switches run 802.1d spanning tree on a per-vlan basis. Ideally, we want to use a protocol with faster convergence such as rapid spanning tree (802.1w). I will go through some general configuration steps and a few best practices. These configurations will not suit all customers, but it is a good starting point for many.&nbsp;</p>
<p>&nbsp;</p>
<p>Enabling RSTP on vlan(s)&nbsp;</p>
<p>&nbsp;</p>
<pre>ICX#conf t<br />ICX(config)#vlan 10 20 30 &lt;--edits three vlans at once. You can edit vlans one at a time or using a range via the 'to' syntax (vlan 1 to 20)<br />ICX(config-mvlan-10*30)#spanning-tree 802-1w</pre>
<p>&nbsp;</p>
<p>Now that 802.1w is running, we will want to set a root bridge priority. If no priority is defined, the default of 32768 will be used. Let us assume you want this switch to be the root bridge. A lower priority number wins, so let us go ahead and set it to zero to ensure this switch becomes root bridge:</p>
<p>&nbsp;</p>
<pre>ICX(config-mvlan-10*30)#spanning-tree 802-1w priority 0</pre>
<p>&nbsp;</p>
<p>The resulting configuration will look like this:</p>
<p>&nbsp;</p>
<pre>vlan 10 by port<br />&nbsp;tagged ethe 1/1/1 to 1/1/48 ethe 1/2/1 ethe 1/2/2 ethe 1/2/3 ethe 1/2/4 ethe 1/2/5 ethe 1/2/6 ethe 1/2/7 ethe 1/2/8<br />&nbsp;<strong>spanning-tree 802-1w</strong><br /><strong>&nbsp;spanning-tree 802-1w priority 0</strong><br />!<br />vlan 20 by port<br />&nbsp;tagged ethe 1/1/1 to 1/1/48 ethe 1/2/1 ethe 1/2/2 ethe 1/2/3 ethe 1/2/4 ethe 1/2/5 ethe 1/2/6 ethe 1/2/7 ethe 1/2/8<br />&nbsp;<strong>spanning-tree 802-1w</strong><br /><strong>&nbsp;spanning-tree 802-1w priority 0</strong><br />!<br />vlan 30 by port<br />&nbsp;tagged ethe 1/1/1 to 1/1/48 ethe 1/2/1 ethe 1/2/2 ethe 1/2/3 ethe 1/2/4 ethe 1/2/5 ethe 1/2/6 ethe 1/2/7 ethe 1/2/8<br />&nbsp;<strong>spanning-tree 802-1w</strong><br /><strong>&nbsp;spanning-tree 802-1w priority 0</strong></pre>
<p>&nbsp;</p>
<p>Now that our RSTP instances are running, let's take a look at a couple best practices.</p>
<p>&nbsp;</p>
<p>Switch-to-switch connections should be defined as point-to-point links to optimize convergence times. In this example, let us assume ports 1/2/1 through 1/2/8 are all switch-to-switch links:</p>
<p>&nbsp;</p>
<pre>ICX#conf t<br />ICX(config)#interface ethernet 1/2/1 to 1/2/8<br />ICX(config-mif-1/2/1-1/2/8)#spanning-tree 802-1w admin-pt2pt-mac</pre>
<p>&nbsp;</p>
<p>The resulting configuration:</p>
<p>&nbsp;</p>
<pre>interface ethernet 1/2/1<br />&nbsp;port-name Switch-to-Switch-Connection<br />&nbsp;<strong>spanning-tree 802-1w admin-pt2pt-mac</strong></pre>
<p>&nbsp;</p>
<p>Switch-to-client (edge) connections should be defined as operational edge ports. In this example, let us assume ports 1/1/1 through 1/1/48 are all client edge ports:</p>
<p>&nbsp;</p>
<pre>ICX#conf t<br />ICX(config)#interface ethernet 1/1/1 to 1/1/48<br />ICX(config-mif-1/1/1-1/1/48)#spanning-tree 802-1w admin-edge-port</pre>
<p><br />Client ports can also have STP BPDU Guard enabled. This will shut down the port if any BPDUs are received on the port.&nbsp;</p>
<pre><br />ICX#conf t<br />ICX(config)#interface ethernet 1/1/1 to 1/1/48<br />ICX(config)#stp-bpdu-guard</pre>
<p>&nbsp;</p>
<p>The resulting configuration:</p>
<p>&nbsp;</p>
<pre>interface ethernet 1/1/1<br />&nbsp;port-name Client-Port<br />&nbsp;<strong>spanning-tree 802-1w admin-edge-port</strong><br /><strong>&nbsp;stp-bpdu-guard</strong></pre>
<p><br />To see RSTP information, you can use the following commands:</p>
<p>&nbsp;</p>
<pre>ICX#show 802-1w<br />ICX#show 802-1w detail</pre>
<p><br />Note: If you are running 802.1d, you will use 'show spanning-tree' and 'show spanning-tree detail'. MSTP also has unique commands such as 'show mstp' and 'show mstp detail'</p>
<p>&nbsp;</p>
<p>To see all available configuration options for spanning tree, please see our FastIron Layer 2 Switching Configuration Guide:</p>
<p>&nbsp;</p>
<p><a href="https://docs.commscope.com/bundle/fastiron-08095-l2guide/page/GUID-253F4B9A-D182-47D1-B30B-C2ACE9CD0D0F-homepage.html#" target="_blank" rel="noopener noreferrer nofollow">HTML Version</a></p>
<p><a href="https://support.ruckuswireless.com/documents/3457-fastiron-08-0-95-ga-layer-2-switching-configuration-guide" target="_blank" rel="noopener noreferrer nofollow">PDF Version (requires login)</a></p>
<p>&nbsp;</p>
<p>Let us know if you have any questions!</p>]]>
        </description>
    </item>
    <item>
        <title>Cross connection not supported in a 3m DAC cable for 7150 switch</title>
        <link>https://community.ruckuswireless.com/discussion/78657/cross-connection-not-supported-in-a-3m-dac-cable-for-7150-switch</link>
        <pubDate>Thu, 25 Apr 2024 13:46:39 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Chandini</dc:creator>
        <guid isPermaLink="false">78657@/discussions</guid>
        <description><![CDATA[<p><strong>Issue noticed:</strong></p><p><strong>When a 3m DAC cable connection is made in 7150 between port 1/3/1 to 2/3/3</strong></p><p>The link remains down, and the two switches will not stack with each other.</p><p><strong>Details from Ruckus optic guide:</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11376i7BDC6FC7C4CC0D94/image.png" width="703" height="266" role="button" title="Chandini_0-1714052634342.png" alt="Chandini_0-1714052634342.png" /></span></p><p><strong>Link to Ruckus optic guide for reference:</strong></p><ul><li><span style="font-size: small; font-family: courier new,courier;"><a href="https://www.commscope.com/globalassets/digizuite/61722-ds-ethernet-optics-family.pdf" target="_blank" rel="noopener noreferrer nofollow">https://www.commscope.com/globalassets/digizuite/61722-ds-ethernet-optics-family.pdf</a></span></li></ul><p><strong>Below is link to KBA which briefs about the problem:</strong></p><ul><li><span style="font-size: small; font-family: courier new,courier;"><a href="https://support.ruckuswireless.com/articles/000011828" target="_blank" rel="noopener noreferrer nofollow">https://support.ruckuswireless.com/articles/000011828</a></span></li></ul><p><strong>Technical Bulletin link:</strong></p><ul><li><span style="font-size: small; font-family: courier new,courier;"><a href="https://support.ruckuswireless.com/technical_support_bulletins/607" target="_blank" rel="noopener noreferrer nofollow">https://support.ruckuswireless.com/technical_support_bulletins/607</a></span></li></ul>]]>
        </description>
    </item>
    <item>
        <title>How to Fix Corrupted Flash and Resolve Boot Loop Issues</title>
        <link>https://community.ruckuswireless.com/discussion/100642/how-to-fix-corrupted-flash-and-resolve-boot-loop-issues</link>
        <pubDate>Wed, 11 Dec 2024 14:14:11 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Vásquez_Fer</dc:creator>
        <guid isPermaLink="false">100642@/discussions</guid>
        <description><![CDATA[<p>When dealing with a corrupted flash or related issues, follow these steps to troubleshoot and resolve the problem.</p>
<h1 id="toc-hId-1812471396"><span style="font-size: large;">Boot Loop Process</span></h1>
<p>When a unit is stuck in a boot loop and fails to stabilize, the first step is to console into the unit directly and review the boot process. This can provide insights into why the unit is not booting correctly.</p>
<h4 id="toc-hId--1329226080">Example Error:</h4>
<p><span style="font-size: small; font-family: courier new,courier;">Booting image from Secondary</span></p>
<p><span style="font-size: small; font-family: courier new,courier;">Wrong Image Format for bootm command</span></p>
<p><span style="font-size: small; font-family: courier new,courier;">ERROR: can't get kernel image!</span></p>
<p><span style="font-size: small; font-family: courier new,courier;">could not boot from secondary, no valid image; trying to boot from primary</span></p>
<p><span style="font-size: small; font-family: courier new,courier;">Booting image from Primary</span></p>
<p><span style="font-size: small; font-family: courier new,courier;">Wrong Image Format for bootm command</span></p>
<p><span style="font-size: small; font-family: courier new,courier;">ERROR: can't get kernel image!</span></p>
<ol>
<li><strong>Console the Unit:</strong></li>

<li>Connect to the unit via a console cable and monitor the boot process. Interrupt the boot process by pressing b at the boot counter.</li>

</ol>
<p>&nbsp;&nbsp;<span style="font-size: small; font-family: courier new,courier;"> Ruckus Networks Bootloader: 10.1.26T215 (Nov 29 2022 - 04:42:59)</span></p>
<p><span style="font-size: small; font-family: courier new,courier;">&nbsp;&nbsp; Validate Shmoo parameters stored in flash ..... OK</span></p>
<p><span style="font-size: small; font-family: courier new,courier;">&nbsp;&nbsp; Restoring Shmoo parameters from flash .....</span></p>
<p><span style="font-size: small; font-family: courier new,courier;">&nbsp;&nbsp; Running simple memory test ..... OK</span></p>
<p><span style="font-size: small; font-family: courier new,courier;">&nbsp;&nbsp; ICX7450-24 Copper (Non-POE), PVT1</span></p>
<p><span style="font-size: small; font-family: courier new,courier;">&nbsp;&nbsp; SYS CPLD VER: 0x10, Released Ver: 0</span></p>
<p><span style="font-family: courier new,courier;">&nbsp;&nbsp; Enter '<strong>b</strong>' to stop at boot monitor:&nbsp; 3</span> &gt;&gt;&gt;&gt; <strong>Press 'b' to stop the process</strong>.</p>
<p>&nbsp;<span style="font-family: courier new,courier;">&nbsp; ICX7450-Boot&gt;</span></p>
<ol>
<li><strong>Access Boot Mode:</strong></li>

<li>Check the installed images using the show_image command.</li>

</ol>
<p>&nbsp;&nbsp;<span style="font-size: medium; font-family: courier new,courier;"> ICX7450-Boot&gt; show_image</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; ===========================</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; Primary&nbsp; : SPR08095k(33554432)</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; Secondary: SPS08095j(31457280)</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; ===========================</span></p>
<ol>
<li><strong>Set Up for Recovery:</strong></li>

<li>Connect an Ethernet cable from the management port to the TFTP server.</li>
<li>Ensure the device is in boot mode for recovery.</li>

</ol>
<p>Example:</p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/14606iEAF58A0348BAEFC6/image.png" role="button" title="Vsquez_Fer_0-1733926358942.png" alt="Vsquez_Fer_0-1733926358942.png" /></span></p>
<p>&nbsp;</p>
<ol>
<li><strong>Configure Environment Variables:</strong></li>

<li>Set the TFTP server IP and other necessary network settings.</li>

</ol>
<p>&nbsp;&nbsp;<span style="font-size: medium; font-family: courier new,courier;"> ICX 7450-48&gt; setenv serverip 10.10.10.21</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; ICX 7450-48&gt; setenv ipaddr 10.10.10.22</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; ICX 7450-48&gt; setenv gatewayip 10.10.10.1</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; ICX 7450-48&gt; setenv netmask 255.255.255.0</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; ICX 7450-48&gt; saveenv</span></p>
<ul>
<li><span style="font-size: medium; font-family: courier new,courier;">Verify the settings:</span></li>
</ul>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; ICX 7450-48&gt; printenv</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; baudrate=9600</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; ipaddr=10.10.10.22</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; gatewayip=10.10.10.1</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; netmask=255.255.255.0</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; serverip=10.10.10.21</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; uboot=ruckus/ICX7450/bootcode/spz10115</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; Version:10.1.06T215 (May 15 2015 - 11:28:23)</span></p>
<ol>
<li><strong>Test Connectivity:</strong></li>

<li>Ping the TFTP server to ensure connectivity.</li>
<li>Disable the Windows Firewall</li>

</ol>
<p>&nbsp;<span style="font-family: courier new,courier;">&nbsp; <span style="font-size: medium;">ICX 7450-48&gt; ping 10.10.10.21</span></span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; ethPortNo = 0</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; Using egiga0 device</span></p>
<p><span style="font-size: medium; font-family: courier new,courier;">&nbsp;&nbsp; host 10.10.10.21 is alive</span></p>
<ol>
<li><strong>Update the Flash:</strong></li>

<li>Set the image file name and update the flash.</li>

</ol>
<p>&nbsp;<span style="font-family: courier new,courier;">&nbsp; ICX 7450-48&gt; setenv image_name images/ICX/SPR08090.bin</span></p>
<p><span style="font-family: courier new,courier;">&nbsp;&nbsp; ICX 7450-48&gt; update_primary</span></p>
<ul>
<li>For versions below 8080f, update the uboot file.</li>
</ul>
<p>Provide the file name of the boot image to be copied from the tftp server.</p>
<p>&nbsp;<span style="font-family: courier new,courier;">&nbsp; ICX 7450-48&gt; setenv uboot &lt;xxx.bin&gt;</span></p>
<p><span style="font-family: courier new,courier;">&nbsp;&nbsp; ICX 7450-48&gt; update_uboot</span></p>
<ol>
<li><strong>Boot the Unit:</strong></li>

<li>Load the image from the primary or secondary flash.</li>

</ol>
<p>&nbsp;&nbsp;<span style="font-family: courier new,courier;"> ICX 7450-48&gt; boot_primary</span></p>
<p>Video Link as reference: <a href="https://www.youtube.com/watch?v=RHriOYYD_iI" target="_blank" rel="noopener nofollow noreferrer">https://www.youtube.com/watch?v=RHriOYYD_iI</a></p>
<p>Link as reference : <a href="https://docs.commscope.com/bundle/fastiron-09010-upgradeguide/page/GUID-9B5D5A56-039D-44FB-8FD2-B9B55E71ADE8.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-09010-upgradeguide/page/GUID-9B5D5A56-039D-44FB-8FD2-B9B55E71ADE8.html</a></p>
<ul>
<li>For ICX-8200 models, boot from the golden image if necessary.</li>
</ul>
<p>&nbsp;&nbsp; boot_golden_primary - Flash the Golden UFI Image to Primary and boot from Primary</p>]]>
        </description>
    </item>
    <item>
        <title>Basic OID and MIB’s for ICX switch monitoring</title>
        <link>https://community.ruckuswireless.com/discussion/55946/basic-oid-and-mib-s-for-icx-switch-monitoring</link>
        <pubDate>Thu, 30 Mar 2023 11:28:19 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Chandini</dc:creator>
        <guid isPermaLink="false">55946@/discussions</guid>
        <description><![CDATA[<p><strong><span style="font-size: medium;">This post has few important OID’s used for monitoring in common:</span></strong></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> sysDescr</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.2.1.1.1</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Output / Value (OctetString):</strong> Ruckus Wireless, Inc. Stacking System ICX7750-48F, IronWare Version 08.0.90kT201 Compiled on Feb 22 2021 at 23:56:00 labeled as SWS08090k</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> sysObjectID</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.2.1.1.2</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Output / Value (OID):</strong> snFastIronStackICX7750Switch</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> sysUpTime</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.2.1.1.3</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Output / Value (TimeTicks):</strong> 2418 hours 16 minutes 35 seconds (870579500)</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> sysName</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.2.1.1.5</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Output / Value (OctetString):</strong> Superman1</span></p><p>&nbsp;</p><p><span style="font-size: medium;"><strong>Memory : </strong></span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snAgGblDynMemUtil</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.2.1.53</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Output / Value (Gauge):</strong> 14</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snAgGblDynMemTotal</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.2.1.54</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Output / Value (Gauge):</strong> 3853291520</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snAgGblDynMemFree</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.2.1.55</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Output / Value (Gauge):</strong> 3246243840</span></p><p><strong>&nbsp;</strong></p><p><span style="font-size: medium;"><strong>Hardware : </strong></span></p><p><span style="font-size: medium;"><strong>CPU : </strong></span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snAgGblCpuUtil1SecAvg</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.2.1.50</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Output/ Value (Gauge):</strong> 1</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snAgGblCpuUtil5SecAvg</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.2.1.51</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Output/ Value (Gauge):</strong> 1</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snAgGblCpuUtil1MinAvg</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.2.1.52</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Output/ Value (Gauge):</strong> 1</span></p><p>&nbsp;</p><p><span style="font-size: medium;"><strong>Power supply : </strong></span></p><p><span style="font-size: medium;"><strong>Without Stacking </strong></span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snChasPwrSupplyIndex</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID&nbsp; :</strong>&nbsp;1.3.6.1.4.1.1991.1.1.1.2.1.1.1</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Output / Value (Integer):</strong> 1</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snChasPwrSupplyDescription</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.1.2.1.1.2</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Output / Value (OctetString):</strong> Power supply 1 (AC - Regular) present, status ok</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Model Number:&nbsp; BRCD-10G</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Serial Number: CUB2V34L06M</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Firmware Ver: 2.1</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snChasPwrSupplyOperStatus</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.1.2.1.1.3</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>output / Value (Integer):</strong> normal (2)</span></p><p>&nbsp;</p><p><span style="font-size: medium;"><strong>With Stacking : </strong></span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snChasPwrSupply2Unit</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.1.2.2.1.1</span></p><p><strong><span style="font-size: small; font-family: courier new,courier;">Output :</span></strong></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasPwrSupply2Unit.1.1; Value (Integer): 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasPwrSupply2Unit.2.1; Value (Integer): 2</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasPwrSupply2Unit.3.1; Value (Integer): 3</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snChasPwrSupply2Index</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.1.2.2.1.2</span></p><p><strong><span style="font-size: small; font-family: courier new,courier;">Output :</span></strong></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasPwrSupply2Index.1.1; Value (Integer): 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasPwrSupply2Index.2.1; Value (Integer): 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasPwrSupply2Index.3.1; Value (Integer): 1</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snChasPwrSupply2Description</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.1.2.2.1.3</span></p><p><strong><span style="font-size: small; font-family: courier new,courier;">Output :</span></strong></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasPwrSupply2Description.1.1; Value (OctetString): Power supply 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasPwrSupply2Description.2.1; Value (OctetString): Power supply 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasPwrSupply2Description.3.1; Value (OctetString): Power supply 1</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snChasPwrSupply2OperStatus</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.1.2.2.1.4</span></p><p><strong><span style="font-size: small; font-family: courier new,courier;">Output :</span></strong></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasPwrSupply2OperStatus.1.1; Value (Integer): normal (2)</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasPwrSupply2OperStatus.2.1; Value (Integer): normal (2)</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasPwrSupply2OperStatus.3.1; Value (Integer): normal (2)</span></p><p>&nbsp;</p><p><span style="font-size: medium;"><strong>Fan </strong></span></p><p><span style="font-size: medium;"><strong>Without stacking : </strong></span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snChasFanIndex</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.1.3.1.1.1</span></p><p><strong><span style="font-size: small; font-family: courier new,courier;">Output :</span></strong></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFanIndex.1; Value (Integer): 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFanIndex.2; Value (Integer): 2</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFanIndex.3; Value (Integer): 3</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFanIndex.4; Value (Integer): 4</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snChasFanDescription</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.1.3.1.1.2</span></p><p><strong><span style="font-size: small; font-family: courier new,courier;">Output :</span></strong></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFanDescription.1; Value (OctetString): Fan 1 (from left when facing back side)</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFanDescription.2; Value (OctetString): Fan 2 (from left when facing back side)</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFanDescription.3; Value (OctetString): Fan 3 (from left when facing back side)</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFanDescription.4; Value (OctetString): Fan 4 (from left when facing back side)</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snChasFanOperStatus</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.1.3.1.1.3</span></p><p><strong><span style="font-size: small; font-family: courier new,courier;">Output :</span></strong></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFanOperStatus.1; Value (Integer): normal (2)</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFanOperStatus.2; Value (Integer): normal (2)</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFanOperStatus.3; Value (Integer): normal (2)</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFanOperStatus.4; Value (Integer): normal (2)</span></p><p>&nbsp;</p><p><span style="font-size: medium;"><strong>With stacking </strong></span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>Name :</strong> snChasFan2Unit</span></p><p><span style="font-size: small; font-family: courier new,courier;"><strong>OID :</strong> 1.3.6.1.4.1.1991.1.1.1.3.2.1.1</span></p><p><strong><span style="font-size: small; font-family: courier new,courier;">Output :</span></strong></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFan2Unit.1.1; Value (Integer): 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFan2Unit.1.2; Value (Integer): 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFan2Unit.1.3; Value (Integer): 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFan2Unit.1.4; Value (Integer): 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFan2Unit.2.1; Value (Integer): 2</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFan2Unit.2.2; Value (Integer): 2</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFan2Unit.2.3; Value (Integer): 2</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFan2Unit.2.4; Value (Integer): 2</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFan2Unit.3.1; Value (Integer): 3</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFan2Unit.3.2; Value (Integer): 3</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFan2Unit.3.3; Value (Integer): 3</span></p><p><span style="font-size: small; font-family: courier new,courier;">Name/OID: snChasFan2Unit.3.4; Value (Integer): 3</span></p>]]>
        </description>
    </item>
    <item>
        <title>Username shows “AccountDPSK-xxxxxxxx” when using a DPSK in SZ/RC/ZD</title>
        <link>https://community.ruckuswireless.com/discussion/56658/username-shows-accountdpsk-xxxxxxxx-when-using-a-dpsk-in-sz-rc-zd</link>
        <pubDate>Wed, 12 Apr 2023 08:54:18 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Vigneshwar</dc:creator>
        <guid isPermaLink="false">56658@/discussions</guid>
        <description><![CDATA[<p>Hi Team,</p><p>When a user goes through enrolment and gets a DPSK. When they then use that DPSK each device shows up as AccountDPSK-xxxxxx for the username:</p><p>Since the user went through an enrollment, CloudPath knows the username and we can use a POLICY to return the username attribute.</p><ol><li><strong>Create a RADIUS Attribute Group that associates the RADIUS value “User-name” to the variable ${USERNAME}&nbsp;<em>make sure to modify the assignment behavior to add or replace</em>:<span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/5759i1B677E25CCE43C73/image.png" role="button" title="Vigneshwar_0-1681289128539.png" alt="Vigneshwar_0-1681289128539.png" /></span></strong></li><li><strong>Create a POLICY that returns that attribute:</strong><strong><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/5760iD23129C07CFE8802/image.png" role="button" title="Vigneshwar_1-1681289128542.png" alt="Vigneshwar_1-1681289128542.png" /></span></strong></li><li><strong><strong>Apply that POLICY to the DPSK pool:</strong></strong><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/5766iAF6E7F7C85DC118B/image.png" role="button" title="Vigneshwar_5-1681289574425.png" alt="Vigneshwar_5-1681289574425.png" /></span><p>&nbsp;</p></li></ol><p>During the next auth of that device, the returned value of the variable ${USERNAME} will be visible in the controller:</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/5761i74DF1AA7D3C03E63/image.png" role="button" title="Vigneshwar_3-1681289128544.png" alt="Vigneshwar_3-1681289128544.png" /></span></p><p>Thanks.</p><p><strong><a href="https://tektalk.commscope.com/uploads/default/original/3X/d/b/db0da6bd575b88eeac63fd0f4d4e65bf14071037.png" target="_blank" rel="noopener noreferrer nofollow">&nbsp;</a></strong></p><p>&nbsp;</p><p>&nbsp;</p>]]>
        </description>
    </item>
    <item>
        <title>IP Address Assignment in 8200 Devices</title>
        <link>https://community.ruckuswireless.com/discussion/77961/ip-address-assignment-in-8200-devices</link>
        <pubDate>Thu, 11 Apr 2024 11:30:15 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Mayank</dc:creator>
        <guid isPermaLink="false">77961@/discussions</guid>
        <description><![CDATA[<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; :: IP ADDRESS ASSIGNMENT IN 8200 DEVICES::</p><p><br />In 8200, The Switching image was deprecated with 10.0 and each platform will only use one image starting with 10.0.</p><p>ALL the L3 image support L2 features starting with 10.0, Only routing image are available for all supported models.<br />Switching features are still available in the routing image.</p><p>&gt;The 8200 by design doesn't support l2 image so there is no ip default-gateway command.</p><p>&gt;Instead we need to specify the route to forward the traffic to an external subnet. We can either use static routes, default routes or a routing protocol.</p><p>&gt;If you want to use the ICX8200 switch as a L2 device follow the below steps:<br /><br />You just need to add a default route to the device, And then add the VLANs you want. The ICX8200 model can only run L3 firmware images. That's&nbsp;why we need to add a default route for it to start behaving as an L2 switch, where it is only passing VLAN traffic in and out. We&nbsp;also need to identify the VLAN where this default route communication goes through. And&nbsp;then create a virtual interface and assign the IP that will be used for management and for communication with the default gateway.</p><p><br />Example:</p><p>-Create the virtual interface and assign the IP form MGMT and default route:</p><p>ICX8200-switch#conf t<br />ICX8200-switch(config)#vlan 10<br />ICX8200-switch(config-vlan10)#interface ve 10<br />ICX8200-switch(config-if-ve10)#ip address 10.10.10.2/24</p><p>Here's the command for the default route:</p><p>ICX8200-switch#conf t<br />ICX8200-switch(config)#ip route 0.0.0.0/0 10.10.10.1 (IP address of your ICX7850 router, which is the default gateway for the management vlan)</p><p>ICX8200 with the code 10.00, this code only came in routing, so you can configure the IP address under a VE, loopback or port.</p><p><br />Beginning with the 09.0.00 release, when a VLAN is configured, a virtual routing interface is statically mapped to the VLAN ID. However,<br />only when you issue the interface ve-num command does the virtual interface get created.</p><p><br />Please refer to the below link of the L3 Routing configuration Guide under Subheading "Assigning an IPv4 Address to an Ethernet Port"</p><p><a href="https://support.ruckuswireless.com/documents/4466-fastiron-10-0-10-ga-layer-3-routing-configuration-guide" target="_blank" rel="noopener noreferrer nofollow">https://support.ruckuswireless.com/documents/4466-fastiron-10-0-10-ga-layer-3-routing-configuration-guide</a></p><p><br />Please refer to the below link of the L3 Routing Configuration Guide under Subheading "Assigning an IP address to a virtual interface"</p><p><a href="https://support.ruckuswireless.com/documents/4466-fastiron-10-0-10-ga-layer-3-routing-configuration-guide" target="_blank" rel="noopener noreferrer nofollow">https://support.ruckuswireless.com/documents/4466-fastiron-10-0-10-ga-layer-3-routing-configuration-guide</a></p><p><br />Please refer to the below link of the L3 Routing Configuration Guide under Subheading "Assigning an IP address to a loopback interface"</p><p><a href="https://support.ruckuswireless.com/documents/4466-fastiron-10-0-10-ga-layer-3-routing-configuration-guide" target="_blank" rel="noopener noreferrer nofollow">https://support.ruckuswireless.com/documents/4466-fastiron-10-0-10-ga-layer-3-routing-configuration-guide</a></p>]]>
        </description>
    </item>
    <item>
        <title>Setting Up Port Monitoring on an ICX Switch</title>
        <link>https://community.ruckuswireless.com/discussion/76328/setting-up-port-monitoring-on-an-icx-switch</link>
        <pubDate>Tue, 27 Feb 2024 17:27:06 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Vásquez_Fer</dc:creator>
        <guid isPermaLink="false">76328@/discussions</guid>
        <description><![CDATA[<p>Overview of Port Mirroring and Monitoring</p>
<p>Port mirroring is an effective network traffic monitoring technique. It involves duplicating each packet entering or leaving a specific port on a network switch and sending this copy to another port for analysis. This technique is particularly useful for diagnostic and debugging purposes, as well as for enhancing network security.</p>
<p>To set up port mirroring, you designate a 'monitor port' from which packets are copied, and a 'mirror port' that receives these copies. Both incoming and outgoing packets from the monitor port are sent to the mirror port. A network analysis tool, like Wireshark, can then be connected to the mirror port to capture and analyze the traffic. This process allows for detailed examination of data packets without interfering with the normal operation of the network.</p>
<pre>Standalone(config)# mirror-port ethernet x/x/x - This command designates the connection to the analyzer tool.
Standalone(config)# interface ethernet x/x/x - This command selects the specific interface from which data capture is desired.
Standalone(config-if-e1000-x/x/x)# monitor ethernet x/x/x both - This command establishes the monitoring of the specified interface and directs the traffic to the analyzer tool.
</pre>
<p>Verification of Configuration:</p>
<p>To verify the configuration, use the "<strong>show mirror</strong>" command. This will display the current mirror configuration, confirming the setup for traffic capture and analysis.</p>
<p>Here is an example using the given topology. Our objective is to capture traffic from port 1/2/1 and redirect it to an analyzer tool connected to port 1/1/1, where Wireshark is installed.</p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/10890i7900E26CCBD889C2/image.png" role="button" title="Topology Wireshark.PNG" alt="Topology Wireshark.PNG" /></span></p>
<pre><br />Device(config)#mirror-port ethernet 1/1/1
Device(config)#interface ethernet 1/2/1
Device(config-if-e25000-1/2/1)#monitor ethernet 1/1/1 both

Device(config-if-e25000-1/2/1)#show mirror
Mirror port 1/1/1
  Input monitoring      : (U1/M2)   1
  Output monitoring     : (U1/M2)   1
</pre>
<p><span>For additional details, please refer to our guides :</span></p>
<p>Official Guide Port Mirroring and Monitoring Configuration:</p>
<p><a href="https://docs.commscope.com/bundle/fastiron-10010-monitoringguide/page/GUID-7165A5D9-141A-4F23-9965-2940D12A672E.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-10010-monitoringguide/page/GUID-7165A5D9-141A-4F23-9965-2940D12A672E.html</a></p>
<p>Official Guide Configuration Notes for Port Mirroring and Monitoring:</p>
<p><a href="https://docs.commscope.com/bundle/fastiron-10010-monitoringguide/page/GUID-8CDDEB0F-08D9-41A9-9681-B3C05D315BD7.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-10010-monitoringguide/page/GUID-8CDDEB0F-08D9-41A9-9681-B3C05D315BD7.html</a></p>
<p>Monitoring an Individual LAG Port:</p>
<p><a href="https://docs.commscope.com/bundle/fastiron-08095-monitoringguide/page/GUID-35140D88-386B-438B-A700-59AFDE2297B7.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-08095-monitoringguide/page/GUID-35140D88-386B-438B-A700-59AFDE2297B7.html</a></p>
<p>Best Regards&nbsp;</p>
<p>Fernando Vasquez&nbsp;</p>]]>
        </description>
    </item>
    <item>
        <title>How to set privilege mode access on the ICX switches version 9010 and 10.0.00</title>
        <link>https://community.ruckuswireless.com/discussion/73642/how-to-set-privilege-mode-access-on-the-icx-switches-version-9010-and-10-0-00</link>
        <pubDate>Tue, 26 Dec 2023 15:21:16 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Chandini</dc:creator>
        <guid isPermaLink="false">73642@/discussions</guid>
        <description><![CDATA[<p><strong>Issue: </strong></p><p>Command <span style="font-size: small; font-family: courier new,courier;">“aaa authentication login privilege-mode” </span>was removed in 9010 and 10.0.00 versions.</p><p>This command was missing in certain 9010 and 10.0.0 versions. Below is the example the output looked like.</p><p><span style="font-size: small; font-family: courier new,courier;">ICX7850-48FS Router(config)#aaa authentication login</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp; default&nbsp;&nbsp; The default authentication list</span></p><p>In the above output it is noticed that privilege mode option is missing.</p><p><strong>Solution:</strong></p><p>This command was added back in version 9010h and below is a example from lab output where 7650 switch is running on 9010h version</p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650_test(config)#aaa authentication login</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp; default&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; The default authentication list</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;<span style="color: #0000FF;"> privilege-mode&nbsp;&nbsp; Take user to privilege mode after successful authentication</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650_test(config)#aaa authentication login privilege-mode&nbsp;</span></p><p>For 8200 switches this command was added back in version 10.0.10b and above and below is an example</p><p><span style="font-size: small; font-family: courier new,courier;">ICX8200_test(config)#aaa authentication login</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp; default&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; The default authentication list</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;<span style="color: #0000FF;"> privilege-mode&nbsp;&nbsp; Take user to privilege mode after successful authentication</span></span></p><p>If you are looking to enable privilege mode on the switch and switches are on 9010 and 10.0.00 versions then they would need a upgrade to 9010h and above or 10.0.10b and above.</p>]]>
        </description>
    </item>
    <item>
        <title>How to disable weak SSH chipper and CBC on the ICX switches</title>
        <link>https://community.ruckuswireless.com/discussion/66825/how-to-disable-weak-ssh-chipper-and-cbc-on-the-icx-switches</link>
        <pubDate>Tue, 29 Aug 2023 17:54:56 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Chandini</dc:creator>
        <guid isPermaLink="false">66825@/discussions</guid>
        <description><![CDATA[<p>Here the switch model used is 7150 series and firmware running are 8095c.</p><p>Run <span style="font-size: small; font-family: courier new,courier;">“show ip ssh config” </span>to view all SSH details.</p><p><span style="font-size: small; font-family: courier new,courier;">Device#show ip ssh config</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH server&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Enabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH port&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : tcp\22</span></p><p><span style="font-size: small; font-family: courier new,courier;">Host Key&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : RSA 2048</span></p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Encryption&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : aes256-cbc, aes192-cbc, aes128-cbc, aes256-ctr, aes192-ctr, aes128-ctr, 3des-cbc</span></p><p><span style="font-size: small; font-family: courier new,courier;">Permit empty password&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : No</span></p><p><span style="font-size: small; font-family: courier new,courier;">Authentication methods&nbsp;&nbsp;&nbsp;&nbsp; : Password, Public-key, Interactive</span></p><p><span style="font-size: small; font-family: courier new,courier;">Authentication retries&nbsp;&nbsp;&nbsp;&nbsp; : 3</span></p><p><span style="font-size: small; font-family: courier new,courier;">Login timeout (seconds)&nbsp;&nbsp;&nbsp; : 120</span></p><p><span style="font-size: small; font-family: courier new,courier;">Idle timeout (minutes)&nbsp;&nbsp;&nbsp;&nbsp; : 5</span></p><p><span style="font-size: small; font-family: courier new,courier;">SCP&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Enabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH IPv4 clients&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : All</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH IPv6 clients&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : All</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH IPv4 access-group&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH IPv6 access-group&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH Client Keys&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></p><p><span style="font-size: small; font-family: courier new,courier;">Client Rekey&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 0 Minute, 0 KB</span></p><p><span style="font-size: small; font-family: courier new,courier;">Server Rekey&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 0 Minute, 0 KB</span></p><p>&nbsp;</p><p><strong>To disable weak SSH cipher:</strong></p><p>The diffie-hellman-group1-sha1 key exchange method is a weaker algorithm and can be disabled using the <span style="font-size: small; font-family: courier new,courier;">“no ip ssh key-exchange-method dh-group1-sha1”</span> command.</p><p><strong>Command:</strong></p><ul><li><span style="font-size: small; font-family: courier new,courier;">Device(config)#no ip ssh key-exchange-method dh-group1-sha1</span></li></ul><p><strong>To disable CBC encryption mode:</strong></p><p><strong>Command:</strong></p><ul><li><span style="font-size: small; font-family: courier new,courier;">Device(config)# ip ssh encryption disable-aes-cbc</span></li></ul><p><strong>Output after disabling CBC encryption mode:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7150-24F Switch(config)#show ip ssh config</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH server&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Enabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH port&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : tcp\22</span></p><p><span style="font-size: small; font-family: courier new,courier;">Host Key&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : RSA 2048</span></p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Encryption&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : aes256-ctr, aes192-ctr, aes128-ctr</span></p><p><span style="font-size: small; font-family: courier new,courier;">Permit empty password&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : No</span></p><p><span style="font-size: small; font-family: courier new,courier;">Authentication methods&nbsp;&nbsp;&nbsp;&nbsp; : Password, Public-key, Interactive</span></p><p><span style="font-size: small; font-family: courier new,courier;">Authentication retries&nbsp;&nbsp;&nbsp;&nbsp; : 3</span></p><p><span style="font-size: small; font-family: courier new,courier;">Login timeout (seconds)&nbsp;&nbsp;&nbsp; : 120</span></p><p><span style="font-size: small; font-family: courier new,courier;">Idle timeout (minutes)&nbsp;&nbsp;&nbsp;&nbsp; : 5</span></p><p><span style="font-size: small; font-family: courier new,courier;">SCP&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Enabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH IPv4 clients&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : All</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH IPv6 clients&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : All</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH IPv4 access-group&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH IPv6 access-group&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></p><p><span style="font-size: small; font-family: courier new,courier;">SSH Client Keys&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :</span></p><p><span style="font-size: small; font-family: courier new,courier;">Client Rekey&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 0 Minute, 0 KB</span></p><p><span style="font-size: small; font-family: courier new,courier;">Server Rekey&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 0 Minute, 0 KB</span></p><p>&nbsp;</p><p><strong>Reference links below:</strong></p><p><strong>Enabling SSH </strong></p><ul><li><span style="font-size: small; font-family: courier new,courier;"><a href="https://docs.commscope.com/bundle/fastiron-09010-securityguide/page/GUID-8AAB14D8-A662-493A-8504-F7457B9BED02_1.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-09010-securityguide/page/GUID-8AAB14D8-A662-493A-8504-F7457B9BED02_1.html</a></span></li></ul><p><strong>Viewing SSH </strong></p><ul><li><span style="font-size: small; font-family: courier new,courier;"><a href="https://docs.commscope.com/bundle/fastiron-09010-securityguide/page/GUID-CA1D6AD1-861E-49B3-8CC3-2C14BBA51136.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-09010-securityguide/page/GUID-CA1D6AD1-861E-49B3-8CC3-2C14BBA51136.html</a></span></li></ul><p><strong>Disabling telnet Access </strong></p><ul><li><span style="font-size: small; font-family: courier new,courier;"><a href="https://docs.commscope.com/bundle/fastiron-08030-securityguide/page/GUID-0352E51C-3BF4-4F44-9853-466821A8E83E.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-08030-securityguide/page/GUID-0352E51C-3BF4-4F44-9853-466821A8E83E.html</a></span></li></ul><p><strong>Disable CBC </strong></p><ul><li><span style="font-size: small; font-family: courier new,courier;"><a href="https://docs.commscope.com/bundle/fastiron-08030-adminguide/page/GUID-FFF3988D-6510-4D9E-B134-D484DB6BFE7C.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-08030-adminguide/page/GUID-FFF3988D-6510-4D9E-B134-D484DB6BFE7C.html</a></span></li></ul><p><strong>Disable weak SSH cipher:</strong></p><ul><li><span style="font-size: small; font-family: courier new,courier;"><a href="https://docs.commscope.com/bundle/fastiron-08090-securityguide/page/GUID-E6D5CCBB-B8BA-4818-B589-8FA464F2D4B6.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-08090-securityguide/page/GUID-E6D5CCBB-B8BA-4818-B589-8FA464F2D4B6.html</a></span></li></ul><p>&nbsp;</p>]]>
        </description>
    </item>
    <item>
        <title>QinQ configuration guide in ICX switches using tag profile</title>
        <link>https://community.ruckuswireless.com/discussion/80415/qinq-configuration-guide-in-icx-switches-using-tag-profile</link>
        <pubDate>Tue, 28 May 2024 18:02:27 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Chandini</dc:creator>
        <guid isPermaLink="false">80415@/discussions</guid>
        <description><![CDATA[<p><strong>Summary:</strong></p><p>This Article explains about how to setup QinQ in ICX switches. QinQ setup in used in networks like service provider, ISP’s etc. to help mange the network easily and provide more sublets independent of each other.</p><p><strong>Question:</strong></p><p>How to configure QinQ using tag profile in ICX switches</p><p><strong>Customer Environment:</strong></p><p>Customer environment would be mostly a service provider network.</p><p><strong>Topology:</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11673i86436AFC5C2816DE/image.png" width="618" height="237" role="button" title="Chandini_1-1716918439269.png" alt="Chandini_1-1716918439269.png" /></span></p><p><strong>Note:</strong></p><ul><li>Service provider switch model is 7550-24 port model.</li><li>Client switch model is a 7150-24 port model.</li><li>Firmware version running is SPR8095m.</li></ul><p><strong>Configuration:</strong></p><p><strong>Client switch 1 Configuration:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">!</span><br /><span style="font-size: small; font-family: courier new,courier;">vlan 100 by port</span><br /><span style="font-size: small; font-family: courier new,courier;">tagged ethe 1/1/2</span><br /><span style="font-size: small; font-family: courier new,courier;">router-interface ve 100</span><br /><span style="font-size: small; font-family: courier new,courier;">spanning-tree 802-1w</span><br /><span style="font-size: small; font-family: courier new,courier;">!</span></p><p><span style="font-size: small; font-family: courier new,courier;">!</span><br /><span style="font-size: small; font-family: courier new,courier;">interface ve 100</span><br /><span style="font-size: small; font-family: courier new,courier;">ip address 100.0.0.2 255.255.255.0</span><br /><span style="font-size: small; font-family: courier new,courier;">!</span></p><p><strong>Client switch 2 Configuration:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">!</span><br /><span style="font-size: small; font-family: courier new,courier;">vlan 100 by port</span><br /><span style="font-size: small; font-family: courier new,courier;">tagged ethe 1/1/1</span><br /><span style="font-size: small; font-family: courier new,courier;">router-interface ve 100</span><br /><span style="font-size: small; font-family: courier new,courier;">spanning-tree 802-1w</span><br /><span style="font-size: small; font-family: courier new,courier;">spanning-tree 802-1w priority 1</span><br /><span style="font-size: small; font-family: courier new,courier;">!</span></p><p><span style="font-size: small; font-family: courier new,courier;">!</span><br /><span style="font-size: small; font-family: courier new,courier;">interface ve 100</span><br /><span style="font-size: small; font-family: courier new,courier;">ip address 100.0.0.1 255.255.255.0</span><br /><span style="font-size: small; font-family: courier new,courier;">!</span></p><p><strong>Service provider switch 1 Configuration:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">!</span><br /><span style="font-size: small; font-family: courier new,courier;">vlan 1000 by port</span><br /><span style="font-size: small; font-family: courier new,courier;">tagged ethe 1/1/3</span><br /><span style="font-size: small; font-family: courier new,courier;">untagged ethe 1/1/2</span><br /><span style="font-size: small; font-family: courier new,courier;">!</span><br /><span style="font-size: small; font-family: courier new,courier;">tag-profile 9100</span><br /><span style="font-size: small; font-family: courier new,courier;">!</span><br /><span style="font-size: small; font-family: courier new,courier;">!</span><br /><span style="font-size: small; font-family: courier new,courier;">interface ethernet 1/1/2</span><br /><span style="font-size: small; font-family: courier new,courier;">tag-profile enable</span><br /><span style="font-size: small; font-family: courier new,courier;">l2protocol dot1q-tunnel stp</span><br /><span style="font-size: small; font-family: courier new,courier;">l2protocol dot1q-tunnel lacp</span><br /><span style="font-size: small; font-family: courier new,courier;">l2protocol dot1q-tunnel cdp</span><br /><span style="font-size: small; font-family: courier new,courier;">l2protocol dot1q-tunnel lldp</span><br /><span style="font-size: small; font-family: courier new,courier;">!</span><strong><br /></strong></p><p><strong>Service provider switch 2 Configuration:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">vlan 1000 by port</span><br /><span style="font-size: small; font-family: courier new,courier;">tagged ethe 1/1/3</span><br /><span style="font-size: small; font-family: courier new,courier;">untagged ethe 1/1/1</span><br /><span style="font-size: small; font-family: courier new,courier;">!</span><br /><span style="font-size: small; font-family: courier new,courier;">tag-profile 9100</span><br /><span style="font-size: small; font-family: courier new,courier;">!</span><br /><span style="font-size: small; font-family: courier new,courier;">interface ethernet 1/1/1</span><br /><span style="font-size: small; font-family: courier new,courier;">tag-profile enable</span><br /><span style="font-size: small; font-family: courier new,courier;">l2protocol dot1q-tunnel stp</span><br /><span style="font-size: small; font-family: courier new,courier;">l2protocol dot1q-tunnel lacp</span><br /><span style="font-size: small; font-family: courier new,courier;">l2protocol dot1q-tunnel cdp</span><br /><span style="font-size: small; font-family: courier new,courier;">l2protocol dot1q-tunnel lldp</span><br /><span style="font-size: small; font-family: courier new,courier;">!</span><strong><br /></strong></p><p><strong>Outputs: </strong></p><p><strong>Client Switch 1:</strong></p><p><strong>LLDP details:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">client_sw1#show lldp ne</span><br /><span style="font-size: small; font-family: courier new,courier;">Lcl Port Chassis ID Port ID Port Description System Name</span><br /><span style="font-size: small; font-family: courier new,courier;">1/1/2 28b3.713f.bcec 28b3.713f.bced 2.5GigabitEthernet1/1/2 service_sw1</span><br /><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">1/1/2 609c.9ffe.44d0 609c.9ffe.44d0 2.5GigabitEthernet1/1/1 client_sw2</span><br /><span style="font-size: small; font-family: courier new,courier;">client_sw1#</span><strong><br /></strong></p><p><strong>Ping details:</strong><br /><span style="font-size: small; font-family: courier new,courier;">client_sw1#show ip int</span><br /><span style="font-size: small; font-family: courier new,courier;">Interface IP-Address OK? Method Status Protocol VRF</span><br /><span style="font-size: small; font-family: courier new,courier;">Eth mgmt1 10.176.193.210 YES manual up up default-vrf</span><br /><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Ve 100 100.0.0.2 YES manual up up default-vrf</span><br /><span style="font-size: small; font-family: courier new,courier;">client_sw1#</span></p><p><span style="font-size: small; font-family: courier new,courier;">client_sw1#ping 100.0.0.1</span><br /><span style="font-size: small; font-family: courier new,courier;">Sending 1, 16-byte ICMP Echo to 100.0.0.1, timeout 5000 msec, TTL 64</span><br /><span style="font-size: small; font-family: courier new,courier;">Type Control-c to abort</span><br /><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Reply from 100.0.0.1 : bytes=16 time=3ms TTL=64</span><br /><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Success rate is 100 percent (1/1), round-trip min/avg/max=3/3/3 ms.</span></p><p><span style="font-size: small; font-family: courier new,courier;">client_sw1#traceroute 100.0.0.1</span></p><p><span style="font-size: small; font-family: courier new,courier;">Type Control-c to abort</span><br /><span style="font-size: small; font-family: courier new,courier;">Tracing the route to IP node 100.0.0.1(100.0.0.1) from 1 to 30 hops</span></p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">1 1 ms 1 ms 5 ms 100.0.0.1</span></p><p><strong>STP details:</strong><br /><span style="font-size: small; font-family: courier new,courier;">client_sw1#show 802-1w</span></p><p><span style="font-size: small; font-family: courier new,courier;">IEEE 802-1w is not configured on port-vlan 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">--- VLAN 100 [ STP Instance owned by VLAN 100 ] ----------------------------</span></p><p><span style="font-size: small; font-family: courier new,courier;">Bridge IEEE 802.1W Parameters:</span></p><p><span style="font-size: small; font-family: courier new,courier;">Bridge Bridge Bridge Bridge Force tx</span><br /><span style="font-size: small; font-family: courier new,courier;">Identifier MaxAge Hello FwdDly Version Hold</span><br /><span style="font-size: small; font-family: courier new,courier;">hex sec sec sec cnt</span><br /><span style="font-size: small; font-family: courier new,courier;">8000609c9fe853c0 20 2 15 Default 3</span></p><p><span style="font-size: small; font-family: courier new,courier;">RootBridge RootPath DesignatedBri- Root Max Fwd Hel</span><br /><span style="font-size: small; font-family: courier new,courier;">Identifier Cost dge Identifier Port Age Dly lo</span><br /><span style="font-size: small; font-family: courier new,courier;">hex hex sec sec sec</span><br /><span style="font-size: small; font-family: courier new,courier;">0001609c9ffe44d0 20000 0001609c9ffe44d0 1/1/2 20 15 2</span></p><p><span style="font-size: small; font-family: courier new,courier;">Port IEEE 802.1W Parameters:</span></p><p><span style="font-size: small; font-family: courier new,courier;">&lt;--- Config Params --&gt;&lt;-------------- Current state -----------------&gt;</span><br /><span style="font-size: small; font-family: courier new,courier;">Port Pri PortPath P2P Edge Role State Designa- Designated</span><br /><span style="font-size: small; font-family: courier new,courier;">Num Cost Mac Port ted cost bridge</span><br /><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">1/1/2 128 20000 F F ROOT FORWARDING 0 0001609c9ffe44d0</span><br /><span style="font-size: small; font-family: courier new,courier;">client_sw1#</span></p><p><strong>Client switch 2:</strong><br /><strong>LLDP details:</strong><br /><span style="font-size: small; font-family: courier new,courier;">client_sw2#show lldp ne</span><br /><span style="font-size: small; font-family: courier new,courier;">Lcl Port Chassis ID Port ID Port Description System Name</span><br /><span style="font-size: small; font-family: courier new,courier;">1/1/1 28b3.7129.9a4e 28b3.7129.9a4e GigabitEthernet1/1/1 service_sw2</span><br /><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">1/1/1 609c.9fe8.53c0 609c.9fe8.53c1 GigabitEthernet1/1/2 client_sw1</span><br /><span style="font-size: small; font-family: courier new,courier;">client_sw2#</span></p><p><strong>Ping details:</strong><br /><span style="font-size: small; font-family: courier new,courier;">client_sw2#show ip int</span><br /><span style="font-size: small; font-family: courier new,courier;">Interface IP-Address OK? Method Status Protocol VRF</span><br /><span style="font-size: small; font-family: courier new,courier;">Eth mgmt1 10.176.194.211 YES NVRAM up up default-vrf</span><br /><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Ve 100 100.0.0.1 YES manual up up default-vrf</span><br /><span style="font-size: small; font-family: courier new,courier;">client_sw2#</span></p><p><span style="font-size: small; font-family: courier new,courier;">client_sw2#ping 100.0.0.2</span><br /><span style="font-size: small; font-family: courier new,courier;">Sending 1, 16-byte ICMP Echo to 100.0.0.2, timeout 5000 msec, TTL 64</span><br /><span style="font-size: small; font-family: courier new,courier;">Type Control-c to abort</span><br /><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Reply from 100.0.0.2 : bytes=16 time=1ms TTL=64</span><br /><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Success rate is 100 percent (1/1), round-trip min/avg/max=1/1/1 ms.</span></p><p><span style="font-size: small; font-family: courier new,courier;">client_sw2#traceroute 100.0.0.2</span></p><p><span style="font-size: small; font-family: courier new,courier;">Type Control-c to abort</span><br /><span style="font-size: small; font-family: courier new,courier;">Tracing the route to IP node 100.0.0.2(100.0.0.2) from 1 to 30 hops</span></p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">1 1 ms 1 ms 1 ms 100.0.0.2</span><br /><span style="font-size: small; font-family: courier new,courier;">client_sw2#</span></p><p><strong>STP details:</strong><br /><span style="font-size: small; font-family: courier new,courier;">client_sw2#show 802-1w</span></p><p><span style="font-size: small; font-family: courier new,courier;">IEEE 802-1w is not configured on port-vlan 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">--- VLAN 100 [ STP Instance owned by VLAN 100 ] ----------------------------</span></p><p><span style="font-size: small; font-family: courier new,courier;">Bridge IEEE 802.1W Parameters:</span></p><p><span style="font-size: small; font-family: courier new,courier;">Bridge Bridge Bridge Bridge Force tx</span><br /><span style="font-size: small; font-family: courier new,courier;">Identifier MaxAge Hello FwdDly Version Hold</span><br /><span style="font-size: small; font-family: courier new,courier;">hex sec sec sec cnt</span><br /><span style="font-size: small; font-family: courier new,courier;">0001609c9ffe44d0 20 2 15 Default 3</span></p><p><span style="font-size: small; font-family: courier new,courier;">RootBridge RootPath DesignatedBri- Root Max Fwd Hel</span><br /><span style="font-size: small; font-family: courier new,courier;">Identifier Cost dge Identifier Port Age Dly lo</span><br /><span style="font-size: small; font-family: courier new,courier;">hex hex sec sec sec</span><br /><span style="font-size: small; font-family: courier new,courier;">0001609c9ffe44d0 0 0001609c9ffe44d0 Root 20 15 2</span></p><p><span style="font-size: small; font-family: courier new,courier;">Port IEEE 802.1W Parameters:</span></p><p><span style="font-size: small; font-family: courier new,courier;">&lt;--- Config Params --&gt;&lt;-------------- Current state -----------------&gt;</span><br /><span style="font-size: small; font-family: courier new,courier;">Port Pri PortPath P2P Edge Role State Designa- Designated</span><br /><span style="font-size: small; font-family: courier new,courier;">Num Cost Mac Port ted cost bridge</span><br /><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">1/1/1 128 20000 F F DESIGNATED FORWARDING 0 0001609c9ffe44d0</span><br /><span style="font-size: small; font-family: courier new,courier;">client_sw2#</span></p>]]>
        </description>
    </item>
    <item>
        <title>SNMPv2 and SNMPv3 Traps configuration guide in ICX switches</title>
        <link>https://community.ruckuswireless.com/discussion/80411/snmpv2-and-snmpv3-traps-configuration-guide-in-icx-switches</link>
        <pubDate>Tue, 28 May 2024 17:45:04 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Chandini</dc:creator>
        <guid isPermaLink="false">80411@/discussions</guid>
        <description><![CDATA[<p><strong>Summary:</strong></p><p>This Article explains about how to setup SNMPv2 and SNMPv3 Traps in ICX switches. SNMP traps are used to trace Issues related to switches using monitoring tools. This article will help with configuration and tracing SNMP traps using captures.</p><p><strong>Question:</strong></p><p>How to configure and troubleshooting SNMPv2 and SNMPv3 Traps in ICX switches</p><p><strong>Customer Environment:</strong></p><p>Monitoring tools would be used to capture SNMPv2 and SNMPv3 traps. These monitoring tool could be for example SolarWinds , PRTG etc.</p><p><strong>SNMPv2 Configuration:</strong></p><p>This configuration applies on all versions for a ICX switches.</p><p><strong>Configuration:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">snmp-server community public rw</span><br /><span style="font-size: small; font-family: courier new,courier;">snmp-server host 10.177.89.241 version v2c public</span></p><p><strong>SNMPv2 trap troubleshooting: </strong>To troubleshoot and isolate if the polling and trap are working good use the Wireshark to run Packet capture in the uplink of the switch or on port which falls in path of traffic that helps lead the traffic to monitoring tool.</p><p><strong>SNMPv2 request from SNMP tool:</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11659i2B517471EB55E91B/image.png" width="656" height="278" role="button" title="Chandini_0-1716917529763.png" alt="Chandini_0-1716917529763.png" /></span></p><p><strong>SNMPv2 response from Switch:</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11660i529E8BD25E105251/image.png" width="659" height="275" role="button" title="Chandini_1-1716917606827.png" alt="Chandini_1-1716917606827.png" /></span></p><p><strong>SNMPv2 Trap Response from the switch:</strong></p><p><strong>Here port 1/1/23 is disabled and enabled to generate SNMPv2 trap:</strong></p><p><strong>Port disabled:</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11661iDF506057C679965C/image.png" width="649" height="274" role="button" title="Chandini_2-1716917637081.png" alt="Chandini_2-1716917637081.png" /></span></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11662i92ADF3FF4EB3ACA0/image.png" width="648" height="277" role="button" title="Chandini_3-1716917657898.png" alt="Chandini_3-1716917657898.png" /></span></p><p><strong>Port Enabled:</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11663iBC95087F12116AE3/image.png" width="651" height="279" role="button" title="Chandini_4-1716917690916.png" alt="Chandini_4-1716917690916.png" /></span></p><p><strong>SNMPv3 Configuration:</strong></p><p>This configuration applies on all versions for a ICX switches.</p><p><strong>Configuration:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">snmp-server enable ethernet 1/1/7</span><br /><span style="font-size: small; font-family: courier new,courier;">snmp-server host 10.177.89.241 version v3 auth test</span><br /><span style="font-size: small; font-family: courier new,courier;">snmp-server group admin v3 auth notify all read all write all</span><br /><span style="font-size: small; font-family: courier new,courier;">snmp-server user test admin v3 auth md5 testmd5123 priv des testdes123</span><strong><br /></strong></p><p><strong>SNMPv3 trap troubleshooting: </strong>To troubleshoot and isolate if the polling and trap are working good use the Wireshark to run Packet capture in the uplink of the switch or on port which falls in path of traffic that helps lead the traffic to monitoring tool.</p><p><strong>SNMPv3 request from SNMP tool:</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11664i6B61B3D27299B68A/image.png" width="652" height="282" role="button" title="Chandini_5-1716917752505.png" alt="Chandini_5-1716917752505.png" /></span></p><p><strong>SNMPv3 response from Switch:</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11665i4E1E9E7CCB243598/image.png" width="651" height="284" role="button" title="Chandini_6-1716917780185.png" alt="Chandini_6-1716917780185.png" /></span></p><p><strong>SNMPv3 Trap Response from the switch:</strong></p><p><strong>Here port 1/1/11 is disabled and enabled to generate SNMPv2 trap:</strong></p><p><strong>Port disabled:</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11666i965354171FF11E55/image.png" width="783" height="378" role="button" title="Chandini_7-1716917808978.png" alt="Chandini_7-1716917808978.png" /></span></p><p><strong>Port Enabled:</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11667i672FBFBAD53D4FF8/image.png" width="785" height="373" role="button" title="Chandini_8-1716917838967.png" alt="Chandini_8-1716917838967.png" /></span></p><p><strong>How to Decrypt SNMPv3 packets in Wireshark</strong></p><p><strong>SNMPv3 Configuration used:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">snmp-server enable ethernet 1/1/7</span><br /><span style="font-size: small; font-family: courier new,courier;">snmp-server host 10.177.89.241 version v3 auth test</span><br /><span style="font-size: small; font-family: courier new,courier;">snmp-server group admin v3 auth notify all read all write all</span><br /><span style="font-size: small; font-family: courier new,courier;">snmp-server user test admin v3 auth md5 testmd5123 priv des testdes123</span><strong><br /></strong></p><p><strong>When the SNMP packets are not decrypted it would look like below </strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11668i16E76A4F3349B8F4/image.png" width="650" height="117" role="button" title="Chandini_9-1716917910438.png" alt="Chandini_9-1716917910438.png" /></span></p><p><strong>Steps: </strong></p><ul><li>Go to <strong>Edit &gt; Preferences &gt; Protocols.</strong></li></ul><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11669i5C46A1C89561C1F4/image.png" width="643" height="241" role="button" title="Chandini_10-1716917953011.png" alt="Chandini_10-1716917953011.png" /></span></p><ul><li>In protocols go to <strong>“SNMP”</strong> -&gt; Edit <strong>“User Table”</strong></li></ul><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11670i1888580B8AD738EC/image.png" width="638" height="330" role="button" title="Chandini_11-1716917974945.png" alt="Chandini_11-1716917974945.png" /></span></p><ul><li>Click on<strong> “+”</strong> and add SNMPv3 details like Username, Authentication and privacy method and password</li></ul><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11671iBF339E8E8CBA2AF1/image.png" width="645" height="311" role="button" title="Chandini_12-1716918001419.png" alt="Chandini_12-1716918001419.png" /></span></p><p>Once the details are added the decoded SNMPv3 traps would look like below picture in Wireshark</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11672i3E8D57ABCCF07EF8/image.png" width="652" height="264" role="button" title="Chandini_13-1716918018822.png" alt="Chandini_13-1716918018822.png" /></span></p>]]>
        </description>
    </item>
    <item>
        <title>Cloudpath Integration with PingIdentity for SAML authentication</title>
        <link>https://community.ruckuswireless.com/discussion/80344/cloudpath-integration-with-pingidentity-for-saml-authentication</link>
        <pubDate>Mon, 27 May 2024 23:41:15 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Dilshad</dc:creator>
        <guid isPermaLink="false">80344@/discussions</guid>
        <description><![CDATA[<p>In this article, we will explain how to integrate Cloudpath with PingIdentity as the Identity Provider (IdP) for SAML Authentication.</p><p>1. Create the Workflow on Cloudpath and add the required Plug-Ins except the SAML authentication plug-in. We will add this plug-in after the configuration on PingIdentity (IdP) side and will publish it.</p><p>2. Copy the Workflow URL (Enrollment portal URL) from Advanced tab and keep it handy for use in later steps.</p><p>3. Go to PingIdentity Portal. Select Applications &gt; Click on + sign to create a new SAML application for Cloudpath.</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11638iE6C6822B9DF37593/image.png" role="button" title="Dilshad_Zafar_0-1716848169980.png" alt="Dilshad_Zafar_0-1716848169980.png" /></span></p><p>4. Enter the name of the Application, add description and choose SAML as the Application type and hit Save button.</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11639i9B1C54135DB9EACC/image.png" role="button" title="Dilshad_Zafar_1-1716848549883.png" alt="Dilshad_Zafar_1-1716848549883.png" /></span></p><p>5. At this point, it will give us three options for SAML Configuration. Use "Manually Enter" option to enter the ACS URL and the Entity ID of the Service Provider (SP) which in our case is the Cloudpath server. ACS URL and SP Entity Id configuration is given in the next step.</p><p>6. In the ACS URL option, paste the Workflow URL we copied in Step 2 and append it with&nbsp;<strong><em>/samlAssertionConsumer</em></strong>&nbsp;as shown in the following screenshot :-</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11640i74FD9B5052B8282F/image.png" role="button" title="Dilshad_Zafar_2-1716849235043.png" alt="Dilshad_Zafar_2-1716849235043.png" /></span></p><p>6. In the Entity Id option, enter the Cloudpath URL followed by <strong><em>/sp&nbsp;</em></strong>as shown in the screenshot below and hit Save.</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11641i4E913963E26FB696/image.png" role="button" title="Dilshad_Zafar_3-1716849693059.png" alt="Dilshad_Zafar_3-1716849693059.png" /></span></p><p>7. Next, Go to the Configuration tab of the SAML app and download the metadata. This will be used in Configuring the SAML based plug-in on Cloudpath Workflow.</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11642iB57A4EF9CE626997/image.png" role="button" title="Dilshad_Zafar_4-1716850151507.png" alt="Dilshad_Zafar_4-1716850151507.png" /></span></p><p>8.&nbsp;Now go to Cloudpath and edit the Workflow you created and add a plug-in “Authenticate to a Traditional authentication server” and choose SAML.</p><p>9.&nbsp;Choose the IdP metadata type as XML and copy the metadata into the IdP metadata XML option.</p><p>10.&nbsp;Next comes the IdP Entity-Id. For this, go back to PingIdentity, under the Configuration tab where we had downloaded the metadata, we can see the “Issuer Id”. This is our IdP Entity-Id that needs to be entered in the Cloudpath IdP Entity-Id option :-</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11651iB7F4EA27E83D0991/image.png" role="button" title="Dilshad_Zafar_1-1716853091040.png" alt="Dilshad_Zafar_1-1716853091040.png" /></span></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11650i4916B5A02051A751/image.png" role="button" title="Dilshad_Zafar_0-1716853040550.png" alt="Dilshad_Zafar_0-1716853040550.png" /></span></p><p>&nbsp;</p><p>11. In the SP Entity ID option, enter the same URL as in Step 6.</p><p><br />12. Scroll down to SAML options and select "Exact" in the AuthN Context Comparison. This may change based on your requirement.</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11652iA676E559F67610F6/image.png" role="button" title="Dilshad_Zafar_2-1716853188415.png" alt="Dilshad_Zafar_2-1716853188415.png" /></span></p><p><br />13. Leave all other settings as default unless you want to customize the configuration based on your requirement and publish the Workflow and test it. Following is a screenshot of the Enrollment details tab showing user successfully completed the SAML authentication of the workflow :-&nbsp;</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11653i6BBEA3B14859638A/image.png" role="button" title="Dilshad_Zafar_3-1716853221624.png" alt="Dilshad_Zafar_3-1716853221624.png" /></span></p><p>Regards,</p>]]>
        </description>
    </item>
    <item>
        <title>Things to consider about PoE at a glance, when deploying.</title>
        <link>https://community.ruckuswireless.com/discussion/78021/things-to-consider-about-poe-at-a-glance-when-deploying</link>
        <pubDate>Fri, 12 Apr 2024 09:50:30 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>jdryan</dc:creator>
        <guid isPermaLink="false">78021@/discussions</guid>
        <description><![CDATA[<p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>By using copper Ethernet cabling to provide DC power, Power over Ethernet (PoE) removes the requirement for distinct power supplies and sockets. It grants increased installation flexibility for Ethernet end devices, although it lacks Ethernet data capabilities. Moreover, with their integration into switches, they can function as both data connection switches and power sourcing equipment (PSE). </span><span>&nbsp;<br /></span><span>However, when working with devices that can deliver PoE, there are a few things to consider.&nbsp;<br /></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>Let’s take look at them,&nbsp;<br /></span><strong>The total PoE capacity of the PSE / PoE budget of the device and the level of PoE it can deliver.&nbsp;&nbsp;<br /></strong><span>This dictates the total PoE power that the device can deliver and the type of PoE standard it can support.&nbsp;</span><span>&nbsp;</span><span>Most devices can hold up to PoE and PoE+, while there are some that deliver PoE++ or 802.3bt as well.&nbsp;</span><span>&nbsp;<br /></span></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>How can we check this?&nbsp;</span><span>&nbsp;</span><span>The data sheet of the device(s) !.<br /></span><span>Let’s consider, <strong>RUCKUS ICX 7150-48P Switch,</strong> which has the following hardware specifications:</span><span>&nbsp;</span></span></p><ul><li><span style="font-size: small; font-family: arial,helvetica,sans-serif;">48× 10/100/1000 Mbps RJ-45 PoE+ ports&nbsp;&nbsp;</span></li><li><span style="font-size: small; font-family: arial,helvetica,sans-serif;">370 W PoE budget&nbsp;&nbsp;</span></li><li><span style="font-size: small; font-family: arial,helvetica,sans-serif;">2× 10/100/1000 Mbps uplink RJ-45 ports&nbsp;&nbsp;</span></li><li><span style="font-size: small; font-family: arial,helvetica,sans-serif;">4× 1/10 GbE uplink/stacking SFP/SFP+ ports&nbsp;</span></li></ul><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span> </span><span>Which shows that,&nbsp;</span><strong>&nbsp;</strong><strong>It has a PoE budget of 370 W and there are 48 ports that can support PoE+ or 802.3at.<br /></strong></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>For more reading, refer : </span><a href="https://www.commscope.com/globalassets/digizuite/61729-ds-icx-7150.pdf" target="_blank" rel="noopener noreferrer nofollow"><span>https://www.commscope.com/globalassets/digizuite/61729-ds-icx-7150.pdf</span></a><span>&nbsp;<br /></span><span>Note that in this example we have considered 7150, but for other models such as 8200, 7550, etc. Please refer to the data sheets for the respective switch families.</span></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Number of devices it can deliver PoE to.&nbsp;&nbsp;<br /></strong></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;">This relates to the PoE budget of the device and the type of Powered Devices (PDs) used. Nowadays, PDs typically come with PoE+ capabilities, although there are still some that support only PoE. The crucial factor is understanding the PD's capability to determine how many of them the switch can accommodate or power up. For instance, consider an Access Point (AP) rated for PoE+. When negotiating for PoE, the device communicates with the switch through the LLDP TLV field, specifying its class and power requirements. Based on this class, the switch allocates power accordingly.</span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11300i31AFC512F1744A0D/image.png" role="button" title="jdryan_0-1712914896074.png" alt="jdryan_0-1712914896074.png" /></span></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span><span>The above reference is as per IEEE Documentation for PoE standards 802.3at and 802.3bt.&nbsp;</span></span><span>&nbsp;<br /></span><span>Based on this, considering that the<strong> PD is PoE+ capable</strong>, on RUCKUS ICX 7150-48P that has 370 W PoE budget.</span><span>&nbsp;<br /></span><strong>We can calculate the below:&nbsp;</strong><span><strong>&nbsp;</strong><br /></span><span>PSE's budget = 370W</span><span>&nbsp;<br /></span><span>PD's PoE Class = PoE+ that reserves max. of 30W at PSE&nbsp;</span><span>&nbsp;<br /></span><strong>Number of devices = PSE's PoE budget / PoE Class of the device = 370 / 30 = 12.3333&nbsp;<br /></strong>It can power up to 12 PDs at PoE+ power level. Any additional PDs would not activate due to insufficient remaining power in the budget.</span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>Now the question arises, why not define the power limit manually?&nbsp;</span><span>&nbsp;<br /></span><span>&nbsp; &nbsp; Strict manipulation can indeed bring up more PDs, but it carries a risk. After all PDs are operational and receiving optimal power, reallocating power back to the budget pool is possible. However, if a reload or power cycle of the Power Sourcing Equipment (PSE) occurs unexpectedly, PDs may encounter power-up issues. During the initial power-up or startup phase, the PSE delivers full power to the PDs. Consequently, some connected PDs may experience power shortages and struggle to come online.</span></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>Can it be done? And how?&nbsp;</span><span>&nbsp;<br /></span><strong>To configure the power limit manually on a interface based on power limit.&nbsp;</strong><span>&nbsp;<br /></span><span>Please do refer.&nbsp;</span><span>&nbsp;<br /></span><a href="https://docs.commscope.com/bundle/fastiron-08095-managementguide/page/GUID-58622E67-07D7-41E4-B4C6-A9B6F3EA8C74.html" target="_blank" rel="noopener noreferrer nofollow"><span>https://docs.commscope.com/bundle/fastiron-08095-managementguide/page/GUID-58622E67-07D7-41E4-B4C6-A9B6F3EA8C74.html</span></a><span>&nbsp;<br /></span><strong>To configure the power limit manually on a interface based on class of the PD.</strong><span><strong>&nbsp;</strong><br /></span><span>Please do refer.</span><span>&nbsp;<br /></span><a href="https://docs.commscope.com/bundle/fastiron-08095-managementguide/page/GUID-155FABD5-F3C2-4579-ADBB-CC240997524A.html" target="_blank" rel="noopener noreferrer nofollow"><span>https://docs.commscope.com/bundle/fastiron-08095-managementguide/page/GUID-155FABD5-F3C2-4579-ADBB-CC240997524A.html</span></a><span>&nbsp;<br /></span></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;">How does Ruckus address this?<br />Ruckus offers two well-known ways for Power Management methods for ICX line that are PoE capable.<br /><strong>Static Power Management:<br /></strong><span>Power is set aside for each powered device (PD) connected to switch ports when in static PM.<strong> This approach adheres to the previously discussed procedure, wherein the maximum power is set aside according to the linked power device's class</strong>. <strong>If the power reservation is not possible, even when the overall usage is less than the entire power budget, no new PDs will be powered.</strong></span><strong>&nbsp;<br /></strong><span>The ICX devices are configured or made available in this mode for PoE management Out of the Box.</span><span>&nbsp;</span></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>To overcome this, we have Dynamic Power management.&nbsp;</span><span>&nbsp;<br /></span><strong>Dynamic Power Management:&nbsp;<br /></strong>Where this helps via <strong>having the power allocation done based on the consumption of the PD that’s connected.&nbsp;</strong><strong>&nbsp;</strong><span><strong>Here power is not set aside for any ports in dynamic PM. Until the overall power consumption is within the ICX device's total power budget,</strong> PDs are turned on automatically.&nbsp;</span><span>&nbsp;<br /></span><span>However here<strong> the switch will immediately shut down any PDs with low priority ports or, if all ports have the same priority, shut down PDs attached to higher-numbered ports in order to keep the total power consumption within the total power budget if the power consumption increases, either by increasing the power consumption of connected PDs or by adding new PDs.</strong></span><strong>&nbsp;<br /></strong></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>How to go about setting this?&nbsp;</span><span>&nbsp;<br /></span><span>Do refer here:&nbsp;</span><span>&nbsp;</span><a rel="nofollow" href="https://community.ruckuswireless.com/t5/RUCKUS-Self-Help/How-to-enable-Dynamic-PoE-power-on-the-ICX-switches/m-p/68751" target="_blank"><span>https://community.ruckuswireless.com/t5/RUCKUS-Self-Help/How-to-enable-Dynamic-PoE-power-on-the-ICX-switches/m-p/68751</span></a><span>&nbsp;</span></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>There however is a third way, that is<strong> Hybrid Power Management.</strong></span><span>&nbsp;<br /></span><span>This is a mix of the above 2 methods and <strong>can be achieved by configuring static PM for a few of the ports and dynamic PM for a few of the ports. The way this works to differentiate between the two methods is based on the priority that is set for the specific interfaces, priority of 1 dictate that it uses static PM, as priority of 2 or higher dictates it uses dynamin PM.</strong> This priority can be set per interface or globally as well.&nbsp;</span><span>&nbsp;<br /></span></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>Under this method, after enabling dynamic poe, below settings are needed enable Hybrid PM,<br /></span><span>(1) to enable Static PM, use "</span><strong><span>inline power ethernet unit/slot/port priority 1"</span></strong><span> on those specific ports.</span><span>&nbsp;<br /></span><span>Example: in config mode,&nbsp;</span><span>&nbsp;<br /></span><span>Inline power ethernet 1/1/1 priority 1</span><span>&nbsp;<br /></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>(2) to enable Dynamic PM, use a priority of 2 or 3 instead of 1</span><span> on those specific ports.</span><span>&nbsp;<br /></span><span>Example: in config mode,&nbsp;</span><span>&nbsp;<br /></span><span>inline power ethernet 1/1/4 priority 2</span><span>&nbsp;<br /><br /></span><span>Apart from this, there is also <strong>Perpetual PoE and Fast Boot PoE.<br /></strong></span><span><strong>Perpetual PoE,</strong> where PoE power delivery to the equipment is uninterrupted, when the device is rebooting or reloading.&nbsp;</span><span>&nbsp;<br /></span><span><strong>Fast Boot PoE</strong>, where the PoE is delivered as soon as the switch is turned on, where the PD would not have to wait until the system is up.&nbsp;</span><span>&nbsp;<br /></span><span>To enable this, Use “</span><strong><span>inline power poe-ha</span></strong><span>” in interface configuration prompt.&nbsp;</span><span>&nbsp;<br /></span></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>For Further reading on PoE features on the ICX line-up,&nbsp;<a href="https://docs.commscope.com/bundle/fastiron-10010-managementguide/page/GUID-36148BA0-4CDB-4551-9463-C1ABD8139CCB.html&nbsp;" target="_blank" rel="noopener noreferrer nofollow">Click here</a>,&nbsp;</span><span>&nbsp;<br /></span></span></p><p><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span>Abbreviations used:<br /></span><span>PD - Power Device.</span><span>&nbsp;<br /></span><span>PSE - Power Source Equipment also known as Endspan device.</span><span>&nbsp;<br /></span><span>PoE - Power over ethernet.</span><span>&nbsp;<br /></span><span>PoE Injector is also known as Midspan device.</span><span>&nbsp;</span></span></p>]]>
        </description>
    </item>
    <item>
        <title>Reasons for Stack unit going into Reserve state</title>
        <link>https://community.ruckuswireless.com/discussion/77976/reasons-for-stack-unit-going-into-reserve-state</link>
        <pubDate>Thu, 11 Apr 2024 16:02:45 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Smiley</dc:creator>
        <guid isPermaLink="false">77976@/discussions</guid>
        <description><![CDATA[<p><strong><u>Issue:</u></strong> Unit 3 status is showing as reserve state under the show stack output below:</p><p>ICX7750-26Q Router# show stack</p><p>T=1d17h49m48.5: alone: standalone, <span title=":anguished_face:">😧</span> dynamic cfg, S: static</p><p>ID &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Type &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Role &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Mac Address &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Pri &nbsp;&nbsp;&nbsp;&nbsp;State &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Comment</p><p>1 S ICX7750-26QXG active &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cc4e.2438.7280 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;128&nbsp;&nbsp; &nbsp;&nbsp;local &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ready</p><p>2 S ICX7750-26QXG member &nbsp;&nbsp;748e.f8f9.6300 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;128 &nbsp;&nbsp;&nbsp;&nbsp;remote&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;Ready</p><p>3 S ICX7750-26QXG member &nbsp;&nbsp;0000.0000.0000 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #FF0000;">&nbsp;<strong>reserve</strong></span></p><p>4 D ICX7750-48XGF member &nbsp;&nbsp;609c.9f7f.9400 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;128 &nbsp;&nbsp;&nbsp;&nbsp;remote&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;Ready</p><p>&nbsp;</p><p><strong><u>Reasons:</u></strong></p><p>-If unit stuck in boot loop.&nbsp;&nbsp;&nbsp;&nbsp;</p><p>-If there is a physical layer issue such as stacking cable, stacking module.</p><p>-If unit is faulty or hardware issue.</p><p>&nbsp;</p><p><strong><u>Recovery Steps:</u></strong></p><p><strong><u>If unit stuck in boot loop.</u></strong></p><p>-Try software recovery by taking console access for this unit.</p><p><a href="https://docs.commscope.com/bundle/fastiron-08095-upgradeguide/page/GUID-9B5D5A56-039D-44FB-8FD2-B9B55E71ADE8.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-08095-upgradeguide/page/GUID-9B5D5A56-039D-44FB-8FD2-B9B55E71ADE8.html</a></p><p>-Try power cycling the switch after removing it from the stack.</p><p>-Check if it’s related to any known defect.</p><p>-Try factory resetting the switch.</p><p>-Try below steps by removing switch from the stack taking console access.</p><p><strong>&gt;&gt;Enter switch boot mode</strong><br /><strong>&gt;&gt;Give command: use default-configuration</strong><strong><br />&gt;&gt;Reload the switch.</strong></p><p>&nbsp;</p><p><u><strong>If there is a physical layer issue such as stacking cable, stacking module.</strong></u></p><p>-Try changing the stacking cables and stacking ports.</p><p>&nbsp;</p><p><u><strong>If unit is faulty or hardware issue</strong></u></p><p>-Switch not powering on try checking the power cable and power source.</p><p>-Replace the switch <span>with the same model if switch fails to power on.</span></p><p>&nbsp;</p>]]>
        </description>
    </item>
    <item>
        <title>Enabling SSH Communication Between 09.0.10 Devices and 08.0.95 Devices</title>
        <link>https://community.ruckuswireless.com/discussion/77477/enabling-ssh-communication-between-09-0-10-devices-and-08-0-95-devices</link>
        <pubDate>Fri, 29 Mar 2024 18:58:28 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Sgatjens</dc:creator>
        <guid isPermaLink="false">77477@/discussions</guid>
        <description><![CDATA[<p><span>Devices running different FastIron releases may encounter SSH connection issues due to differences in default key exchange and host key algorithms.</span></p>
<p><span>For devices running FastIron release 09.0.10a to 09.0.10h, attempting to establish an SSH connection with a device running FastIron release 08.0.95 or earlier can lead to a mismatch in algorithms, preventing the SSH connection from being established. This problem occurs during the negotiation phase, where the server offers key exchange and host key algorithms that are not compatible with the default settings of the device running FastIron release 09.0.10a to 09.0.10h.<br /><br />For devices running FastIron release 09.0.10j and later, RUCKUS recommends configuring specific key exchange and host key algorithms on the devices to resolve this issue and enable SSH communication. Please follow the procedure below to enable SSH communication with devices running FastIron release 08.0.95 or earlier:<br /><br /></span><span style="font-family: courier new,courier;">device# configure terminal</span><br /><span style="font-family: courier new,courier;">device(config)# ip ssh key-exchange-method</span><br /><span style="font-family: courier new,courier;">ASCII string Enter algorithms separated by a space:</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;diffie-hellman-group-exchange-sha256</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;diffie-hellman-group14-sha256</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;diffie-hellman-group16-sha512</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;diffie-hellman-group18-sha512</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;curve25519-sha256@libssh.org</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;diffie-hellman-group14-sha1</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ecdh-sha2-nistp256</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ecdh-sha2-nistp384</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ecdh-sha2-nistp521</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;curve25519-sha256</span><br /><span style="font-family: courier new,courier;">device(config)# ip ssh key-exchange-method diffie-hellman-group14-sha1</span><br /><span style="font-family: courier new,courier;">device(config)# ip ssh host</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp;host-key-method&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SSH host key method</span><br /><span style="font-family: courier new,courier;">device(config)# ip ssh host-key-method</span><br /><span style="font-family: courier new,courier;">ASCII string Enter algorithms separated by a space:</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ecdsa-sha2-nistp256</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ecdsa-sha2-nistp384</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;rsa-sha2-512</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;rsa-sha2-256</span><br /><span style="font-family: courier new,courier;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ssh-rsa</span><br /><span style="font-family: courier new,courier;">device(config)# ip ssh host-key-method ssh-rsa</span><br /><br /></p>]]>
        </description>
    </item>
    <item>
        <title>How to recover a password from version 9010 and later</title>
        <link>https://community.ruckuswireless.com/discussion/77476/how-to-recover-a-password-from-version-9010-and-later</link>
        <pubDate>Fri, 29 Mar 2024 18:31:28 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Sgatjens</dc:creator>
        <guid isPermaLink="false">77476@/discussions</guid>
        <description><![CDATA[<p><span>Before proceeding with the following steps, please note that the example resets the username to "super" and the password to "sp-admin," which is the default for FastIron 09.0.00. Ensure to press<strong> Ctrl</strong> and <strong>Y</strong> before executing the steps below:<br /></span></p>
<ol>
<li>You must access the switch via console.</li>
<li>Press Ctrl + Y.</li>
<li>Enter "reset_login"</li>
<li>Exit the console.</li>
<li>Try logging in using the default credentials: username "super" and password "sp-admin."</li>
</ol>
<p><span><span style="font-family: courier new,courier;">OS&gt; reset_login</span><br /><span style="font-family: courier new,courier;">This is a temporary login. Please reconfigure users once you login.</span><br /><span style="font-family: courier new,courier;">OS&gt; exit</span></span></p>]]>
        </description>
    </item>
    <item>
        <title>Cannot connect to the Switch Web UI, Getting an error: “Server error. Will be fixed in few minutes&quot;.</title>
        <link>https://community.ruckuswireless.com/discussion/77414/cannot-connect-to-the-switch-web-ui-getting-an-error-server-error-will-be-fixed-in-few-minutes</link>
        <pubDate>Tue, 26 Mar 2024 17:06:29 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Smiley</dc:creator>
        <guid isPermaLink="false">77414@/discussions</guid>
        <description><![CDATA[<p><strong><u>Issue:</u></strong></p><p>Trying to access ICX 7150 switch model through Web UI but getting an error “Server error. Will be fixed in few minutes”.</p><p>Tried different browsers such as Edge, Chrome, Firefox, but same issue.</p><p>Switch is up in Cloud Ruckus one and running version 9.0.10h_cd2.</p><p>Found Web-management is getting disabled automatically and it needs to be enabled by using below command but after few days it again gets disabled.</p><p><strong>#No web-management disable</strong></p><p><strong><u>Solution:</u></strong></p><p>There is a behavior change with the 9010h version onwards such as web-management disable get pushed from the Cloud (Ruckus one) or SmartZone when switches connect to it.</p><p><br /><strong><u>Link (Refer page no.11</u></strong>)<br /><a href="https://support.ruckuswireless.com/documents/4607" target="_blank" rel="noopener noreferrer nofollow">https://support.ruckuswireless.com/documents/4607</a></p><p>&nbsp;</p><p><strong>For workaround, Refer the below link.</strong></p><p><strong><u>Link (Refer page no. 253</u></strong></p><p><a href="https://support.ruckuswireless.com/documents/4031-fastiron-09-0-10-ga-management-configuration-guide" target="_blank" rel="noopener noreferrer nofollow">https://support.ruckuswireless.com/documents/4031-fastiron-09-0-10-ga-management-configuration-guide</a><br /><br /><strong><u>Note: </u></strong>Adding to above we can also manage the switch from R1, using remote cli if needed.</p><p>&nbsp;</p>]]>
        </description>
    </item>
    <item>
        <title>On downgrade from 9010 and above to 8095, &quot;ve&quot; related interface commands would be removed</title>
        <link>https://community.ruckuswireless.com/discussion/77289/on-downgrade-from-9010-and-above-to-8095-ve-related-interface-commands-would-be-removed</link>
        <pubDate>Fri, 22 Mar 2024 18:06:31 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Chandini</dc:creator>
        <guid isPermaLink="false">77289@/discussions</guid>
        <description><![CDATA[<p>When downgrading the switch from 9010 and above to 8095 <span style="font-size: small; font-family: courier new,courier;">“ve” </span>related interface commands and L3 configuration would be removed</p><p><strong>Issue noticed:</strong></p><p>When the user chooses to downgrade from 9010 version and above to 8095 versions in ICX switches, they will notice that the <span style="font-size: small; font-family: courier new,courier;">“ve”</span> commands and layer 3 related configurations within the <span style="font-size: small; font-family: courier new,courier;">“ve”</span> are wiped out.</p><p><strong>Lab output:</strong></p><p>If the switch running 9010 version have the below configuration:</p><p><span style="font-size: small; font-family: courier new,courier;">!</span></p><p><span style="font-size: small; font-family: courier new,courier;">interface ve 1</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;ip address 1.1.1.1 255.255.255.0</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;no spanning-tree</span></p><p><span style="font-size: small; font-family: courier new,courier;">!</span></p><p><span style="font-size: small; font-family: courier new,courier;">interface ve 3</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;ip address 2.2.2.1 255.255.255.0</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;no spanning-tree</span></p><p><span style="font-size: small; font-family: courier new,courier;">!</span></p><p><span style="font-size: small; font-family: courier new,courier;">interface ve 5</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;ip address 3.3.3.1 255.255.255.0</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;no spanning-tree</span></p><p><span style="font-size: small; font-family: courier new,courier;">!</span></p><p>When the customer would downgrade from 9010 and above to 8095 versions the configuration would be removed and any configurations included within the <span style="font-size: small; font-family: courier new,courier;">ve’s </span>would also be removed.</p><p><strong>Reason:</strong></p><p>This is an expected behavior. The reason why this is noticed is because on 8095 versions, if we would have to configure <span style="font-size: small; font-family: courier new,courier;">“ve ”</span> interface we use command <span style="font-size: small; font-family: courier new,courier;">“router-interface ve “ve ID””</span></p><p><strong>Example:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">device(config)# vlan 2</span></p><p><span style="font-size: small; font-family: courier new,courier;">device(config-vlan-2)# untag ethernet 1 to 4</span></p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">device(config-vlan-2)# router-interface ve 2</span></p><p><span style="font-size: small; font-family: courier new,courier;">device(config-vlan-2)# interface ve 2</span></p><p>But from 9010 and above versions the <span style="font-size: small; font-family: courier new,courier;">“router-interface ve “ve ID””</span> command is deprecated and when a <span style="font-size: small; font-family: courier new,courier;">“vlan”</span> is created a <span style="font-size: small; font-family: courier new,courier;">“ve”</span> with same ID as vlan is also created.</p><p><strong>Example:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">device(config)# vlan 2</span></p><p><span style="font-size: small; font-family: courier new,courier;">device(config-vlan-2)# interface ve 2</span></p><p>Due to the above changes when you upgrade from 8095 version to 9010 version or above you would not see a problem but when you downgrade from 9010 version and above to 8095 you will notice that since the command<span style="font-size: small; font-family: courier new,courier;"> “router-interface ve “ve ID””</span> is not appended to the running configuration the <span style="font-size: small; font-family: courier new,courier;">“ve”</span> interface would be completely deleted.</p><p>It is recommended to save the configuration as a backup when downgraded from 9010 and above to 8095 and have sufficient downtime to revert back the configurations.</p>]]>
        </description>
    </item>
    <item>
        <title>Error message “code type 33 is not correct for the target hardware” during firmware upgrade</title>
        <link>https://community.ruckuswireless.com/discussion/77286/error-message-code-type-33-is-not-correct-for-the-target-hardware-during-firmware-upgrade</link>
        <pubDate>Fri, 22 Mar 2024 17:57:13 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Chandini</dc:creator>
        <guid isPermaLink="false">77286@/discussions</guid>
        <description><![CDATA[<p><strong>Issue noticed:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">SYSLOG: &lt;14&gt; Mar 17 15:10:57 Security: SSH login by super from src IP 10.177.95.153 from src MAC 50a7.3360.5054 to USER EXEC mode using RSA as Server Host Key.</span></p><p><span style="font-size: small; font-family: courier new,courier;">SYSLOG: &lt;14&gt; Mar 17 15:10:57 scp -t flash:sec:SWR08095m.bin</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;<span style="color: #0000FF;">!!! Downloading this application image can result in application-boot image mismatch. Please use UFI image.</span></span></p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">The code type 33 is not correct for the target hardware, abort!</span></p><p>It is noticed when a user is trying to upgrade the switch to a code from a destination which is a switch.</p><p>The user would try to upgrade the firmware using SCP method from switch to switch.</p><p><strong>Reason the error message is noticed:</strong></p><p>If the user is trying to upgrade from a switch model which is not the same switch model as the one user is trying to upgrade, the error would be noticed.</p><p>For example, if the user tries to upgrade 7150 secondary version from a destination switch which is a 7750 or other models then the error would be noticed.</p><p>The error also remains the same if the user is using incorrect firmware file which is for a different model switch.</p><p><strong>Below is the scenario considered as an example:</strong></p><p>Consider the customer is trying to upgrade 7150 switches from 7750 or using an incorrect firmware code of a different switch model.</p><p><span style="font-size: small; font-family: courier new,courier;">ICX7150-48ZP Switch#copy flash scp 10.177.95.155 flash:sec:SWR08095m.bin secondary</span></p><p><span style="font-size: small; font-family: courier new,courier;">User name:super</span></p><p><span style="font-size: small; font-family: courier new,courier;">Password:</span></p><p><strong>In 7750 switch you would see a below message:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7750-48F Router#</span></p><p><span style="font-size: small; font-family: courier new,courier;">SYSLOG: &lt;14&gt; Mar 17 15:10:57 Security: SSH login by super from src IP 10.177.95.153 from src MAC 50a7.3360.5054 to USER EXEC mode using RSA as Server Host Key.</span></p><p><span style="font-size: small; font-family: courier new,courier;">SYSLOG: &lt;14&gt; Mar 17 15:10:57 scp -t flash:sec:SWR08095m.bin</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;<span style="color: #0000FF;">!!! Downloading this application image can result in application-boot image mismatch. Please use UFI image.</span></span></p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">The code type 33 is not correct for the target hardware, abort!</span></p><p><span style="font-size: small; font-family: courier new,courier;">SYSLOG: &lt;14&gt; Mar 17 15:10:57 Security: SSH logout by super from src IP 10.177.95.153 from src MAC 50a7.3360.5054 from USER EXEC mode using RSA as Server Host Key.</span></p><p><strong>And in 7150 switch you would see the below message:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7150-48ZP Switch#copy flash scp 10.177.95.155 flash:sec:SWR08095m.bin secondary</span></p><p><span style="font-size: small; font-family: courier new,courier;">User name:super</span></p><p><span style="font-size: small; font-family: courier new,courier;">Password:</span></p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Connecting to remote host......</span></p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Sending data (8192 bytes per dot)</span></p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Outbound Connection Closed</span></p><p><strong>Solution:</strong></p><p>The customer would need to validate the switch model he is trying to upgrade. User also must validate from which switch model he is trying to upgrade the firmware from.</p><p>It is important to check the code is specific to which model of the switch.</p><p>It is not recommended to copy firmware from one switch to another even if they are same model as below are few factors that will cause an issue when you are trying to upgrade the firmware from switch to switch.</p><ul><li>There could be mismatch of SSH Server host keys.</li><li>You would notice a challenge with key exchange method if the same key exchange method is not supported on the switches.</li><li>You could encounter “channel 0” issue which is noticed when the SSH port used is incorrect.</li></ul><p>The customer can choose to upgrade the switch using TFTP method or USB method upgrade mentioned in the below links.</p><p><strong>TFTP upgrade method link:</strong></p><ul><li><span style="font-size: small; font-family: courier new,courier;"><a rel="nofollow" href="https://community.ruckuswireless.com/t5/RUCKUS-Support-for-Lennar-Homes/How-to-Upgrade-a-Switch-ICX-7150-C12P-via-TFTP/td-p/47187" target="_blank">https://community.ruckuswireless.com/t5/RUCKUS-Support-for-Lennar-Homes/How-to-Upgrade-a-Switch-ICX-7150-C12P-via-TFTP/td-p/47187</a></span></li></ul><p><strong>USB upgrade method link:</strong></p><ul><li><span style="font-size: small; font-family: courier new,courier;"><a rel="nofollow" href="https://community.ruckuswireless.com/t5/RUCKUS-Support-for-Lennar-Homes/How-to-Upgrade-a-Switch-ICX-7150-C12P-using-a-USB-flash-drive/td-p/46781" target="_blank">https://community.ruckuswireless.com/t5/RUCKUS-Support-for-Lennar-Homes/How-to-Upgrade-a-Switch-ICX-7150-C12P-using-a-USB-flash-drive/td-p/46781</a></span></li></ul>]]>
        </description>
    </item>
    <item>
        <title>How to permanently remove memory data from the switch to safeguard sensitive data</title>
        <link>https://community.ruckuswireless.com/discussion/77283/how-to-permanently-remove-memory-data-from-the-switch-to-safeguard-sensitive-data</link>
        <pubDate>Fri, 22 Mar 2024 17:50:29 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Chandini</dc:creator>
        <guid isPermaLink="false">77283@/discussions</guid>
        <description><![CDATA[<p><strong>Scenario:</strong></p><p>When we chose to replace or upgrade the network devices it is also very important to erase the sensitive data from being decoded by a 3rd party.</p><p>Secure wipe is one such feature which is introduced from 9010 and above versions which helps you wipe flash memory related contents permanently.</p><p>It only erases flash memory and does not erase EEPROM.</p><p>During this process except TPM keys, all the files, configurations, licenses, and other keys would be lost.</p><p><strong>Difference between factory defaulting and secure wipe procedure used for the ICX switches:</strong></p><p>When a switch is factory defaulted, it will restore the switch to its original default settings but does not completely erase the data.</p><p>When we factory default the switch, the data can still be recovered if a specialized software is being used by the 3rd party.</p><p>Secure wipe is a method were all the data is thoroughly wiped out from the flash memory of the switch.</p><p>This process would take about 30 to 40 min to completely wipe out the data from the switch.</p><p><strong>Below is how you can wipe the data from the switches completely:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">Device#<span style="color: #0000FF;">securewipe 7pass</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">**************************************************************</span></p><p><span style="font-size: small; font-family: courier new,courier;">*&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SECUREWIPE Alert&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">**************************************************************</span></p><p><span style="font-size: small; font-family: courier new,courier;">* Please pay attention to the details listed below&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">* 1. U-Boot params will be erased&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">* 2. All flash partitions will be erased and loose all files *</span></p><p><span style="font-size: small; font-family: courier new,courier;">* 3. FIPS will be disabled and related keys will be erased&nbsp;&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">* 4. License and config files will be erased&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">* 5. Only FI image, U-Boot and TPM keys will be restored.&nbsp;&nbsp;&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">* 6. All warm memory contents will be erased&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">* 7. Device may fail to boot and/or fail to connect cloud if *</span></p><p><span style="font-size: small; font-family: courier new,courier;">*&nbsp;&nbsp;&nbsp; power cycled or power down during secure wipe process&nbsp;&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">* 8. Performing secure wipe frequently may reduce the flash&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">*&nbsp;&nbsp;&nbsp; life cycle&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">**************************************************************</span></p><p><span style="font-size: small; font-family: courier new,courier;">**************************************************************</span></p><p><span style="font-size: small; font-family: courier new,courier;">* I have read the alert and SECUREWIPE can be performed now. *</span></p><p><span style="font-size: small; font-family: courier new,courier;">* Please enter 'y' to confirm, 'n' to exit :&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">**************************************************************</span></p><p><span style="font-size: small; font-family: courier new,courier;">(enter 'y' or 'n'): y</span></p><p><span style="font-size: small; font-family: courier new,courier;">Device boot source is :1</span></p><p><span style="font-size: small; font-family: courier new,courier;">Current booted partition: Primary, UFI used for secure wipe: Primary</span></p><p><span style="font-size: small; font-family: courier new,courier;">Prerequisite check success,securewipe is processing....</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;********************************************</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;PLEASE WAIT SYSTEM WILL GO FOR RESTART....</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;********************************************</span></p><p>Process that would occur when you run <span style="font-size: small; font-family: courier new,courier;">“securewipe 7pass”</span> command.</p><p>Secondary flash partition process may take 10 to 15 min.</p><p><span style="font-size: small; font-family: courier new,courier;">Checking for secure wipe feature enable status...</span></p><p><span style="font-size: small; font-family: courier new,courier;">******************************************************************</span></p><p><span style="font-size: small; font-family: courier new,courier;">* 7-Pass Secure Wipe enabled, secure erase will be performed now *</span></p><p><span style="font-size: small; font-family: courier new,courier;">* This may take some time, do NOT power down/cycle the device&nbsp;&nbsp;&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">* Device will be rebooted automatically after secure erase&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *</span></p><p><span style="font-size: small; font-family: courier new,courier;">* Interrupting secure wipe process may cause device to fail boot *</span></p><p><span style="font-size: small; font-family: courier new,courier;">******************************************************************</span></p><p><span style="font-size: small; font-family: courier new,courier;">proccessing securewipe for 7 pass</span></p><p><span style="font-size: small; font-family: courier new,courier;">1+0 records in</span></p><p><span style="font-size: small; font-family: courier new,courier;">1+0 records out</span></p><p><span style="font-size: small; font-family: courier new,courier;">#############################</span></p><p><span style="font-size: small; font-family: courier new,courier;">#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SESSION START&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #</span></p><p><span style="font-size: small; font-family: courier new,courier;">#############################</span></p><p><span style="font-size: small; font-family: courier new,courier;">Uboot manager: Requested for command type 0</span></p><p><span style="font-size: small; font-family: courier new,courier;">Platform type: (ICX8150) RODAN</span></p><p><span style="font-size: small; font-family: courier new,courier;">set_uboot_partition:264 CMD: i2cset -y -f 0 0x33 0xe 0x2 1&gt;/dev/null 2&gt;&amp;1</span></p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Secondary partition setting success</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">#############################</span></p><p><span style="font-size: small; font-family: courier new,courier;">#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SESSION START&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #</span></p><p><span style="font-size: small; font-family: courier new,courier;">#############################</span></p><p>Primary flash partition process may take 10 to 15 min.</p><p><span style="font-size: small; font-family: courier new,courier;">#############################</span></p><p><span style="font-size: small; font-family: courier new,courier;">#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SESSION START&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #</span></p><p><span style="font-size: small; font-family: courier new,courier;">#############################</span></p><p><span style="font-size: small; font-family: courier new,courier;">Uboot manager: Requested for command type 0</span></p><p><span style="font-size: small; font-family: courier new,courier;">Platform type: (ICX8150) RODAN</span></p><p><span style="font-size: small; font-family: courier new,courier;">set_uboot_partition:264 CMD: i2cset -y -f 0 0x33 0xe 0x1 1&gt;/dev/null 2&gt;&amp;1</span></p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">Primary partition setting success</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 3ff000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">Erasing 4 Kibyte @ 1f000 -- 100 % complete</span></p><p><span style="font-size: small; font-family: courier new,courier;">#############################</span></p><p><span style="font-size: small; font-family: courier new,courier;">#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SESSION START&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #</span></p><p><span style="font-size: small; font-family: courier new,courier;">#############################</span></p><p>Boot partition process may take 10 to 15 min.</p><p><span style="font-size: small; font-family: courier new,courier;">Allocating group tables: done</span></p><p><span style="font-size: small; font-family: courier new,courier;">Writing inode tables: done</span></p><p><span style="font-size: small; font-family: courier new,courier;">Creating journal (4096 blocks): done</span></p><p><span style="font-size: small; font-family: courier new,courier;">Writing superblocks and filesystem accounting information: done</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;">securewipe started for fastiron&nbsp; partition</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;">mke2fs 1.43.4 (31-Jan-2017)</span></p><p><span style="font-size: small; font-family: courier new,courier;">Discarding device blocks: done</span></p><p><span style="font-size: small; font-family: courier new,courier;">Creating filesystem with 655360 4k blocks and 164160 inodes</span></p><p><span style="font-size: small; font-family: courier new,courier;">Filesystem UUID: 2408ba58-7247-4cf0-ab4d-9e929399849a</span></p><p><span style="font-size: small; font-family: courier new,courier;">Superblock backups stored on blocks:</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 32768, 98304, 163840, 229376, 294912</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;">Allocating group tables: done</span></p><p><span style="font-size: small; font-family: courier new,courier;">Writing inode tables: done</span></p><p><span style="font-size: small; font-family: courier new,courier;">Creating journal (16384 blocks): done</span></p><p><span style="font-size: small; font-family: courier new,courier;">Writing superblocks and filesystem accounting information: done</span></p><p>&nbsp;</p><p><span style="font-size: small; color: #0000FF; font-family: courier new,courier;">securewipe started for boot partition</span></p><p><span style="font-size: small; font-family: courier new,courier;">mke2fs 1.43.4 (31-Jan-2017)</span></p><p><span style="font-size: small; font-family: courier new,courier;">Discarding device blocks: done</span></p><p><span style="font-size: small; font-family: courier new,courier;">Creating filesystem with 131072 4k blocks and 32768 inodes</span></p><p><span style="font-size: small; font-family: courier new,courier;">Filesystem UUID: b3a7ad8e-7514-47c3-8403-f51d8a280153</span></p><p><span style="font-size: small; font-family: courier new,courier;">Superblock backups stored on blocks:</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 32768, 98304</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;">Allocating group tables: done</span></p><p><span style="font-size: small; font-family: courier new,courier;">Writing inode tables: done</span></p><p><span style="font-size: small; font-family: courier new,courier;">Creating journal (4096 blocks): done</span></p><p><span style="font-size: small; font-family: courier new,courier;">Writing superblocks and filesystem accounting information: done</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;">securewipe started for warm memory</span></p><p><span style="font-size: small; font-family: courier new,courier;">securewipe done for warm memory</span></p><p><span style="font-size: small; font-family: courier new,courier;">securewipe 7 pass completed</span></p><p><span style="font-size: small; font-family: courier new,courier;">EEPROM Write Protect disable success</span></p><p><span style="font-size: small; font-family: courier new,courier;">EEPROM Write success</span></p><p><span style="font-size: small; font-family: courier new,courier;">EEPROM Write Protect enable success</span></p><p><span style="font-size: small; font-family: courier new,courier;">INIT: Sending processes the TERM signal</span></p>]]>
        </description>
    </item>
    <item>
        <title>How to assign VLAN as per AP/WLAN group using policies in Cloudpath</title>
        <link>https://community.ruckuswireless.com/discussion/77267/how-to-assign-vlan-as-per-ap-wlan-group-using-policies-in-cloudpath</link>
        <pubDate>Fri, 22 Mar 2024 08:32:05 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>sagar_kuber</dc:creator>
        <guid isPermaLink="false">77267@/discussions</guid>
        <description><![CDATA[<p><strong>Requirement/Use case:</strong> There are multiple locations which are segregated through AP/WLAN group in SmartZone controller. Now different VLAN ID to be assigned as per the location.</p><p><strong>Prerequisites</strong>:</p><ul><li>802.1x SSID with Cloudpath as AAA with default ‘Radius options’</li><li>Cloudpath 5.7 and above</li><li>Vsz/sz 5.0 and above</li><li>Segregate the locations using WLAN/AP group.</li></ul><p><strong>In SmartZone controller:</strong></p><p>Go to &gt; WLAN &gt; Group 1 &gt; Edit &gt; Select WLANs &gt; Toggle ‘NAS-ID’ to ‘User Defined’ then mention ‘Group1’&nbsp; (Required attribute value)</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11117iC24F9F19C26CA422/image.png" role="button" title="sagar_kuber_0-1711094042225.png" alt="sagar_kuber_0-1711094042225.png" /></span><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11118i4E38273D9A98BEA1/image.png" role="button" title="sagar_kuber_1-1711094616437.png" alt="sagar_kuber_1-1711094616437.png" /></span><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11119i08E8D53E63174E8B/image.png" role="button" title="sagar_kuber_2-1711094631129.png" alt="sagar_kuber_2-1711094631129.png" /></span></p><p>&nbsp;</p><p><strong>In Cloudpath:</strong></p><p><strong>Step 1:</strong> Go to &gt; &nbsp;Configuration &gt; Policies &gt; RADIUS Attribute Groups &gt; Add RADIUS Attribute Group &gt; Under ‘VLAN ID’ mention desired VLAN</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11120iDE348DEA241DBE42/image.png" role="button" title="sagar_kuber_3-1711095973051.png" alt="sagar_kuber_3-1711095973051.png" /></span><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11121i816CFD5BBEFE87F6/image.png" role="button" title="sagar_kuber_4-1711095985879.png" alt="sagar_kuber_4-1711095985879.png" /></span></p><p><strong>Step 2:</strong> : Go to &gt; &nbsp;Configuration &gt; Policies &gt; Policies &gt; Add Policy &gt; NAS Identifier (regex): ‘Group1’ (Mention the ‘User Defined’ value set as ‘NAS-ID’ in Vsz WLAN group)</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11122iF1F9CE43C46FA985/image.png" role="button" title="sagar_kuber_5-1711096006860.png" alt="sagar_kuber_5-1711096006860.png" /></span><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11123i30068206E040A931/image.png" role="button" title="sagar_kuber_6-1711096015213.png" alt="sagar_kuber_6-1711096015213.png" /></span></p><p><strong>Step 3a:</strong> If Certificate based Authentication</p><p>Go to &gt; Certificate Authority &gt; Manage Templates &gt;&nbsp; Certificate Template &gt; Manage &gt; Radius Policies &gt; +Assign Policy ‘Group1’</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11124i2ADE96A337B9C3E7/image.png" role="button" title="sagar_kuber_7-1711096031207.png" alt="sagar_kuber_7-1711096031207.png" /></span><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11125iA21BEDA9CE588B95/image.png" role="button" title="sagar_kuber_8-1711096037901.png" alt="sagar_kuber_8-1711096037901.png" /></span></p><p><strong>Step 3b:</strong> If eDPSK based Authentication</p><p>Go to &gt; Configuration &gt; DPSK Pools &gt; Manage &gt; Radius Policies &gt; +Assign Policy ‘Group1</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11126iBE33CC8E8E673233/image.png" role="button" title="sagar_kuber_9-1711096054655.png" alt="sagar_kuber_9-1711096054655.png" /></span><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11127i0478F98780C35975/image.png" role="button" title="sagar_kuber_10-1711096061539.png" alt="sagar_kuber_10-1711096061539.png" /></span></p>]]>
        </description>
    </item>
    <item>
        <title>How to update firmware on the ICX switches via the cloud Ruckus One</title>
        <link>https://community.ruckuswireless.com/discussion/76921/how-to-update-firmware-on-the-icx-switches-via-the-cloud-ruckus-one</link>
        <pubDate>Wed, 13 Mar 2024 16:29:18 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>jdryan</dc:creator>
        <guid isPermaLink="false">76921@/discussions</guid>
        <description><![CDATA[<p>For ease of management and monitoring of the ICX switches, they are enabled to communicate with Ruckus's cloud platform : Ruckus 1 or R1, as we call it.<br /><br />Here we have the switch onboarded to the cloud under the venue :<br />We see the same under Wired &gt;&gt; Switch List</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11031i165B1722FDD38F90/image.png" width="884" height="222" role="button" title="jdryan_0-1710346518802.png" alt="jdryan_0-1710346518802.png" /></span></p><p>Where the highlight shows the firmware they are currently on,.<br /><br />Now to update the firmware:<br />First, to set the version :<br />Hence<br />Administration [ bottom left corner ] &gt;&gt; version management &gt;&gt;&gt;</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11032i3DA58D95EA912EBB/image.png" width="936" height="477" role="button" title="jdryan_1-1710346567273.png" alt="jdryan_1-1710346567273.png" /></span></p><p><span>Here go to , Switch firmware and select the venue &gt;&gt; and click on Change Update Schedule: </span></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11033i748817EF4DA835D1/image.png" width="873" height="476" role="button" title="jdryan_2-1710346606762.png" alt="jdryan_2-1710346606762.png" /></span></p><p><span>Once there the below dialog-box will appear:</span></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11034i21CD3777FA95693A/image.png" width="590" height="512" role="button" title="jdryan_3-1710346677509.png" alt="jdryan_3-1710346677509.png" /></span></p><p><span>Where we select the code that’s needed. </span></p><p><span>And generally the code available on the cloud is the recommended releases for the cloud connected devices or devices that would be connected to the cloud. </span></p><p><span>&nbsp;</span></p><p><span>Here in this example : the devices are already on the recommended release : 10.0.10c_cd1 </span></p><p><span>However for one of them : we'll be selecting 9010j_cd1 and setting the date and time for the activity as well </span></p><p><span>Here once the version is selected and saved,: </span></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11035iA148C83F74AAB998/image.png" width="535" height="603" role="button" title="jdryan_4-1710346794007.png" alt="jdryan_4-1710346794007.png" /></span></p><p><span>Once done, click on save, </span></p><p><span>&nbsp;</span></p><p><span>Below will be displayed : </span></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11036i90AF6D92B1AC41B0/image.png" width="843" height="398" role="button" title="jdryan_5-1710346823987.png" alt="jdryan_5-1710346823987.png" /></span></p><p><span>&nbsp;</span></p><p><span>That’s for scheduling the code update, </span></p><p><span>&nbsp;</span></p><p><span>In an event, there needs to be an immediate update done : update now is the option you need : </span></p><p><span>&nbsp;</span></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/11037i0222F7A1551A9856/image.png" width="841" height="409" role="button" title="jdryan_6-1710346884022.png" alt="jdryan_6-1710346884022.png" /></span></p><p>once the version are selected : click on run update : that will initiate the file transfer to the switches and get the update done.</p><p>&nbsp;</p><p>Do note :</p><ul><li>This option is only applicable if the ICX switches are connected to the cloud.</li><li>During this activity as usual&nbsp; downtime is needed as the switches will reload for the firmware to be applied.</li><li>Also this process/procedure applied to specific venue and all switches under the venue will get the update : hence do consider the below points<p>if you are an MSP :</p><p>1. Make sure that the switches that are to be updated are of the specific venue.</p><p>2 . If there are multiple locations managed under the same venue&nbsp; and only a specific location needs to be updated : then this may not be the best option to follow.</p><p>3 . In case, point 2 applied to you : then device local updates are best way to go about the upgradation. Via TFTP,USB etc.</p><p>if you are not an MSP, and there are multiple locations of install : but all are devices are under the same venue.<br />Then device local updates are best way to go about the upgradation. Via TFTP,USB etc.</p><p>If different locations are managed under different venues, there should be no issues in following this process/procedure.</p></li></ul>]]>
        </description>
    </item>
    <item>
        <title>Behavior changes in Quad Port group speed configuration between 8095 and 9010 firmware version</title>
        <link>https://community.ruckuswireless.com/discussion/76424/behavior-changes-in-quad-port-group-speed-configuration-between-8095-and-9010-firmware-version</link>
        <pubDate>Thu, 29 Feb 2024 16:47:36 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Chandini</dc:creator>
        <guid isPermaLink="false">76424@/discussions</guid>
        <description><![CDATA[<p><strong>Behavior noticed:</strong></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7850-48F Router(config)#interface eth 1/1/1</span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7850-48F Router(config-if-e25000-1/1/1)#speed-duplex 10g-full</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">This speed is not allowed on port 1/1/1 due to quad portgroup speed restriction(portgroup: 1/1/1 to 1/1/4)</span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7850-48F Router(config-if-e25000-1/1/1)#</span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7850-48F Router(config-if-e25000-1/1/1)#end</span></p><p><strong>Applicable ICX switch model:</strong></p><ul><li>7850-48F</li></ul><p><strong>If the switches are running version 8095 and below, then the below details will help you configure the quad port setting:</strong></p><p>If the switches are running version 8095 and below, then there is a workaround which will help you set individual ports to 10g or 1g.</p><p><strong>Example:</strong></p><p>In this case switch is running 8095m version</p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">ICX7850-48F Router(config)#int e 1/1/9 to 1/1/12</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">ICX7850-48F Router(config-mif-1/1/9-1/1/12)#speed-duplex 10g-full</span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7850-48F Router(config-mif-1/1/9-1/1/12)#exit</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">ICX7850-48F Router(config)#int e 1/1/9</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">ICX7850-48F Router(config-if-e25000-1/1/9)#speed-duplex 1000-full</span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7850-48F Router(config-if-e25000-1/1/9)#exit</span></p><p>From running configuration 8095m</p><p><span style="font-size: small; font-family: courier new,courier;">!</span></p><p><span style="font-size: small; font-family: courier new,courier;">interface ethernet 1/1/9</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;<span style="color: #339966;">speed-duplex 1000-full</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">!</span></p><p><span style="font-size: small; font-family: courier new,courier;">interface ethernet 1/1/10</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;speed-duplex 10G-full</span></p><p><span style="font-size: small; font-family: courier new,courier;">!</span></p><p><span style="font-size: small; font-family: courier new,courier;">interface ethernet 1/1/11</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;speed-duplex 10G-full</span></p><p><span style="font-size: small; font-family: courier new,courier;">!</span></p><p><span style="font-size: small; font-family: courier new,courier;">interface ethernet 1/1/12</span></p><p><span style="font-size: small; font-family: courier new,courier;">&nbsp;speed-duplex 10G-full</span></p><p>Port speed for port groups, cannot be changed individually. If required, the speed must be changed to all ports in the same quad-group and then we would be able to change speed to 1g on individual ports. This was a workaround in versions 8095 and below.</p><p><strong>If the switches are running version 9010 and above versions, then the below details will help you configure the quad port setting</strong><strong>:</strong></p><p>If the switches are running version 9010 and above, then there is no workaround which will help change speed on interfaces. It is only considering four ports in group to be set to same speed.</p><p><strong>Example:</strong></p><p>In this case switch is running 10.0.10b version</p><p><span style="font-size: small; font-family: courier new,courier;">ICX7850-48F Router(config)#int e 1/1/10</span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7850-48F Router(config-if-e25000-1/1/10)#speed-duplex 1000-full</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">This speed is not allowed on port 1/1/10 due to quad portgroup speed restriction(portgroup: 1/1/9 to 1/1/12)</span></p><p>From versions 9010 and above in 7850-48F model speed settings is a design change to maintain consistency to the port group.</p><p><strong>Details from documents:</strong></p><p><strong>Management guide for 8095 version:</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/10913iC083ABC13686FC31/image.png" width="802" height="105" role="button" title="Chandini_0-1709224807085.png" alt="Chandini_0-1709224807085.png" /></span></p><p><strong>Link:</strong> <a href="https://docs.commscope.com/bundle/fastiron-08095-managementguide/page/GUID-EDD7D44C-A627-4B76-A9FE-D7657FFF62D3.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-08095-managementguide/page/GUID-EDD7D44C-A627-4B76-A9FE-D7657FFF62D3.html</a></p><p><strong>Management guide for 9010 version:</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/10914iCF4FB0331B28E421/image.png" width="807" height="108" role="button" title="Chandini_1-1709224855739.png" alt="Chandini_1-1709224855739.png" /></span></p><p><strong>Link:</strong> <a href="https://docs.commscope.com/bundle/fastiron-09010-managementguide/page/GUID-EDD7D44C-A627-4B76-A9FE-D7657FFF62D3.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-09010-managementguide/page/GUID-EDD7D44C-A627-4B76-A9FE-D7657FFF62D3.html</a></p><p>&nbsp;</p><p>&nbsp;</p>]]>
        </description>
    </item>
    <item>
        <title>FQDNs and Ports that need to be open in Firewall for Ruckus One</title>
        <link>https://community.ruckuswireless.com/discussion/76386/fqdns-and-ports-that-need-to-be-open-in-firewall-for-ruckus-one</link>
        <pubDate>Thu, 29 Feb 2024 11:15:27 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>vasanth_edward</dc:creator>
        <guid isPermaLink="false">76386@/discussions</guid>
        <description><![CDATA[<p><span>To ensure proper communication between the APs and switches with RUCKUS One, customers must allow some FQDNs and Ports in their Firewall.</span></p>
<p><strong>Customer Environment</strong></p>
<p>APs and Switches deployed behind a firewall and inbound/outbound traffic needs to be allowed for successful communication between RUCKUS network devices and RUCKUS One.</p>
<p><strong>Symptoms</strong></p>
<p>Newly added APs and switches are in Never Contacted Cloud state, not joining RUCKUS One.</p>
<p><strong>Resolution</strong></p>
<p>To allow RUCKUS One to function properly, please configure your firewall to allow for outbound connectivity according to the following guidelines:<br />&nbsp;</p>
<p><strong>Outbound HTTPS (TCP 443) from APs and Switches to</strong>:</p>
<p><a href="https://ap-registrar.ruckuswireless.com" target="_blank" rel="noopener noreferrer nofollow">https://ap-registrar.ruckuswireless.com</a><br /><a target="_blank">https://sw-registrar.ruckuswireless.com</a><br /><a target="_blank">https://ocsp.comodoca.com</a><br /><a target="_blank">https://ocsp.entrust.net</a><br /><a target="_blank">https://ruckus.cloud</a><br /><a target="_blank">https://eu.ruckus.cloud</a><br /><a target="_blank">https://asia.ruckus.cloud</a><br /><a target="_blank">https://device.ruckus.cloud</a><br /><a target="_blank">https://device.eu.ruckus.cloud</a><br /><a target="_blank">https://device.asia.ruckus.cloud</a><br /><a target="_blank">https://storage.googleapis.com<br />http://ocsp.godaddy.com<br /></a></p>
<p><br /><strong>Outbound SSH (TCP 22) from APs and Switches to:</strong></p>
<p><a target="_blank">device.ruckus.cloud</a><br /><a target="_blank">device.eu.ruckus.cloud</a><br /><a target="_blank">device.asia.ruckus.cloud</a></p>
<p><br /><strong>Network Requirements</strong></p>
<p>The following list of firewall ports is required to allow APs to enable Cloud discovery and continued connection with the Cloud</p>
<p>Checking the firewall ports is the first step of troubleshooting if an AP is unable to connect to the Cloud or disconnects from the Cloud.</p>
<p><a href="https://docs.cloud.ruckuswireless.com/ruckusone/userguide/GUID-D00EA4CC-7B8A-4F99-969B-2A5FB5DDB178-low.png" target="_self" rel="noopener noreferrer nofollow">https://docs.cloud.ruckuswireless.com/ruckusone/userguide/GUID-D00EA4CC-7B8A-4F99-969B-2A5FB5DDB178-low.png</a>&nbsp;</p>
<p>If these information helped you in any way, please click on "KUDOs", so you can help other users.</p>]]>
        </description>
    </item>
    <item>
        <title>SCP error while loading shared libraries: libpthread.so.0: wrong ELF class: ELFCLASS64.</title>
        <link>https://community.ruckuswireless.com/discussion/76350/scp-error-while-loading-shared-libraries-libpthread-so-0-wrong-elf-class-elfclass64</link>
        <pubDate>Wed, 28 Feb 2024 17:16:10 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Smiley</dc:creator>
        <guid isPermaLink="false">76350@/discussions</guid>
        <description><![CDATA[<p><u><strong>Issue:</strong></u></p><p><span>Trying to upgrade or flash the 8200-switch to version RDR10010bufi.bin using the&nbsp;SCP (<span>Secure Copy Protocol)</span>&nbsp; but getting an error message: "</span><strong><i><span>scp: error while loading shared libraries: libpthread.so.0: wrong ELF class: ELFCLASS64.&nbsp;</span></i></strong><span>&nbsp;</span></p><p><span>Using servers for SCP upgrade on the switches.</span><span>&nbsp;</span></p><p><span>Command used to flash the Switch: "</span><i><span>scp RDR10010bufi.bin fdp@x.x.x.x: flash: primary</span></i><span>".&nbsp;</span><span>&nbsp;</span></p><p><span>Executing the command from the folder containing the firmware image on the local (Ubuntu) server.</span></p><p><strong><span><u>Solution</u>:</span></strong><span>&nbsp;</span></p><p><span>SCP push/pull from server is not allowed anymore.</span><span>&nbsp;<br /></span><span>SCP must be initiated from FI CLI only. This was a design/security change in 9.x/10. x.</span><span>&nbsp;<br /></span><span>SCP push/pull is being purposefully blocked in 9.x/10. x. It will not be added back in and was blocked as a security consideration.</span><span>&nbsp;</span></p><p><span>&nbsp;</span><span>We can use SCP via CLI with the help of the commands below.</span><span>&nbsp;</span></p><p><span>&nbsp;</span><strong><span>copy scp flash x.x.x.x RDR10010bufi.bin primary&nbsp;</span></strong><span>&nbsp;</span></p><p><strong><span>&nbsp;copy scp flash x.x.x.x RDR10010bufi.bin secondary</span></strong><span>&nbsp;</span></p><p><u>Link</u><strong><span>:</span></strong><span>&nbsp;<br /></span><a href="https://docs.commscope.com/en-US/bundle/fastiron-10000-upgradeguide/page/GUID-175F09E4-B932-4414-8DDE-A7567A916BC2.html" target="_blank" rel="noopener noreferrer nofollow"><span>https://support.ruckuswireless.com/documents/4298-fastiron-10-0-00-ga-software-upgrade-guide</span></a><span>&nbsp;</span></p><p>&nbsp;</p>]]>
        </description>
    </item>
    <item>
        <title>Using “no Web-management” &amp; “Web-management disable”does not disable both http and https connection</title>
        <link>https://community.ruckuswireless.com/discussion/76325/using-no-web-management-web-management-disable-does-not-disable-both-http-and-https-connection</link>
        <pubDate>Tue, 27 Feb 2024 16:56:36 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Chandini</dc:creator>
        <guid isPermaLink="false">76325@/discussions</guid>
        <description><![CDATA[<p><strong>Issue noticed:</strong></p><ol><li><strong>In firmware 8095k and 8095g below details were noticed</strong><ul><li>&nbsp;If you use <span style="font-size: small; font-family: courier new,courier;">“web-management http” and “web-management https” </span>command to enable http and https</li><li>Then you execute <span style="font-size: small; font-family: courier new,courier;">“no web-management”</span> the state of http and https remains enabled, and the command does not disable the http and https.</li><li>Here to disable we must use <span style="font-size: small; font-family: courier new,courier;">“no web-management http” and “no web-management https”</span> command to disable http and https.</li><li>If we use <span style="font-size: small; font-family: courier new,courier;">“web-management” </span>this enables both http and https</li><li>But if we use <span style="font-size: small; font-family: courier new,courier;">“no web-management http” and “no web-management https”</span> command to disable http and https it does not disable</li><li>Instead, when we use <span style="font-size: small; font-family: courier new,courier;">“no web-management” </span>both http and https is disabled.</li></ul></li><li><strong>In firmware 9010f and 1010a below details were noticed</strong><ul><li>In this version instead of <span style="font-size: small; font-family: courier new,courier;">“no web-management” and “web-management”, “web-management disable”</span> command is introduced.</li><li>Here we use <span style="font-size: small; font-family: courier new,courier;">“web-management http” and “web-management https”</span> command to enable http and https.</li><li>And after that if we use <span style="font-size: small; font-family: courier new,courier;">“web-management disable”</span> it will not disable both http and https</li><li>We again must use <span style="font-size: small; font-family: courier new,courier;">“no web-management http” and “no web-management https” </span>command to disable http and https.</li></ul></li></ol><p><strong>Lab test and outputs to validate if the issue is same as the scenario mentioned in this article:</strong></p><p><strong>Tested in firmware 8095k and 8095g:</strong></p><p>Using<span style="font-size: small; font-family: courier new,courier;"> “Web-management”</span> to enable both http and https and to disable we use <span style="font-size: small; font-family: courier new,courier;">“no web-management”</span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#show web</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTP server status: Disabled</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTPS server status: Disabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">No web connection.</span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#<span style="color: #339966;">web-management</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#show web</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTP server status: Enabled</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTPS server status: Enabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">No web connection.</span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#<span style="color: #339966;">no web-management</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#show web</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTP server status: Disabled</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTPS server status: Disabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">No web connection.</span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#</span></p><p>Now when we use <span style="font-size: small; font-family: courier new,courier;">“web-management http” and “web-management https” </span>to enable and using <span style="font-size: small; font-family: courier new,courier;">“no web-management” </span>to disable.</p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#<span style="color: #339966;">web-management http</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#<span style="color: #339966;">web-management https</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#show web</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTP server status: Enabled</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTPS server status: Enabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">No web connection.</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#<span style="color: #339966;">no web-management</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#show web</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTP server status: Enabled</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTPS server status: Enabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">No web connection.</span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#<span style="color: #339966;">no web-management http</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#<span style="color: #339966;">no web-management https</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">Note: ip ssl client continues to be in enabled mode if enabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#show web</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTP server status: Disabled</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTPS server status: Disabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">No web connection.</span></p><p>&nbsp;</p><p><strong>Tested in firmware 9010f and 1010a:</strong></p><p>Using <span style="font-size: small; font-family: courier new,courier;">“web-management http” and “web-management https”</span> to enable and <span style="font-size: small; font-family: courier new,courier;">“web-management disable”</span> to disable http and https</p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#show web</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTP server status: Disabled</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTPS server status: Disabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">No web connection.</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#<span style="color: #339966;">web-management http</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#<span style="color: #339966;">web-management https</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#show web</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTP server status: Enabled</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTPS server status: Enabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">No web connection.</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#<span style="color: #339966;">web-management disable</span></span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">Error - WebUI already disabled</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#show web</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTP server status: Enabled</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTPS server status: Enabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">No web connection.</span></p><p>&nbsp;</p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#<span style="color: #339966;">no web-management http</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#<span style="color: #339966;">no web-management https</span></span></p><p><span style="font-size: small; font-family: courier new,courier;">ICX7650-48ZP Switch(config)#show web</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTP server status: Disabled</span></p><p><span style="font-size: small; color: #339966; font-family: courier new,courier;">HTTPS server status: Disabled</span></p><p><span style="font-size: small; font-family: courier new,courier;">No web connection.</span></p><p>We can see notice that in both tests even when <span style="font-size: small; font-family: courier new,courier;">“no web-management”</span> in 8095 version and<span style="font-size: small; font-family: courier new,courier;"> “ web-management disable”</span> &nbsp;command is used in 9010 version the HTTP and HTTPS connection stays enabled.</p><p><strong>Solution:</strong></p><p>The above issue is fixed on below versions and logged with defect ID FI-279953</p><ul><li>For 8095 versions its fixed in 8095n</li><li>For 9010 versions fix in process in 9010k</li><li>For 10.0.10 versions fix in process in 10.0.10d</li></ul>]]>
        </description>
    </item>
    <item>
        <title>QoS: Quality of Service its benefits and how to deploy it effectively in a network.</title>
        <link>https://community.ruckuswireless.com/discussion/76268/qos-quality-of-service-its-benefits-and-how-to-deploy-it-effectively-in-a-network</link>
        <pubDate>Mon, 26 Feb 2024 16:48:34 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>jdryan</dc:creator>
        <guid isPermaLink="false">76268@/discussions</guid>
        <description><![CDATA[<p>QoS: Quality of Service, as the name implies, stands to improve the service of traffic in the network.<br />More specifically: traffic that otherwise would be suppressed due to huge amounts of frames flowing through.<br />This would generally be seen for VoIP traffic, audio streams, video streams: etc.<br /><br />Here, we'll look at 2 ways to deploy this solution.<br />1:&nbsp; &nbsp;The Application/Appliance based approach.<br />2: The Network-Based Approach<br /><br />The Application/Appliance based approach is slightly less detail-oriented on the configuration for the network equipment, as the application or source that's generating the specific traffic that needs prioritization will also mark it with the necessary priority it needs [ this depends on the application settings]<br />And on the network, we would just have to honor the marking.<br />Whereas on the Network-Based Approach: the network would mark and honor both: hence, that's a bit detail-oriented.<br /><br />Now what’s the marking?<br />The marking stands for the DSCP bits that are added to the frame/packet.<br />This DSCP, or differentiated services code point, is used by network switches and routers to have the frame/packet be parsed over a queue that’s mapped or aligned to the DSCP value.<br /><br />On ICX switches, use “show qos-tos” to know the DSCP &lt;&gt; 802.1p priority mapping.</p><p>#sh qos-tos</p><p>DSCP--&gt;Traffic-Class map: (DSCP = d1d2: 00, 01...63)</p><p>&nbsp;</p><p>&nbsp;&nbsp;d2&nbsp;&nbsp; |&nbsp; 0&nbsp;&nbsp; 1&nbsp;&nbsp; 2&nbsp;&nbsp; 3&nbsp;&nbsp; 4&nbsp;&nbsp; 5&nbsp;&nbsp; 6&nbsp;&nbsp; 7&nbsp;&nbsp; 8&nbsp;&nbsp; 9</p><p>&nbsp; d1&nbsp;&nbsp; |</p><p>&nbsp; -----+----------------------------------------</p><p>&nbsp;&nbsp; 0&nbsp;&nbsp; |&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 0&nbsp;&nbsp; 1&nbsp;&nbsp; 1</p><p>&nbsp;&nbsp; 1&nbsp;&nbsp; |&nbsp; 1&nbsp;&nbsp; 1&nbsp;&nbsp; 1&nbsp;&nbsp; 1&nbsp;&nbsp; 1&nbsp;&nbsp; 1&nbsp;&nbsp; 2&nbsp;&nbsp; 2&nbsp;&nbsp; 2&nbsp;&nbsp; 2</p><p>&nbsp;&nbsp; 2&nbsp; &nbsp;|&nbsp; 2&nbsp;&nbsp; 2&nbsp;&nbsp; 2&nbsp;&nbsp; 2&nbsp;&nbsp; 3&nbsp;&nbsp; 3&nbsp;&nbsp; 3&nbsp;&nbsp; 3&nbsp;&nbsp; 3&nbsp;&nbsp; 3</p><p>&nbsp;&nbsp; 3&nbsp;&nbsp; |&nbsp; 3&nbsp;&nbsp; 3&nbsp;&nbsp; 4&nbsp;&nbsp; 4&nbsp;&nbsp; 4&nbsp;&nbsp; 4&nbsp;&nbsp; 4&nbsp;&nbsp; 4&nbsp;&nbsp; 4&nbsp;&nbsp; 4</p><p>&nbsp;&nbsp; 4&nbsp;&nbsp; |&nbsp; 5&nbsp;&nbsp; 5&nbsp;&nbsp; 5&nbsp;&nbsp; 5&nbsp;&nbsp; 5&nbsp;&nbsp; 5&nbsp;&nbsp; 5&nbsp;&nbsp; 5&nbsp;&nbsp; 6&nbsp;&nbsp; 6</p><p>&nbsp;&nbsp; 5&nbsp;&nbsp; |&nbsp; 6&nbsp;&nbsp; 6&nbsp;&nbsp; 6&nbsp;&nbsp; 6&nbsp;&nbsp; 6&nbsp;&nbsp; 6&nbsp;&nbsp; 7&nbsp;&nbsp; 7&nbsp;&nbsp; 7&nbsp;&nbsp; 7</p><p>&nbsp;&nbsp; 6&nbsp;&nbsp; |&nbsp; 7&nbsp;&nbsp; 7&nbsp;&nbsp; 7&nbsp;&nbsp; 7</p><p>&nbsp;</p><p>Traffic-Class--&gt;802.1p-Priority map (use to derive DSCP--802.1p-Priority):</p><p>&nbsp;</p><p>Traffic | 802.1p</p><p>Class&nbsp;&nbsp; | Priority</p><p>--------+---------</p><p>&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp; 0</p><p>&nbsp;&nbsp; 1&nbsp;&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp; 1</p><p>&nbsp;&nbsp; 2&nbsp;&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp; 2</p><p>&nbsp;&nbsp; 3&nbsp;&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp; 3</p><p>&nbsp;&nbsp; 4&nbsp;&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp; 4</p><p>&nbsp;&nbsp; 5&nbsp;&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp; 5</p><p>&nbsp;&nbsp; 6&nbsp;&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp; 6</p><p>&nbsp;&nbsp; 7&nbsp;&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp; 7</p><p>--------+---------</p><p>&nbsp;</p><p>That 802.1p priority is then in turn mapped to HW buffer-queues: this can be configured as well: however: this is an in-depth config/details: same is not needed in the overview of this discussion.</p><p>&nbsp;</p><p>In case, for further reading on the same: refer: <a href="https://support.ruckuswireless.com/documents/4470-fastiron-10-0-10-ga-qos-and-traffic-management-configuration-guide" target="_blank" rel="noopener noreferrer nofollow">https://support.ruckuswireless.com/documents/4470-fastiron-10-0-10-ga-qos-and-traffic-management-configuration-guide</a></p><p>Quality of Service 10.0.10</p><p>&nbsp;</p><p>This entails all details of how the bits and bytes work behind the scenes on the HW and how that can be configured to a specific preference.</p><p>&nbsp;</p><p>Now back to the above 2 methods:<br />1 &gt; the Application/Appliance based approach.<br />2 &gt; the Network Based Approach<br /><br /><u>For the Application based approach:</u><br />Let’s consider the application Zoom: here the system admins have the option to have the Zoom clients installed on the PCs to have the traffic generated, and marked before it's sent out.<br />And this will mark only the traffic generated by the Zoom application.<br />Link:<br /><a href="https://support.zoom.us/hc/en-us/articles/207368756-Using-QoS-DSCP-Marking" target="_blank" rel="noopener nofollow noreferrer">https://support.zoom.us/hc/en-us/articles/207368756-Using-QoS-DSCP-Marking</a></p><p>As this is marked on the network: all that’s needed is on the interfaces to: trust the incoming DSCP marking.<br />Command to be used on ports:<br />Router#conf t<br />Router (config)#int eth 1/1/4<br />Router (config-if-e1000-1/1/4)#trust dscp</p><p>And that should help you achieve the task.<br /><br /><u>For the Network Based Approach</u> :<br />Let’s consider the application MS Teams: here the application rules specify: that there are 3 specific traffic it generates: audio, video, and application/screen sharing<br />Link<br /><a href="https://learn.microsoft.com/en-us/microsoftteams/qos-in-teams" target="_blank" rel="noopener nofollow noreferrer">https://learn.microsoft.com/en-us/microsoftteams/qos-in-teams</a></p><p>And this traffic flows over the below TCP/UDP ports :</p><p>&nbsp;</p><table><tbody><tr><td style="width: 181px;"><p><strong>Media traffic type</strong></p></td><td style="width: 168px;"><p><strong>Client source port range</strong></p></td><td style="width: 74px;"><p><strong>Protocol</strong></p></td><td style="width: 89px;"><p><strong>DSCP value</strong></p></td><td style="width: 141px;"><p><strong>DSCP class</strong></p></td></tr><tr><td style="width: 181px;"><p>Audio</p></td><td style="width: 166px;"><p>50,000–50,019</p></td><td style="width: 75px;"><p>TCP/UDP</p></td><td style="width: 87px;"><p>46</p></td><td style="width: 172px;"><p>Expedited Forwarding (EF)</p></td></tr><tr><td style="width: 181px;"><p>Video</p></td><td style="width: 166px;"><p>50,020–50,039</p></td><td style="width: 75px;"><p>TCP/UDP</p></td><td style="width: 87px;"><p>34</p></td><td style="width: 175px;"><p>Assured Forwarding (AF41)</p></td></tr><tr><td style="width: 183px;"><p>Application/Screen Sharing</p></td><td style="width: 166px;"><p>50,040–50,059</p></td><td style="width: 75px;"><p>TCP/UDP</p></td><td style="width: 87px;"><p>18</p></td><td style="width: 175px;"><p>Assured Forwarding (AF21)</p></td></tr></tbody></table><p>&nbsp;</p><p><span style="font-size: xx-small;">From &lt;<a href="https://learn.microsoft.com/en-us/microsoftteams/qos-in-teams" target="_blank" rel="noopener nofollow noreferrer"><em>https://learn.microsoft.com/en-us/microsoftteams/qos-in-teams</em></a>&gt;</span></p><p>&nbsp;</p><p>Hence here comes the challenge: how do we mark it and honor it?</p><p>In remote settings, we cannot.<br />But in a setting of the organization: where all users use the common LAN: this can be done in the below manner.</p><p>Suppose the network layout is as below [it is usually more complicated than this ]: where we have the core layer or device where all traffic aggregates/converges be it going out to the internet or coming into the site from the internet.</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/10873iC2489E94D5E5F9BB/image.png" role="button" title="jdryan_0-1708965870839.png" alt="jdryan_0-1708965870839.png" /></span></p><p><span style="font-size: xx-small;"><em>Courtesy Google Images.</em></span></p><p>That’s usually the core router or the multilayered switch that’s designated as the core router.<br /><br />Here, the implementation of a QoS policy for marking needs to be done for the above-mentioned range of TCP/UDP ports to those DSCPs.<br /><br />Once this is done: on the subsequent downstream devices [ switches ]: the incoming traffic needs to be trusted for dscp for the markings to be honored.<br /><br /></p><p>Now what would a QOS policy look like: as we make use of ACL based marking system: we define it as below:<br /><br />ip access-list extended qos<br />sequence 1 permit tcp any any eq 50000 dscp-marking 46<br />sequence 2 permit tcp any any eq 50001 dscp-marking 46<br />…………<br />sequence 151 permit udp any any eq 50058 dscp-marking 46<br />sequence 152 permit udp any any eq 50059 dscp-marking 46<br /><br />Once the same is defined :<br />• under Layer 2 vlan that is defined for the users and its Virtual interface (ve) is defined with the IP address for the subnet<br />• Have the ACL called on the VLAN as an inbound ACL<br /><br />As below :<br /><br />Router(config)#vlan 2<br />Router(config-vlan-2)#ip access-group qos in<br />Warning: Binding of large ACL Operation may take few minutes<br /><br /><br />Once this is done: any traffic coming in on the Vlan 2 will have its frames marked.<br /><br />Post this, with the trust dscp: on the downstream devices' interfaces, should ensure it getting honored as well.<br /><br />Note :<br />In the above policy, the same is shortened for reading purposes,<br />When setting up the same: statements for both TCP and UDP need to be added, individually.</p><p>&nbsp;</p><p>&nbsp;</p>]]>
        </description>
    </item>
    <item>
        <title>ICX keeps asking for password even after password reset.</title>
        <link>https://community.ruckuswireless.com/discussion/71569/icx-keeps-asking-for-password-even-after-password-reset</link>
        <pubDate>Thu, 16 Nov 2023 17:17:28 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>jeisson_diaz</dc:creator>
        <guid isPermaLink="false">71569@/discussions</guid>
        <description><![CDATA[<p>Whenever an ICX is stuck in password prompt and the given procedure on article <em>How to recover from a lost password ICX switches</em>&nbsp;<a rel="nofollow" href="https://community.ruckuswireless.com/t5/RUCKUS-Self-Help/How-to-recover-from-a-lost-password-ICX-switches/m-p/52396#M74" target="_self">https://community.ruckuswireless.com/t5/RUCKUS-Self-Help/How-to-recover-from-a-lost-password-ICX-switches/m-p/52396#M74</a>&nbsp;does not work:</p><p>&nbsp;</p><p>You most likely have to completely wipe out the configuration and treat the ICX as a completely factory default settings switch.</p><p>To do this, it depends on the software version the device is running, please see the steps below:</p><p><br /><u><strong>08.0.90 - 08.0.95 codes:</strong></u></p><p>1- Press Ctrl + Y, release the keys then immediately press M + Enter.</p><p>2- Once you are in OS mode, enter <strong><em>reset&nbsp;</em></strong></p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OS&gt;<strong>reset</strong></p><p>3- Press "<strong>b</strong>" continuously to enter into boot mode:</p><p>Enter 'b' to stop at boot monitor: 0<br />ICX77xx-Boot&gt; <strong>bbbbbbbbbbbbbbbbbbb</strong>&lt;INTERRUPT&gt;</p><p>4- Enter the command&nbsp;<strong><em>factory set-default</em> </strong></p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ICX77xx-Boot&gt; <strong>factory set-default</strong><br />Execution of "factory set-default" will remove all user data like config, keys etc.</p><p>5- Enter capital Y to confirm:</p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Do you want to continue? (Y/N)<strong>Y</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9799i586D6CE46C2E4827/image.png" width="623" height="173" role="button" title="jeisson_diaz_0-1700154570793.png" alt="jeisson_diaz_0-1700154570793.png" /></span></p><p>&nbsp;</p><p>6- Enter the command&nbsp;<strong><em>boot</em></strong></p><p>7- The swill will boot up and it will ask for default credentials.<br />username: super<br />password: sp-admin<br />Then, you will be able to create a new password.</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9800iAA4CE844FF800C68/image.png" width="624" height="236" role="button" title="jeisson_diaz_1-1700154613869.png" alt="jeisson_diaz_1-1700154613869.png" /></span></p><p>&nbsp;</p><p>&nbsp;</p><p><u><strong>09.0.10 - 10.0.10 codes:</strong></u></p><p>1-&nbsp;Press Ctrl + Y</p><p>2- Once you are in OS mode, enter <em><strong>reboot&nbsp;</strong></em></p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OS&gt;<strong>reboot</strong></p><p>3- Press "<strong>b</strong>" continuously to enter into boot mode:</p><p>Enter 'b' to stop at boot monitor: 0<br />ICX77xx-Boot&gt; <strong>bbbbbbbbbbbbbbbbbbb</strong>&lt;INTERRUPT&gt;</p><p>4- Enter the command&nbsp;<em><strong>factory set-default</strong></em></p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ICX77xx-Boot&gt; <strong>factory set-default</strong><br />Execution of "factory set-default" will remove all user data like config, keys etc.</p><p>5- Enter capital Y to confirm:</p><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Do you want to continue? (Y/N)<strong>Y</strong></p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9796iDAF72377D1057C38/image.png" width="665" height="185" role="button" title="jeisson_diaz_0-1700153781316.png" alt="jeisson_diaz_0-1700153781316.png" /></span></p><p>6- Enter the command&nbsp;<em><strong>boot</strong></em></p><p>7- The swill will boot up and it will ask for default credentials.&nbsp;</p><p>username: super</p><p>password: sp-admin</p><p>Then, you will be able to create a new password.</p><p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9798i936C9CB41C57977D/image.png" width="670" height="253" role="button" title="jeisson_diaz_2-1700154248148.png" alt="jeisson_diaz_2-1700154248148.png" /></span></p><p>&nbsp;</p><p>I hope this helps!</p>]]>
        </description>
    </item>
    <item>
        <title>Methods for Collecting Support Save from ICX Switches</title>
        <link>https://community.ruckuswireless.com/discussion/71219/methods-for-collecting-support-save-from-icx-switches</link>
        <pubDate>Wed, 08 Nov 2023 12:57:41 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Vásquez_Fer</dc:creator>
        <guid isPermaLink="false">71219@/discussions</guid>
        <description><![CDATA[<p>Supportsave gathers logs that are particularly valuable for diagnosing issues, especially those occurring during unexpected system restarts.</p>
<p>This feature is designed to collect logs from various ICX modules, which can then be shared with technical support for thorough investigation. RUCKUS advises running support save prior to firmware upgrades to ensure the availability of essential information in the event of any complications.</p>
<p>Available options :</p>
<p>1) <strong>TFTP / SCP&nbsp;</strong></p>
<p>This option facilitates the retrieval of Support Save files through an external server using TFTP or SCP.</p>
<p>Command example:</p>
<p>TFTP :</p>
<pre>supportsave all &lt;Tftp_IP_Address&gt; &lt;File_name&gt;</pre>
<p>SCP :</p>
<pre>supportsave all &lt;SCP_IP_Address&gt; &lt;File_name&gt;</pre>
<p>Official data: <a href="https://docs.commscope.com/bundle/fastiron-09010-debugcommandref/page/GUID-461F5776-AB07-4D39-924D-EE4F0C425FF9.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-09010-debugcommandref/page/GUID-461F5776-AB07-4D39-924D-EE4F0C425FF9.html</a></p>
<p>Video link as reference: <a href="https://www.youtube.com/watch?v=QndYv7igZe4" target="_blank" rel="noopener nofollow noreferrer">https://www.youtube.com/watch?v=QndYv7igZe4</a></p>
<p>2)&nbsp;&nbsp;<strong>Via Smart Zone / Virtual Smart Zone</strong></p>
<p>If the Switch is connected to a Smart Zone or Virtual Smart Zone, the download can be initiated from the controller dashboard via web.</p>
<p><strong>Network</strong> &gt; <strong>Switches </strong></p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9688i67F4DA33274BE95C/image.png" role="button" title="Vsquez_Fer_0-1699447909687.png" alt="Vsquez_Fer_0-1699447909687.png" /></span></p>
<p>If the switch is part of a specific group, choose that group, and then select the switch on which you want to save the support save.</p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9689iC47855C1FEF00A51/image.png" role="button" title="Vsquez_Fer_1-1699447909693.png" alt="Vsquez_Fer_1-1699447909693.png" /></span></p>
<p>Next, click on 'More', and then select the 'Download Support Logs' option.</p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9690i6253EABFF12CD250/image.png" role="button" title="Vsquez_Fer_2-1699447909699.png" alt="Vsquez_Fer_2-1699447909699.png" /></span></p>
<p>Upon clicking, an option will emerge, asking whether you wish to download the file. Subsequently, the file will be downloaded to your local machine.</p>
<p>&nbsp;</p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9691iB3FB36472CD8BA2C/image.png" role="button" title="Vsquez_Fer_3-1699447909701.png" alt="Vsquez_Fer_3-1699447909701.png" /></span></p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9692iE25B6954B126FE88/image.png" role="button" title="Vsquez_Fer_4-1699447986531.png" alt="Vsquez_Fer_4-1699447986531.png" /></span></p>
<p>3) <strong>Via Web UI</strong></p>
<p><span style="color: #FF0000;"><strong>This option is only available for versions 9010 or higher.</strong></span></p>
<p>Login into the Web UI in the ICX</p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9694i3FC870B3D95FFE16/image.png" role="button" title="Vsquez_Fer_5-1699448031481.png" alt="Vsquez_Fer_5-1699448031481.png" /></span></p>
<p><strong>Management &gt; Infra</strong>.</p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9695i6D40D33AE285CEB6/image.png" role="button" title="Vsquez_Fer_6-1699448031486.png" alt="Vsquez_Fer_6-1699448031486.png" /></span></p>
<p>In the SUPPORT SAVE panel, click on 'Start' to start downloading the files.</p>
<p>Note: To cancel an ongoing supportsave operation, click 'Cancel'. While the cancellation is in progress, the 'Start' and 'Cancel' options will be unavailable. These options will become accessible again once the cancellation is complete.</p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9697i24AC88B83A42B182/image.png" role="button" title="ruckus.png" alt="ruckus.png" /></span></p>
<p>Note: If you are running supportsave from the web interface for the first time, you must select Allow in the dialog box requesting permission to download multiple files to start the multiple file download.</p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9693iAE20470C8E967455/image.png" role="button" title="Vsquez_Fer_7-1699448031487.png" alt="Vsquez_Fer_7-1699448031487.png" /></span></p>
<p>Once the file is downloaded, it will be in the 'Downloads' folder in the local machine.</p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/9696iBA1E152938CB9161/image.png" role="button" title="Vsquez_Fer_8-1699448031493.png" alt="Vsquez_Fer_8-1699448031493.png" /></span></p>
<p>Official data: <a href="https://docs.commscope.com/bundle/fastiron-10010-webguide/page/GUID-06CD7A36-3E4D-48EE-8A02-D29C59069989.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-10010-webguide/page/GUID-06CD7A36-3E4D-48EE-8A02-D29C59069989.html</a></p>]]>
        </description>
    </item>
    <item>
        <title>Securing Networks with STP Protect and BPDU Guard</title>
        <link>https://community.ruckuswireless.com/discussion/75121/securing-networks-with-stp-protect-and-bpdu-guard</link>
        <pubDate>Sat, 27 Jan 2024 13:44:18 +0000</pubDate>
        <category>RUCKUS Self-Help</category>
        <dc:creator>Vásquez_Fer</dc:creator>
        <guid isPermaLink="false">75121@/discussions</guid>
        <description><![CDATA[<p>STP Protect is designed to enhance network stability by causing a port to drop STP BPDUs originating from the device connected at the other end of the link. The primary function of this STP protection is to prevent end stations from either initiating or engaging in changes to the STP topology. This feature is crucial for maintaining a consistent and stable network structure, especially in environments where end stations should not influence the network's layout or data flow paths.</p>
<p>STP Protection Enhancement&nbsp;<a href="https://docs.commscope.com/bundle/fastiron-09010-l2guide/page/GUID-A4F0188F-A7FE-49D3-A79D-5E48AC481E0E.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-09010-l2guide/page/GUID-A4F0188F-A7FE-49D3-A79D-5E48AC481E0E.html</a></p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/10610iF11EC5C9BE8ECC3F/image.png" role="button" title="Vsquez_Fer_0-1706362611909.png" alt="Vsquez_Fer_0-1706362611909.png" /></span></p>
<p>&nbsp;</p>
<p>The BPDU Guard feature is a&nbsp; security measure in Layer 2 Spanning Tree Protocol (STP) networks, designed to defend against BPDU-related threats and prevent accidental misconfigurations. When enabled on an access port, BPDU Guard ensures that if a BPDU is received, the port will enter an error-disabled state. Recovery from this state requires a manual shutdown and restart of the interface or configuring an auto recovery.</p>
<p>Re-enabling ports disabled by BPDU guard :&nbsp; <a href="https://docs.commscope.com/bundle/fastiron-08090-l2guide/page/GUID-072E446B-D157-4815-8C02-E5EA4D2D50C8.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-08090-l2guide/page/GUID-072E446B-D157-4815-8C02-E5EA4D2D50C8.html</a></p>
<p>Enabling an error-disabled port automatically : <a href="https://docs.commscope.com/bundle/fastiron-08090-l2guide/page/GUID-5B6686B1-CAAB-44FA-B2EB-2854B0805950.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-08090-l2guide/page/GUID-5B6686B1-CAAB-44FA-B2EB-2854B0805950.html</a></p>
<p>&nbsp;</p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/10609i37AD71E566D34A90/image.png" role="button" title="Vsquez_Fer_1-1706362611924.png" alt="Vsquez_Fer_1-1706362611924.png" /></span></p>
<p><span><img src="https://us.v-cdn.net/6038795/uploads/khoros_attachments/10608i597A89745EE92F1E/image.png" role="button" title="Vsquez_Fer_2-1706362611938.png" alt="Vsquez_Fer_2-1706362611938.png" /></span></p>
<p>Ruckus's implementation of 802.1W allows for the configuration of Edge ports in the network topology. Edge ports, typically connecting to workstations or computers, do not process incoming BPDUs and are assumed to have Designated port roles.</p>
<p>&nbsp;These ports are not considered in STP calculations, meaning that port flapping on Edge ports does not trigger topology change events. This makes Edge ports a critical component in maintaining the stability and security of the network.</p>
<p>Edge ports and edge port roles &nbsp;<a href="https://docs.commscope.com/bundle/fastiron-08090-l2guide/page/GUID-27AA7467-42F3-4D32-81EB-975051BA3562.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-08090-l2guide/page/GUID-27AA7467-42F3-4D32-81EB-975051BA3562.html</a></p>
<p>Configuring 802.1W Rapid Spanning Tree Protocol &nbsp;<a href="https://docs.commscope.com/bundle/fastiron-09010-l2guide/page/GUID-A7C9E7F9-8349-4B09-82D5-A4AA81723673.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.commscope.com/bundle/fastiron-09010-l2guide/page/GUID-A7C9E7F9-8349-4B09-82D5-A4AA81723673.html</a></p>
<p>As Summary STP Protect concentrates on ensuring the stability of the STP network. In contrast, BPDU Guard serves as a security feature that safeguards the network against detrimental BPDU packets. This protection helps prevent complications such as STP loops and unauthorized alterations in the network topology.</p>
<p><span>For additional information, please refer to the Layer 2 guide available on the support portal.</span></p>
<p><a href="https://support.ruckuswireless.com/documents/4465-fastiron-10-0-10-ga-layer-2-switching-configuration-guide" target="_blank" rel="noopener noreferrer nofollow">https://support.ruckuswireless.com/documents/4465-fastiron-10-0-10-ga-layer-2-switching-configuration-guide</a></p>]]>
        </description>
    </item>
   </channel>
</rss>
