tags:

views:

71

answers:

2

Is there a way to make an ssh connection from a windows command line to a Linux machine not using putty?

The Idea is to be able to use NAnt to issue linux commands on the target Linux machine.

+1  A: 

Yes. The Cygwin ssh client works from the Windows command line.

Kinopiko
A: 

If you're looking to avoid any 3rd party tool besides nant, then no.

Jeremy Stein
We actually ended up using plink to issue ssh commands from a windows command line.
Cocoa student
I Eneded up using plink.exe from the putty.exe software.It connects from command line and can execute linux commands from windows command line. U can also separate commands with ";" to get a few commands in one line.
Cocoa student
So, I was right? Your question specified "not using putty".
Jeremy Stein