<?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 Vfiler Tunneling with C# SDK 5.5 in Software Development Kit (SDK) and API Discussions</title>
    <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Vfiler-Tunneling-with-C-SDK-5-5/m-p/121595#M2029</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The bellow code works fine, however the filer i am querying has igroups created under a vfiler.&lt;/P&gt;&lt;P&gt;In powershell you would use something like the following to see igroups under a vfiler&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;Connect-NaController -Name 192.168.1.1 -Credential root -Vfiler vfiler1&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;Get-NaIgroup&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I Cannot find any equivilent inside the 5.5 SDK, can anyone offer any answers?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;String connection = "192.168.1.1";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;String user = @"root";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;String password = "password123";&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;NaFiler filer = new NaFiler(connection);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;filer.Credentials = new NetworkCredential(user, password);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;filer.ForceUseUnsecure = true;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;IgroupListInfo igroupIn = new IgroupListInfo();&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;IgroupListInfoResult igroupOut = igroupIn.Invoke(filer);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;foreach (InitiatorGroupInfo Igroup in igroupOut.InitiatorGroups)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;{&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Console.WriteLine("------------------------------------------------- ");&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;Console.WriteLine("InitiatorGroupName: " + Igroup.InitiatorGroupName);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;Console.WriteLine("InitiatorGroupType: " + Igroup.InitiatorGroupType);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;}&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 04 Jun 2025 19:51:38 GMT</pubDate>
    <dc:creator>bainy13</dc:creator>
    <dc:date>2025-06-04T19:51:38Z</dc:date>
    <item>
      <title>Vfiler Tunneling with C# SDK 5.5</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Vfiler-Tunneling-with-C-SDK-5-5/m-p/121595#M2029</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The bellow code works fine, however the filer i am querying has igroups created under a vfiler.&lt;/P&gt;&lt;P&gt;In powershell you would use something like the following to see igroups under a vfiler&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;Connect-NaController -Name 192.168.1.1 -Credential root -Vfiler vfiler1&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;Get-NaIgroup&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I Cannot find any equivilent inside the 5.5 SDK, can anyone offer any answers?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;String connection = "192.168.1.1";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;String user = @"root";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;String password = "password123";&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;NaFiler filer = new NaFiler(connection);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;filer.Credentials = new NetworkCredential(user, password);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;filer.ForceUseUnsecure = true;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;IgroupListInfo igroupIn = new IgroupListInfo();&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;IgroupListInfoResult igroupOut = igroupIn.Invoke(filer);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;foreach (InitiatorGroupInfo Igroup in igroupOut.InitiatorGroups)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;{&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Console.WriteLine("------------------------------------------------- ");&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;Console.WriteLine("InitiatorGroupName: " + Igroup.InitiatorGroupName);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;Console.WriteLine("InitiatorGroupType: " + Igroup.InitiatorGroupType);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;}&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 19:51:38 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Vfiler-Tunneling-with-C-SDK-5-5/m-p/121595#M2029</guid>
      <dc:creator>bainy13</dc:creator>
      <dc:date>2025-06-04T19:51:38Z</dc:date>
    </item>
  </channel>
</rss>

