#CmdLet equivalent for CLI commands

1 messages · Page 1 of 1 (latest)

boreal lodge
#

Hello, I'm looking for the CmdLet equivalent for the following CLI commands: vserver nfs connected-clients show and vserver iscsi connection show. Any suggestions beside using Invoke-NcSsh? Thanks!

novel sandal
#

Are these commands not sufficient?
Get-NcNfsConnectedClient
Get-NcIscsiConnection

There's also this: Invoke-NcCli

#

From this module:

PS \> Find-Module -Name NetApp.ONTAP | Select-Object Name,Version

Name         Version
----         -------
NetApp.ONTAP 9.13.1.2306

PS \>
boreal lodge
#

First of all, I want to thank you for the prompt response. Secondly, I think it was not a good idea to rely completely on the documentation included with the module. Shame on me! Somehow this documentation is not up to date. Thank you very much for the direction, I appreciate it very much. Regards.

novel sandal
#

No worries at all! I tend to explore what’s available directly in-terminal. I have yet to refer to external documentation. This is as a daily user of the NetApp.ONTAP module.