Remotely Log In to Another Machine via SSH Interact with a remote machine from the command
line via SSH, the Secure Shell. [Discuss (2) | Link to this hack]
Comments on this hack
Showing messages 1 through 2 of 2.
a little tweaking required
2003-07-12 12:55:55
anonymous2
[View]
I am an osx box connecting to a windows server: the suggested command for opening the connection is:
% ssh -1 <username> <hostname.whatever>
this did not work for me, what did work was:
ssh -1<username> <hostname.whatever>
and so this worked. but it won't take my password as is, even though i know it works.
Any suggested syntax to make this work?
CCB
a little tweaking required
2003-07-29 06:25:13
anonymous2
[View]
The proper syntax is "ssh -l" (lower case L) rather than "ssh -1" (the number 1) followed by your username and hostname. Hope this helps.
% ssh -1 <username> <hostname.whatever>
this did not work for me, what did work was:
ssh -1<username> <hostname.whatever>
and so this worked. but it won't take my password as is, even though i know it works.
Any suggested syntax to make this work?
CCB