<?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: Get-NcStorageAdapterInfo for specific node in Microsoft Virtualization Discussions</title>
    <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/115717#M4738</link>
    <description>&lt;P&gt;Thanks Andrew!&lt;/P&gt;</description>
    <pubDate>Fri, 12 Feb 2016 20:19:10 GMT</pubDate>
    <dc:creator>JIATI0111</dc:creator>
    <dc:date>2016-02-12T20:19:10Z</dc:date>
    <item>
      <title>Get-NcStorageAdapterInfo for specific node</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/114446#M4646</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm putting together a script to document SAS cabling for a FAS8040.&amp;nbsp; I have two nodes in the cluster node-01 and node-02.&amp;nbsp; I need to get the Adapter BaseWWN for each port on each node, which I can get by the following Powershell command&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(Get-NcStorageAdapterInfo -Name 0a -Node node-01).AdapterDetailInfo.AdapterSas.AdapterSasInfo&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My issue comes when I try to get the info for node-02.&amp;nbsp; No matter what I put in the node parameter (including invalid node names), I get the info from node-01.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tried connecting to the individual nodes via Connect-NcController with the same results.&amp;nbsp; When I don't include the node parameter, I only get the node-01 data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any thoughts or insights would be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Medvitz&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 22:22:18 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/114446#M4646</guid>
      <dc:creator>Medvitz</dc:creator>
      <dc:date>2025-06-04T22:22:18Z</dc:date>
    </item>
    <item>
      <title>Re: Get-NcStorageAdapterInfo for specific node</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/114447#M4647</link>
      <description>&lt;P&gt;I'm just curious, why you want to document SAS cabling.. this is all done on the Now site under myautosupport?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Youre command looks, ok&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;((Get-NcStorageAdapterInfo -Name 0a -Node node1).AdapterDetailInfo.AdapterSas.AdapterSasInfo).basewwn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;5:00a098:0037224:c9&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You need to connect to cluster vserver not node&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2016 15:05:30 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/114447#M4647</guid>
      <dc:creator>JGPSHNTAP</dc:creator>
      <dc:date>2016-01-08T15:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Get-NcStorageAdapterInfo for specific node</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/114453#M4652</link>
      <description>&lt;P&gt;Hello Medvitz,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This appears to be a bug, I've opened a BURT for it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a temporary workaround, you can use the "Invoke-NcSystemApi" cmdlet to do a raw query:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$result = @()

foreach ($adapter in (Get-NcStorageAdapter)) {
    $adapterInfo = Invoke-NcSystemApi "&amp;lt;storage-adapter-get-adapter-info&amp;gt;&amp;lt;node-name&amp;gt;$($adapter.NodeName)&amp;lt;/node-name&amp;gt;&amp;lt;adapter-name&amp;gt;$($adapter.AdapterName)&amp;lt;/adapter-name&amp;gt;&amp;lt;/storage-adapter-get-adapter-info&amp;gt;"
    
    $o = "" | Select Node,Adapter,Type,WWN
    $o.Node = $adapter.NodeName
    $o.Adapter = $adapter.AdapterName
    $o.Type = $adapterInfo.results.'adapter-details'.'adapter-detail-info'.'adapter-type'

    if ($o.Type -eq "ADT_IF_FC") {
        $o.WWN = $adapterInfo.results.'adapter-details'.'adapter-detail-info'.'adapter-fc'.'adapter-fc-info'.'fc-port-name'
    } elseif ($o.Type -eq "ADT_IF_SAS") {
        $o.WWN = $adapterInfo.results.'adapter-details'.'adapter-detail-info'.'adapter-sas'.'adapter-sas-info'.'base-wwn'
    }

    $result += $o
}

$result&lt;/PRE&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2016 15:58:28 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/114453#M4652</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2016-01-08T15:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Get-NcStorageAdapterInfo for specific node</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/114571#M4665</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you....&amp;nbsp; That did the trick&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 16:06:45 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/114571#M4665</guid>
      <dc:creator>Medvitz</dc:creator>
      <dc:date>2016-01-12T16:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get-NcStorageAdapterInfo for specific node</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/115669#M4731</link>
      <description>&lt;P&gt;Medvitz,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which version of the PowerShell ToolKit you are using when you bit this bug? I noticed it today and I am using Data ONTAP PSTK 3.2 and I am wondering if this is fixed in the new version of v4.1 , which combined with SANtricity PSTK as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Timothy&lt;/P&gt;</description>
      <pubDate>Thu, 11 Feb 2016 22:48:02 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/115669#M4731</guid>
      <dc:creator>JIATI0111</dc:creator>
      <dc:date>2016-02-11T22:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Get-NcStorageAdapterInfo for specific node</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/115701#M4733</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NPTK 4.1 only updated the Santricity cmdlets in the budle, so the ONTAP cmdlets will still have this particular issue. &amp;nbsp;There is an open bug and it is scheduled to be fixed in a future release.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 14:17:02 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/115701#M4733</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2016-02-12T14:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Get-NcStorageAdapterInfo for specific node</title>
      <link>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/115717#M4738</link>
      <description>&lt;P&gt;Thanks Andrew!&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 20:19:10 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/Get-NcStorageAdapterInfo-for-specific-node/m-p/115717#M4738</guid>
      <dc:creator>JIATI0111</dc:creator>
      <dc:date>2016-02-12T20:19:10Z</dc:date>
    </item>
  </channel>
</rss>

