Ssh is prompting for password


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Ssh is prompting for password
# 1  
Old 03-08-2013
Ssh is prompting for password

Hi,

When i am trying to connect to other server using ssh coomand, it is prompting for password.
But i want to hardcode it with username so that it should not prompt for password.

And i dont want to use "ssh-keygen" method as it is not allowed.

Please help me.

Regards,
Mukta
# 2  
Old 03-08-2013
Hi, if in your system is installed the expect command you can interface it with the ssh.
This User Gave Thanks to franzpizzo For This Post:
# 3  
Old 03-08-2013
Quote:
Originally Posted by Mukta
And i dont want to use "ssh-keygen" method as it is not allowed.
If they don't even allow ssh-keygen, I'm sure they'd be horrified to have you kludging stored plaintext passwords into the login prompt with the expect third-party brute-forcing tool.

Keys are the safe and secure way to do it. If you're not allowed, you're only left with insecure methods.
This User Gave Thanks to Corona688 For This Post:
# 4  
Old 03-08-2013
Quote:
Originally Posted by Mukta
Hi,

.... i want to hardcode it with username so that it should not prompt for password.

And i dont want to use "ssh-keygen" method as it is not allowed.

Please help me.

Regards,
Mukta

A terrible position. Have you asked why generating a key pair is not allowed? Our security team are very hot on searching for anything that has hard-coded values.

Perhaps I'm miss-reading your message though. Are you actually saying that you are connected to your local server as User1, but you need to connect to the remote server as User2 perhaps? That is still achievable with keys and therefore a password-less connection.

Another option that you may be trying to explain is that the remote server does not accept SSH connections. Is that the case perhaps?

Can you clarify exactly what you have and what you need to achieve. Have you actually tried to run ssh-keygen? Did you get any output to screen or any files generated in sub-directory .ssh?


Hard-coding is always a bad idea. At worst, your code should read the values from a file that you can protect a bit further.



Robin
Liverpool/Blackburn
UK
This User Gave Thanks to rbatte1 For This Post:
# 5  
Old 04-01-2013
@ franzpizzo

Thank u for the suggestion.

But expect command is not installed. Any other solution expect keygen?

And sorry for the late reply as i was on vacation.

---------- Post updated at 10:08 PM ---------- Previous update was at 10:00 PM ----------

@rbatte1

My designer has told not to use ssh-keygen as customer is not ok with that.
And it is good if we actually hard code.
Can u pls suggest how to hardcode that?
My code is like below

Code:
#!/bin/sh
ssh uname@ip_add

I thought it might be possible to do something like below like we do in sqlplus, but it doesnt work.

Code:
#!/bin/sh
ssh uname/pwd@ip_add

Thanks
Mukta
# 6  
Old 04-01-2013
Short answer here is that ssh doesn't support any method of supplying a password on the command line.

You basically have two modes of operation A) public/private key pairs and passwordless authentication B) Password entered by a human at the keyboard.

expect uses kludges to trick ssh into thinking it is receiving input from a user.

If you could supply more about what you are trying to automate on the remote server using ssh we may be able to come up with some alternatives (cron jobs running on the remote server for example).
This User Gave Thanks to Chubler_XL For This Post:
# 7  
Old 04-02-2013
Quote:
Originally Posted by Chubler_XL
Short answer here is that ssh doesn't support any method of supplying a password on the command line.
This is not to annoy you, either -- this is is a security measure. Plaintext passwords are almost impossible to keep safe.

Over the commandline, for instance, your password would show up in ps.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Crontab - password prompting

// Red Hat Enterprise Linux Server release 6.7 I wanted to pass the password, but when I execute this cron, it stops at Password: prompt. Please advise on how to fix the error. Thank you for tour help in advance. #!/usr/bin/ksh su - pmserver echo "su - pmserver" cd... (2 Replies)
Discussion started by: Daniel Gate
2 Replies

2. UNIX for Dummies Questions & Answers

SFTP without prompting password

Dear unix experts, i have a requirement as below. i need to use SFTP as FTP. ftp -n -v << ENDFTP open test_ftp.server user ftp_user_name ftp_password quit ENDFTP if i use this in a shell script, it's not asking for password. But i want the similar thing achived using... (5 Replies)
Discussion started by: AraR87
5 Replies

3. Shell Programming and Scripting

SFTP prompting for password even though password is in script

Hi All, I am trying to transfer a file from one server to a remote server using SFTP. Client is not ready for key setup. I am working on Solaris 10. Here is the code. #!/bin/ksh # sample automatic Sftp script to dump a file USER="user1" PASSWORD="pass1" HOST="host1" sftp $USER@$HOST... (6 Replies)
Discussion started by: megha2525
6 Replies

4. Shell Programming and Scripting

Prompting for password

Hi, I have SVN installed in my UNIX solaris server. I actually automated the process that downloads code from SVN server to UNIX solaris server in script. When i run the script, its asking for password to download every element. Its really difficult to type password for every element when... (3 Replies)
Discussion started by: gthangav
3 Replies

5. UNIX for Dummies Questions & Answers

[SSH-RSA] Still prompting for password after generating keys

Hello, I'm trying to perform these operations without entering any password, as user "fzd":fzd@machine1> scp /tmp/srcFile1 fzd@machine2:/tmp/$destFile fzd@machine1> scp fzd@machine2:/tmp/$srcFile /tmp/$destFilebut alsofzd@machine1> scp /tmp/srcFile1 machine2:/tmp/$destFile fzd@machine1> scp... (6 Replies)
Discussion started by: fzd
6 Replies

6. Red Hat

prompting for passwords even i configured ssh password less authentication

There are two servers : 1. Site 2. Testing from site server i want to connect testing server with ssh password less authentication. i generated public and private keys with ssh-keygen -t rsa on site server. cat id_rsa >> authorized_keys cat id_rsa.pub >> authorized_keys i... (15 Replies)
Discussion started by: rehantayyab82
15 Replies

7. UNIX for Advanced & Expert Users

scp without prompting for password

I am trying to copy a file from remote machine using scp. I followed the steps to configure public/private key usage. But still prompting for password when I do ssh. I did the following steps to configure scp without asking password Step 1 : local host > ssh-keygen -t rsa and when prompted... (9 Replies)
Discussion started by: satish@123
9 Replies

8. Programming

ssh via java prompting for password

Hi, I have set up my remote server for password-less login via ssh. If I run the command on my server - ssh user@remoteserver "ls -l" I get an output, but when I try to do this via java String sCmd = new String{"/usr/bin/ssh", " user@remoteserver", "\"ls -l\""}; Process p =... (3 Replies)
Discussion started by: nrworld
3 Replies

9. UNIX for Dummies Questions & Answers

sftp prompting for password

I have the problem with SFTP; BELOW IS the entry from my ssh_config file It's prompting me for password all the time when using SFTP. pLEASE help. (1 Reply)
Discussion started by: dsravan
1 Replies

10. UNIX for Advanced & Expert Users

SSH - Prompting for password

Hi, Can anybody tell me a way to do ssh , without prompting for password from keyboard, Using RSA. The requirement is I need to create the key , using passphrase also..... Is there any way to do it in UNIX ? I am doing it from AIX machine , but remote machine is Linux I tried... (8 Replies)
Discussion started by: shihabvk
8 Replies
Login or Register to Ask a Question