Re: ssh without password

2009-08-27 Thread Eugene Apolinary
I think the problem was, that I generated the rsa key on the server [and have the id_rsa there], not on the client [I wanted to log in to the server from the client] :D:D thanks again :)) --- On Thu, 8/27/09, Eugene Apolinary wrote: From: Eugene Apolinary Subject: Re: ssh without password

Re: ssh without password

2009-08-27 Thread Eugene Apolinary
Thank you!! It worked with this howto: http://www.csua.berkeley.edu/~ranga/notes/ssh_nopass.html Thanks!! :)) Thank you! --- On Thu, 8/27/09, Frank Bonnet wrote: From: Frank Bonnet Subject: Re: ssh without password To: "Eugene Apolinary" Cc: "debian-user@lists.debian.org&q

Re: ssh without password

2009-08-27 Thread Frank Bonnet
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Look here http://www.csua.berkeley.edu/~ranga/notes/ssh_nopass.html Eugene Apolinary wrote: > Hi... > > It's just not working! :( > > Machine [A]: Debian Lenny [server] > Machine [B]: Debian Lenny [client] > > I just want to SSH from [A] to

Re: ssh without password

2009-08-26 Thread James Richardson
Eugene Apolinary wrote: > ssh -vv > http://pastebin.com/f3d2d4e3d > > ssh -vvv > > http://pastebin.com/f687e372 > > I changed the "authorized_keys" permission on [B] to 600 > > Plus I tried to change > > PasswordAuthentication no > > in [A] /etc/ssh/sshd_config, and then restart ssh. But if I

Re: ssh without password

2009-08-26 Thread Eugene Apolinary
ca/1544022 thank you :) --- On Wed, 8/26/09, James Richardson wrote: From: James Richardson Subject: Re: ssh without password To: debian-user@lists.debian.org Date: Wednesday, August 26, 2009, 11:15 PM Eugene Apolinary wrote: > Hi... > > It's just not working! :( > > Mac

Re: ssh without password

2009-08-26 Thread Alex Samad
On Wed, Aug 26, 2009 at 07:15:42PM -0400, James Richardson wrote: > Eugene Apolinary wrote: > > Hi... > > [snip] > > [B] > > I copied the generated "id_rsa.pub" file to the [B] and: > > > > cat id_rsa.pub >> /home/user/.ssh/authorized_keys > > cat id_rsa.pub >> /home/user/.ssh/authorized_keys2

Re: ssh without password

2009-08-26 Thread James Richardson
Eugene Apolinary wrote: > Hi... > > It's just not working! :( > > Machine [A]: Debian Lenny [server] > Machine [B]: Debian Lenny [client] > > I just want to SSH from [A] to [B] without password... > > [A] > # apt-get install openssh-server > > # dpkg -l|grep ssh > ii  openssh-blacklist

ssh without password

2009-08-26 Thread Eugene Apolinary
Hi... It's just not working! :( Machine [A]: Debian Lenny [server] Machine [B]: Debian Lenny [client] I just want to SSH from [A] to [B] without password... [A] # apt-get install openssh-server # dpkg -l|grep ssh ii  openssh-blacklist   0.4.1    list of default

Re: urgent : ssh without password prompt and password client auth

2005-05-03 Thread Dave Ewart
On Tuesday, 03.05.2005 at 22:57 +0200, STEPHANE DURIEUX wrote: > --- Dave Ewart <[EMAIL PROTECTED]> wrote: > > On Tuesday, 03.05.2005 at 17:04 +0200, STEPHANE DURIEUX wrote: > > > > > Well everything is in the title. I would like to use ssh in > > > scripts so without > > entering > > > the pass

Re: urgent : ssh without password prompt and password client auth

2005-05-03 Thread s. keeling
Incoming from STEPHANE DURIEUX: > > Well everything is in the title. > I would like to use ssh in scripts so without entering > the password. local_ ssh-keygen -t pick_one When it asks for your _passphrase_, hit ENTER. Now (assuming "remote:~you/.ssh/" exists): - local_ scp ~/.ssh/id_pick_

Re: urgent : ssh without password prompt and password client auth

2005-05-03 Thread Richard Mittendorfer
Also sprach STEPHANE DURIEUX <[EMAIL PROTECTED]> (Tue, 3 May 2005 17:04:44 +0200 (CEST)): > Hello hi > Well everything is in the title. > I would like to use ssh in scripts so without entering > the password. > The problem is that such commands don t work: > echo passwd | ssh host (ssh doesn t

Re: urgent : ssh without password prompt and password client auth

2005-05-03 Thread Dave Ewart
On Tuesday, 03.05.2005 at 17:04 +0200, STEPHANE DURIEUX wrote: > Well everything is in the title. > I would like to use ssh in scripts so without entering > the password. > The problem is that such commands don t work: > echo passwd | ssh host (ssh doesn t read std input) You might be able to ge

urgent : ssh without password prompt and password client auth

2005-05-03 Thread STEPHANE DURIEUX
Hello Well everything is in the title. I would like to use ssh in scripts so without entering the password. The problem is that such commands don t work: echo passwd | ssh host (ssh doesn t read std input) I don t want to use private keys (so not ssh-agent). Does anyone has an idea (via environm

Re: rsync over ssh without password

2002-05-13 Thread Rory Campbell-Lange
I've now setup the server to look for the client and do the backups. Works fine. However I'd like to edit the clients .ssh/authorized_keys file to only allow rsync to be run from the server. I've tried command="/usr/bin/rsync ~/" ssh-rsa [key] [EMAIL PROTECTED] but this is failing because,

Re: rsync over ssh without password

2002-05-12 Thread Francois Chenais
Try the --password-file option as described in man rsyncd.conf. Doesn't work yet for me but it's in the man and somebody on rsync maillinglist said me that's work ! ;-) François On Sat, 11 May 2002 02:48:09 +0100 Rory Campbell-Lange <[EMAIL PROTECTED]> wrote: > I'd like to automate a

Re: rsync over ssh without password

2002-05-12 Thread Mark Roach
On Fri, 2002-05-10 at 20:48, Rory Campbell-Lange wrote: > rather just the user's id key. I've had a look at the sshd man page and > tried setting up this system to no avail. when you attempt to connect, does it prompt you for password for the key, or just user password? Did you create the correct

Re: rsync over ssh without password

2002-05-10 Thread Alvin Oga
hi ya rory just a comment... - i do backups via root's cron ... - root should be able to read tom, dick and harry's local home directory - a hours after home-server creates a local backup of the users dir... ( backups should NOT be on the machine its backing up )

rsync over ssh without password

2002-05-10 Thread Rory Campbell-Lange
I'd like to automate a backup of a user's machine to the server. I've set up the backup with rsync using ssh (not rsyncd on the server). I know that it is easy to set this up with rsyncd, but I'd prefer to learn how to do this with ssh! I'd like to be able to run the backup without providing a pas

Re: ssh without password for secvpn

2001-11-21 Thread Michael Heldebrant
On Wed, 2001-11-21 at 10:51, Ben Hartshorne wrote: > On Tue, Nov 20, 2001 at 12:27:53PM -0600, Brooks R. Robinson wrote: > > Greetings, > > I am trying to set up the secvpn package between two boxes (one potato, > > one > > woody). I have the secvpn.conf figured out, no problem. My problem

Re: ssh without password for secvpn

2001-11-21 Thread Ben Hartshorne
On Tue, Nov 20, 2001 at 12:27:53PM -0600, Brooks R. Robinson wrote: > Greetings, > I am trying to set up the secvpn package between two boxes (one potato, > one > woody). I have the secvpn.conf figured out, no problem. My problem is a > little more basic. I can't get ssh to connect withou

Re: ssh without password for secvpn

2001-11-21 Thread Frank Copeland
On 20 Nov 01 18:27:53 GMT, Brooks R. Robinson <[EMAIL PROTECTED]> wrote: > I try to connect and I am still asked a password. I've tried it with > both > empty passphrases and obnoxious passphrases, and I get the same result > (password not passphrase). I've muddled thorough the man pages

Re: ssh without password for secvpn [Clue #1]

2001-11-20 Thread Dimitri Maziuk
* Brooks R. Robinson ([EMAIL PROTECTED]) spake thusly: ... > So I decided to try this from a potato to another potato. I used > ssh-copy-id to copy the id to the box, and voila; it worked. So now I have > to reconcile the differences from potato to woody! > > Any help? Protocol versions a

RE: ssh without password for secvpn [Clue #1]

2001-11-20 Thread Brooks R. Robinson
| Greetings, | I am trying to set up the secvpn package between two boxes | (one potato, one | woody). I have the secvpn.conf figured out, no problem. My problem is a | little more basic. I can't get ssh to connect without a | password. On both | boxes, I did a 'ssh-keygen' which created

Re: ssh without password for secvpn

2001-11-20 Thread Kurt Lieber
On Tuesday 20 November 2001 10:27 am, Brooks R. Robinson wrote: > On > both boxes, I did a 'ssh-keygen' which created my '.ssh/identity' and > '.ssh/indentity.pub'. I swapped the '.ssh/indentity.pub' to > '.ssh/authorized_keys' to each machine. Are you using ssh v2? If so, your authorized_keys f

ssh without password for secvpn

2001-11-20 Thread Brooks R. Robinson
Greetings, I am trying to set up the secvpn package between two boxes (one potato, one woody). I have the secvpn.conf figured out, no problem. My problem is a little more basic. I can't get ssh to connect without a password. On both boxes, I did a 'ssh-keygen' which created my '.ssh/id