<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Flexible Authentication via RESTCONF in ICX Switches</title>
    <link>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/78414#M5478</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Thank you, Chandini. I really appreciate your reply.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Apr 2024 15:38:16 GMT</pubDate>
    <dc:creator>KlondikeU</dc:creator>
    <dc:date>2024-04-22T15:38:16Z</dc:date>
    <item>
      <title>Flexible Authentication via RESTCONF</title>
      <link>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/74700#M5189</link>
      <description>&lt;P&gt;I'm working on setting up flexible authentication on an ICX 7150 switch and need some help configuring the fail-action using the RESTCONF API. Typically, in CLI, I would use this command:&lt;/P&gt;&lt;P&gt;authentication fail-action restricted-vlan 2&lt;/P&gt;&lt;P&gt;I've gone through the RESTCONF API guide but it seems like this specific configuration might not be possible in the same way. I'm reaching out to see if anyone else has encountered this issue or if I'm missing something in the documentation.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2024 18:10:38 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/74700#M5189</guid>
      <dc:creator>KlondikeU</dc:creator>
      <dc:date>2024-01-17T18:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: Flexible Authentication via RESTCONF</title>
      <link>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/74810#M5196</link>
      <description>&lt;P&gt;Hi KlondikeU&lt;/P&gt;&lt;P&gt;Thank you for reaching us&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Could you please let me know what is the version running on the switch ?&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 17:05:12 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/74810#M5196</guid>
      <dc:creator>Chandini</dc:creator>
      <dc:date>2024-01-19T17:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Flexible Authentication via RESTCONF</title>
      <link>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/74816#M5197</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Chandini,&lt;/P&gt;&lt;P&gt;Thanks for the reply. The version on the switch is 09.0.10eT211&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 21:09:51 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/74816#M5197</guid>
      <dc:creator>KlondikeU</dc:creator>
      <dc:date>2024-01-19T21:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: Flexible Authentication via RESTCONF</title>
      <link>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/74972#M5200</link>
      <description>&lt;P&gt;Hi KlondikeU&lt;/P&gt;&lt;P&gt;Thank you for reverting back to us&lt;/P&gt;&lt;P&gt;I'll need some time to check with regard to the query you have. Let me check and get back to you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 11:38:50 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/74972#M5200</guid>
      <dc:creator>Chandini</dc:creator>
      <dc:date>2024-01-23T11:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Flexible Authentication via RESTCONF</title>
      <link>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/75612#M5227</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi KlondikeU&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sorry for the delay. It took me sometime to look for details about the command you were looking for. After checking internally I&amp;nbsp;could find the below option which matched the command you mentioned.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;curl -X PATCH&amp;nbsp;&amp;nbsp;-H "Content-Type: application/json" -d @fail_action.json https://&amp;lt;host&amp;gt;/restconf/data/authentication/config -u test:test1234 --insecure&lt;/PRE&gt;&lt;PRE&gt;fail_action.json

{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"config": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"fail-action": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"fail-action": "restricted-vlan"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
}&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Link which I&amp;nbsp;referred is below:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;FONT face="courier new,courier" size="2"&gt;&lt;SPAN&gt;&lt;A href="https://docs.commscope.com/bundle/fi-09010-restconfguide/page/GUID-6DA5EBF9-4DD0-4A80-9222-85715C2E975B.html" target="_blank" rel="noopener"&gt;https://docs.commscope.com/bundle/fi-09010-restconfguide/page/GUID-6DA5EBF9-4DD0-4A80-9222-85715C2E975B.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;I hope this helps&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 12:22:48 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/75612#M5227</guid>
      <dc:creator>Chandini</dc:creator>
      <dc:date>2024-02-08T12:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Flexible Authentication via RESTCONF</title>
      <link>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/78414#M5478</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Thank you, Chandini. I really appreciate your reply.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 15:38:16 GMT</pubDate>
      <guid>https://community.ruckuswireless.com/t5/ICX-Switches/Flexible-Authentication-via-RESTCONF/m-p/78414#M5478</guid>
      <dc:creator>KlondikeU</dc:creator>
      <dc:date>2024-04-22T15:38:16Z</dc:date>
    </item>
  </channel>
</rss>

