0

Possible Duplicate:
Shell Script for logging into a ssh server

I need to connect via SSH to a remote server, however I must do this with out interactive mode and with out use Public keys and also with out install extra packes like sshpass or expect because it's a unix system based, I was wondering if it's possible using a script or send the pass together the command ssh connection, something like this:

$: ssh user@remoteserver \npassword
2
  • 1
    Or with some library on Java Commented Feb 19, 2012 at 21:09
  • Seemingly needless crosspost of stackoverflow.com/questions/9283360/… Commented Feb 19, 2012 at 21:59

2 Answers 2

3

No, it deliberately isn't possible to do this. You will need to use one of those tools, or a public key without a passphrase.

1
  • 2
    That's wrong. The makers of ssh deliberately make it difficult, because it's a bad idea, but it is possible. Commented Feb 19, 2012 at 23:44
0

If you really need to do is this way consider using Expect like so:

http://bash.cyberciti.biz/security/expect-ssh-login-script/

1
  • 1
    Please provide some context for links so that the answer is not dependant on an external site. Commented Feb 20, 2012 at 6:28

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.