ssh directly with a password


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers ssh directly with a password
# 1  
Old 12-07-2007
ssh directly with a password

Can someone please tell me how to ssh into a computer when I have a username and password? Like something like:

ssh username : pass @ server

Can I do something like that directly?

Last edited by Legend986; 12-07-2007 at 03:09 PM..
# 2  
Old 12-07-2007
try

ssh user@host

asks pswd ...provide it
# 3  
Old 12-07-2007
Quote:
Originally Posted by Legend986
ssh username : pass @ server

Can I do something like that directly?
No. You must enter the password or set up publickey authentication.
# 4  
Old 12-07-2007
Thanks... That was what I wanted to know...
# 5  
Old 12-08-2007
If for some reason you are unable/unauthorized to setup ssh keys, you can use an expect script, or a perl script to do that. There are security concerns with putting a password in a plaintext file obviously, but its doable.
# 6  
Old 12-08-2007
This should be a start on how to set up passwordless-ssh between host1 to host2 and host2 to host1

Step 1:
From host 1 ==>

Code:
ssh-keygen -t rsa1

Press enter without any passwords for the ' passphrase ' ssh-keygen asks for.


Step 2:
copy the public key identity.pub from ~/.ssh/identity.pub to host 2 where passwordless ssh should be enabled

Code:
scp ~/.ssh/identity.pub <complete_host_name>:


Step 3:
In host 2, copy the public keys as .ssh/authorized_keys
Code:
cat ~/identity.pub >> ~/.ssh/authorized_keys


Now you should be able to do passwordless login from host 1 to host 2
If you want to enable the same from host 2 to host 1,
generate keys from host 2 and copy the public keys alone to host 1 as authorized keys.

Make sure maximum perm bits set to ~/.ssh directory is only 700
# 7  
Old 12-09-2007
And make "identity" and "authorized_keys" -rw-------
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Ssh password

Hi there. I am fully aware of the security implications, but is there a way give a user password with the rsh and/or ssh commands? Such as: ssh user@192.168.0.56 -p password Or pass a config file to the command containing a password? I'm looking after a cluster and trying to use PSSH,... (6 Replies)
Discussion started by: MuntyScrunt
6 Replies

2. Red Hat

SSH password less setup asking for password

Hello Experts, when I am trying to connect my target server through sftp after creating ssh password less setup, it is asking for passowrd to connect. to setup this I followed below process: -->generated keys by executing the command "ssh-keygen -t rsa" -->this created my .ssh directory... (9 Replies)
Discussion started by: Devipriya Ch
9 Replies

3. Shell Programming and Scripting

Password in ssh

Hello Guys, I have a specific requirement where I need to provide password to ssh and sftp in my script on Solaris. I know password-less connection is the way without password but in my case, I cant use the same due to some limitations. Please let me know if we can tweak it. (7 Replies)
Discussion started by: Deei
7 Replies

4. Red Hat

ssh without password

Hi, I am trying to generate ssh without having to type a password. I have done this on numerous occasions using the procedure below and it has worked fine but not on this occasion. user1@sys1:ssh-keygen -t dsa -N "" <press enter for any questions> user1@sys1: ll .ssh/id_dsa.pub... (16 Replies)
Discussion started by: Duffs22
16 Replies

5. UNIX for Dummies Questions & Answers

SSH with no password

How to setup SSH to not require a password when establishing an SSH connection from server A to server B for particular user? (4 Replies)
Discussion started by: sam101
4 Replies

6. Shell Programming and Scripting

SSH with password

Please help me I want connect to orther server using ssh. But I need to transfer password also without entering when it is prompts. Please help me. (1 Reply)
Discussion started by: saga499
1 Replies

7. Solaris

SSH Password-less login fails on password expiry.

Hi Gurus I have a few Sol 5.9 servers and i have enabled password less authentication between them for my user ID. Often i have found that when my password has expired,the login fails. Resetting my password reenables the keys. Do i need to do something to avoid this scenario or is this... (2 Replies)
Discussion started by: Renjesh
2 Replies

8. HP-UX

User not able to login directly using ssh

HI, We are facing a problem while trying to login using ssh. The user is able to login using telnet. We are able to login as another user using ssh and then su to that user which is successfull. What should i be checking for the user to be able to login directly using ssh. Thanks in... (2 Replies)
Discussion started by: sag71155
2 Replies

9. HP-UX

ssh without password

Hi, I have the necessity to run a korn shell on a remote server (both HP-UX servers) using the ssh command. The sintax that I use is ssh -l <remote user> <IP address of remote host> command(ksh script) Pressing enter I need to set the password of the remote user. Is it possible to... (2 Replies)
Discussion started by: gio123bg
2 Replies

10. UNIX for Dummies Questions & Answers

no password ssh

Hello all, I would like to know if anyone had ever set up a network in which they used DHCP and OPENSSH with no password. I can configure my ssh files to allow me to enter any machine without a password as long as I have generated the public and private keysa nd store them in my .ssh/aut... ... (3 Replies)
Discussion started by: larryase
3 Replies
Login or Register to Ask a Question