Microsoft Virtualization Discussions

Powershell & serial connection to NetApp?

LUKASPRELOVSKY
3,872 Views

Hi community,

is it possible to create a powershell skript which send commands by a serial connection ? Or any other solutions for skripting over serial connection available?

Thank you,

Lukas

Best Regards,
Lukas
5 REPLIES 5

vinith
3,872 Views

Please have a look at this thread https://communities.netapp.com/thread/11219

I would suggest that you can use Invoke-NaSsh to Send a Data ONTAP CLI command via SSH.

Invoke-NaSsh "<DataOntap CLI command>"

For more help on this cmdlet, you can type in

Get-Help Invoke-NaSsh -Detailed


LUKASPRELOVSKY
3,872 Views

Hi,

Invoke-NaSsh -Port is to user for com1 oder com2 .... ?

Thank you,

Lukas

Best Regards,
Lukas

bloehlein
3,872 Views

Hi Lukas,

the -Port option just let's you choose a non-default port on which the ssh-server is listening, default port is 22 (TCP-Port, not serial port)

The powershell toolkit currently doesn't support any communication other than http-api or ssh.

best regards,

Bernd

vinith
3,872 Views

-Port refers to the TCPIP port for the ssh connection. It should only be used if ssh is not on port 22 for instance if traversing a proxy gateway, or serial concentrator,We can't talk to a serial port like com1/com2

LUKASPRELOVSKY
3,872 Views

What a bummer! 😞 Thank you anyway for your answers.

BR,

Lukas

Best Regards,
Lukas
Public