<?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: Powershell ONTAP 9.6 | &amp;quot;network connection active show&amp;quot; in Software Development Kit (SDK) and API Discussions</title>
    <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Powershell-ONTAP-9-6-quot-network-connection-active-show-quot/m-p/155399#M3021</link>
    <description>&lt;P&gt;I was not able to locate a suitable cmdlet in the PSTK (or an API call, actually) after looking quickly. If your environment allows for SSH, you could use the Invoke-NcSsh command like so (after connecting to a controller, of course):&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Invoke-NcSsh -Command "network connections active show" &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Apr 2020 13:53:35 GMT</pubDate>
    <dc:creator>donny_lang</dc:creator>
    <dc:date>2020-04-08T13:53:35Z</dc:date>
    <item>
      <title>Powershell ONTAP 9.6 | "network connection active show"</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Powershell-ONTAP-9-6-quot-network-connection-active-show-quot/m-p/155379#M3020</link>
      <description>&lt;P&gt;Hello, everyone,&lt;BR /&gt;I am looking for the PowerShell cmdlet that performs the ONTAP command "network connection active show". Does anyone have an idea how I can get it to work in PowerShell?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 11:13:59 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Powershell-ONTAP-9-6-quot-network-connection-active-show-quot/m-p/155379#M3020</guid>
      <dc:creator>PMensing</dc:creator>
      <dc:date>2025-06-04T11:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell ONTAP 9.6 | "network connection active show"</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Powershell-ONTAP-9-6-quot-network-connection-active-show-quot/m-p/155399#M3021</link>
      <description>&lt;P&gt;I was not able to locate a suitable cmdlet in the PSTK (or an API call, actually) after looking quickly. If your environment allows for SSH, you could use the Invoke-NcSsh command like so (after connecting to a controller, of course):&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Invoke-NcSsh -Command "network connections active show" &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2020 13:53:35 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Powershell-ONTAP-9-6-quot-network-connection-active-show-quot/m-p/155399#M3021</guid>
      <dc:creator>donny_lang</dc:creator>
      <dc:date>2020-04-08T13:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell ONTAP 9.6 | "network connection active show"</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Powershell-ONTAP-9-6-quot-network-connection-active-show-quot/m-p/155528#M3024</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;thanks for your answer. What is the best way to filter the whole thing afterwards? If I see it right I will get a long string with all active network connections. I haven't found the right approach to use the data yet.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2020 14:57:44 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Powershell-ONTAP-9-6-quot-network-connection-active-show-quot/m-p/155528#M3024</guid>
      <dc:creator>PMensing</dc:creator>
      <dc:date>2020-04-14T14:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Powershell ONTAP 9.6 | "network connection active show"</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Powershell-ONTAP-9-6-quot-network-connection-active-show-quot/m-p/155529#M3025</link>
      <description>&lt;P&gt;That cmdlet is just sending an SSH command to the cluster, so you can filter it the same way you can filter within the ONTAP CLI:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;lab-clst-01::&amp;gt; network connections active show ?&lt;BR /&gt;[ -instance | -print-ip-addresses | -fields &amp;lt;fieldname&amp;gt;, ... ]&lt;BR /&gt;[[-node] &amp;lt;nodename&amp;gt;] Node&lt;BR /&gt;[[-cid] &amp;lt;Cid&amp;gt;] Connection ID&lt;BR /&gt;[ -vserver &amp;lt;vserver&amp;gt; ] Vserver&lt;BR /&gt;[ -lif-name &amp;lt;lif-name&amp;gt; ] Logical Interface Name&lt;BR /&gt;[ -local-address &amp;lt;IP Address&amp;gt; ] Local IP address&lt;BR /&gt;[ -local-port &amp;lt;integer&amp;gt; ] Local Port&lt;BR /&gt;[ -remote-ip &amp;lt;InetAddress&amp;gt; ] Remote IP Address&lt;BR /&gt;[ -remote-host &amp;lt;Remote IP&amp;gt; ] Remote Host&lt;BR /&gt;[ -remote-port &amp;lt;integer&amp;gt; ] Remote Port&lt;BR /&gt;[ -proto {UDP|TCP} ] Protocol&lt;BR /&gt;[ -lifid &amp;lt;integer&amp;gt; ] Logical Interface ID&lt;BR /&gt;[ -service &amp;lt;protocol service&amp;gt; ] Protocol Service&lt;BR /&gt;[ -lru {yes|no} ] Least Recently Used&lt;BR /&gt;[ -blocks-lb {true|false} ] Connection Blocks Load Balance Migrate&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2020 15:05:21 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Powershell-ONTAP-9-6-quot-network-connection-active-show-quot/m-p/155529#M3025</guid>
      <dc:creator>donny_lang</dc:creator>
      <dc:date>2020-04-14T15:05:21Z</dc:date>
    </item>
  </channel>
</rss>

