Re: ssh setup: what is the Debian way?

2007-04-19 Thread Alex Samad
On Wed, Apr 18, 2007 at 11:54:26PM -0400, Greg Folkert wrote: > On Thu, 2007-04-19 at 00:36 -0300, Mariano Alonso wrote: > > you have a nice script called keychain to solve this problem. > > it manages ssh-agent. give it a chance, perhaps you get your problem > > solved > > Wait, it is NOT my pro

Re: ssh setup: what is the Debian way?

2007-04-18 Thread Greg Folkert
On Thu, 2007-04-19 at 00:36 -0300, Mariano Alonso wrote: > you have a nice script called keychain to solve this problem. > it manages ssh-agent. give it a chance, perhaps you get your problem > solved Wait, it is NOT my problem. The idiot I was responding to suggested not using *ANY* password on

Re: ssh setup: what is the Debian way?

2007-04-18 Thread Mariano Alonso
you have a nice script called keychain to solve this problem. it manages ssh-agent. give it a chance, perhaps you get your problem solved chears. On 4/19/07, Greg Folkert <[EMAIL PROTECTED]> wrote: On Thu, 2007-04-19 at 13:03 +1000, Alex Samad wrote: > why not in .bashrc - presuming the key doe

Re: ssh setup: what is the Debian way?

2007-04-18 Thread Greg Folkert
On Thu, 2007-04-19 at 13:03 +1000, Alex Samad wrote: > why not in .bashrc - presuming the key doesn't have a password What is the point of having passwords then? This is for key-authentication. If you have no very strong password for your private key, why even bother. -- greg, [EMAIL PROTECTE

Re: ssh setup: what is the Debian way?

2007-04-18 Thread Alex Samad
On Wed, Apr 18, 2007 at 05:22:27PM -0400, Celejar wrote: > On Wed, 18 Apr 2007 19:45:57 +0200 > Michelle Konzack <[EMAIL PROTECTED]> wrote: > > > Hello Paul, > > > > Am 2007-04-07 20:26:23, schrieb Paul E Condon: > > > Debian automagically starts ssh-agent somewhere along the chain of > > > event

Re: ssh setup: what is the Debian way?

2007-04-18 Thread Celejar
On Wed, 18 Apr 2007 19:45:57 +0200 Michelle Konzack <[EMAIL PROTECTED]> wrote: > Hello Paul, > > Am 2007-04-07 20:26:23, schrieb Paul E Condon: > > Debian automagically starts ssh-agent somewhere along the chain of > > events that bring up X and Gnome. I don't reboot often, but when I > > do, I

Re: ssh setup: what is the Debian way?

2007-04-18 Thread Michelle Konzack
Hello Paul, Am 2007-04-07 20:26:23, schrieb Paul E Condon: > Debian automagically starts ssh-agent somewhere along the chain of > events that bring up X and Gnome. I don't reboot often, but when I > do, I forget to run ssh-add. Where can I place an invocation of > ssh-add so that it is run once

Re: ssh setup: what is the Debian way? [not what I asked for, but OK ]

2007-04-09 Thread Vincent Lefevre
On 2007-04-09 09:39:20 -0600, Paul E Condon wrote: > Is ssh_wrapper available in Debian? No, this is a script I've written. > What does it do? It does the ssh-add. Well, a little more: #!/usr/bin/env zsh # You may call "ssh_wrapper true" to initialize. emulate -LR zsh local cmd if [[ "$1" ==

Re: ssh setup: what is the Debian way? [not what I asked for, but OK ]

2007-04-09 Thread Vincent Lefevre
On 2007-04-09 09:07:29 -0400, Allan Wind wrote: > On 2007-04-09T13:07:34+0200, Vincent Lefevre wrote: > > This is a bad idea. SSH can also be used in non-interactive sessions > > (e.g. by Subversion, rsync, unison and so on). Such a check must not > > be done if you want your wrapper to work with t

Re: ssh setup: what is the Debian way? [not what I asked for, but OK ]

2007-04-09 Thread Paul E Condon
On Mon, Apr 09, 2007 at 01:02:07PM +0200, Vincent Lefevre wrote: > On 2007-04-08 21:24:00 -0600, Paul E Condon wrote: > > So, I learned a lot about what doesn't work for me. I settled on > > adding the following to my .bashrc: > > > > if [ -x /usr/bin/ssh ] && [ -d ~/.ssh ]; then > >function s

Re: ssh setup: what is the Debian way? [not what I asked for, but OK ]

2007-04-09 Thread Paul E Condon
On Mon, Apr 09, 2007 at 12:01:59AM -0400, Allan Wind wrote: > On 2007-04-08T21:24:00-0600, Paul E Condon wrote: > > On Sat, Apr 07, 2007 at 08:26:23PM -0600, Paul E Condon wrote: > > > Debian automagically starts ssh-agent somewhere along the chain of > > > events that bring up X and Gnome. I don'

Re: ssh setup: what is the Debian way?

2007-04-09 Thread Manoj Srivastava
On Sun, 8 Apr 2007 11:01:08 -0600, Paul E Condon <[EMAIL PROTECTED]> said: > On Sun, Apr 08, 2007 at 05:50:36PM +0200, Matus UHLAR - fantomas wrote: >> On 07.04.07 20:26, Paul E Condon wrote: >> > Debian automagically starts ssh-agent somewhere along the chain of >> > events that bring up X and

Re: ssh setup: what is the Debian way? [not what I asked for, but OK ]

2007-04-09 Thread Allan Wind
On 2007-04-09T13:07:34+0200, Vincent Lefevre wrote: > This is a bad idea. SSH can also be used in non-interactive sessions > (e.g. by Subversion, rsync, unison and so on). Such a check must not > be done if you want your wrapper to work with these programs (but of > course, you need to set $SVN_SSH

Re: ssh setup: what is the Debian way? [not what I asked for, but OK ]

2007-04-09 Thread Vincent Lefevre
On 2007-04-09 00:01:59 -0400, Allan Wind wrote: > On 2007-04-08T21:24:00-0600, Paul E Condon wrote: > > So, I learned a lot about what doesn't work for me. I settled on > > adding the following to my .bashrc: > > > > if [ -x /usr/bin/ssh ] && [ -d ~/.ssh ]; then > >function ssh { > > if

Re: ssh setup: what is the Debian way? [not what I asked for, but OK ]

2007-04-09 Thread Vincent Lefevre
On 2007-04-08 21:24:00 -0600, Paul E Condon wrote: > So, I learned a lot about what doesn't work for me. I settled on > adding the following to my .bashrc: > > if [ -x /usr/bin/ssh ] && [ -d ~/.ssh ]; then >function ssh { > if [ "The agent has no identities." = "$(ssh-add -L)" ]; then >

Re: ssh setup: what is the Debian way? [not what I asked for, but OK ]

2007-04-08 Thread Allan Wind
On 2007-04-08T21:24:00-0600, Paul E Condon wrote: > On Sat, Apr 07, 2007 at 08:26:23PM -0600, Paul E Condon wrote: > > Debian automagically starts ssh-agent somewhere along the chain of > > events that bring up X and Gnome. I don't reboot often, but when I > > do, I forget to run ssh-add. Where c

Re: ssh setup: what is the Debian way? [addendum]

2007-04-08 Thread Paul E Condon
On Sun, Apr 08, 2007 at 09:24:00PM -0600, Paul E Condon wrote: > On Sat, Apr 07, 2007 at 08:26:23PM -0600, Paul E Condon wrote: > > Debian automagically starts ssh-agent somewhere along the chain of > > events that bring up X and Gnome. I don't reboot often, but when I > > do, I forget to run ssh-

Re: ssh setup: what is the Debian way? [not what I asked for, but OK ]

2007-04-08 Thread Paul E Condon
On Sat, Apr 07, 2007 at 08:26:23PM -0600, Paul E Condon wrote: > Debian automagically starts ssh-agent somewhere along the chain of > events that bring up X and Gnome. I don't reboot often, but when I > do, I forget to run ssh-add. Where can I place an invocation of > ssh-add so that it is run on

Re: ssh setup: what is the Debian way?

2007-04-08 Thread Florian Kulzer
On Sun, Apr 08, 2007 at 10:14:26 -0600, Paul E Condon wrote: > On Sun, Apr 08, 2007 at 10:09:28AM -0400, Celejar wrote: > > On Sun, 8 Apr 2007 08:47:03 -0400 > > Roberto C. Sánchez wrote: > > > > > On Sat, Apr 07, 2007 at 08:26:23PM -0600, Paul E Condon wrote: > > > > Debian automagically starts s

Re: ssh setup: what is the Debian way?

2007-04-08 Thread Celejar
On Sun, 8 Apr 2007 10:14:26 -0600 Paul E Condon <[EMAIL PROTECTED]> wrote: > On Sun, Apr 08, 2007 at 10:09:28AM -0400, Celejar wrote: > > On Sun, 8 Apr 2007 08:47:03 -0400 > > Roberto C. Sánchez <[EMAIL PROTECTED]> wrote: > > > > > On Sat, Apr 07, 2007 at 08:26:23PM -0600, Paul E Condon wrote: >

Re: ssh setup: what is the Debian way?

2007-04-08 Thread Paul E Condon
On Sun, Apr 08, 2007 at 05:50:36PM +0200, Matus UHLAR - fantomas wrote: > On 07.04.07 20:26, Paul E Condon wrote: > > Debian automagically starts ssh-agent somewhere along the chain of > > events that bring up X and Gnome. I don't reboot often, but when I > > do, I forget to run ssh-add. Where ca

Re: ssh setup: what is the Debian way?

2007-04-08 Thread Paul E Condon
On Sun, Apr 08, 2007 at 10:09:28AM -0400, Celejar wrote: > On Sun, 8 Apr 2007 08:47:03 -0400 > Roberto C. Sánchez <[EMAIL PROTECTED]> wrote: > > > On Sat, Apr 07, 2007 at 08:26:23PM -0600, Paul E Condon wrote: > > > Debian automagically starts ssh-agent somewhere along the chain of > > > events th

Re: ssh setup: what is the Debian way?

2007-04-08 Thread Matus UHLAR - fantomas
On 07.04.07 20:26, Paul E Condon wrote: > Debian automagically starts ssh-agent somewhere along the chain of > events that bring up X and Gnome. I don't reboot often, but when I > do, I forget to run ssh-add. Where can I place an invocation of > ssh-add so that it is run once just after login? I

Re: ssh setup: what is the Debian way?

2007-04-08 Thread Celejar
On Sun, 8 Apr 2007 08:47:03 -0400 Roberto C. Sánchez <[EMAIL PROTECTED]> wrote: > On Sat, Apr 07, 2007 at 08:26:23PM -0600, Paul E Condon wrote: > > Debian automagically starts ssh-agent somewhere along the chain of > > events that bring up X and Gnome. I don't reboot often, but when I > > do, I

Re: ssh setup: what is the Debian way?

2007-04-08 Thread Roberto C . Sánchez
On Sat, Apr 07, 2007 at 08:26:23PM -0600, Paul E Condon wrote: > Debian automagically starts ssh-agent somewhere along the chain of > events that bring up X and Gnome. I don't reboot often, but when I > do, I forget to run ssh-add. Where can I place an invocation of > ssh-add so that it is run on

Re: ssh setup: what is the Debian way?

2007-04-07 Thread Andrew J. Barr
Paul E Condon wrote: Debian automagically starts ssh-agent somewhere along the chain of events that bring up X and Gnome. I don't reboot often, but when I do, I forget to run ssh-add. Where can I place an invocation of ssh-add so that it is run once just after login? I think there must be a Deb

Re: ssh setup

2003-06-02 Thread Jeff Elkins
On Sunday 01 June 2003 4:27 am, Jon Haugsand wrote: > * Jeff Elkins > > > Yep, X11Forwarding is set to yes in /etc/ssh_config for both the client > > and the server. SSH seems to function normally in all other respects... > > On the server side, it is the file /etc/ssh/sshd_config. > > -- > Jon Ha

Re: ssh setup

2003-06-01 Thread Jon Haugsand
* Jeff Elkins > Yep, X11Forwarding is set to yes in /etc/ssh_config for both the client and > the server. SSH seems to function normally in all other respects... On the server side, it is the file /etc/ssh/sshd_config. -- Jon Haugsand, [EMAIL PROTECTED] http://www.norges-bank.no -- To UNSU

Re: ssh setup

2003-06-01 Thread Jeff Elkins
On Saturday 31 May 2003 8:16 pm, Colin Watson wrote: > > I'd be inclined to use -vvv. > > > Is root enabled to open a remote X session? > > That's irrelevant to ssh X forwarding. > > -- > Colin Watson [EMAIL PROTECTED] Here's -vvv: (I've tried both with my user ac

Re: ssh setup

2003-06-01 Thread Colin Watson
On Sat, May 31, 2003 at 11:35:24PM +0200, Elimar Riesebieter wrote: > On Sat, 31 May 2003 the mental interface of > Jeff Elkins told: > > On Saturday 31 May 2003 4:09 pm, Vineet Kumar wrote: > > > more specifically, I take it you mean you have "X11Forwarding yes" on > > > the server's sshd_config,

Re: ssh setup

2003-06-01 Thread Elimar Riesebieter
On Sat, 31 May 2003 the mental interface of Jeff Elkins told: > On Saturday 31 May 2003 5:35 pm, Elimar Riesebieter wrote: [...] > > > > > ** CRITICAL **: Unable to open display > > > > > > > > > > X11 forwarding is turned on. What have I forgotten? > > > > > > Is root enabled to open a remote X

Re: ssh setup

2003-06-01 Thread Jeff Elkins
On Saturday 31 May 2003 5:35 pm, Elimar Riesebieter wrote: > On Sat, 31 May 2003 the mental interface of > > Jeff Elkins told: > > On Saturday 31 May 2003 4:09 pm, Vineet Kumar wrote: > > > * Jeff Elkins ([EMAIL PROTECTED]) [030531 12:42]: > > > > I'm setting up a previously working woody mp3 serve

Re: ssh setup

2003-06-01 Thread Elimar Riesebieter
On Sat, 31 May 2003 the mental interface of Jeff Elkins told: > On Saturday 31 May 2003 4:09 pm, Vineet Kumar wrote: > > * Jeff Elkins ([EMAIL PROTECTED]) [030531 12:42]: > > > I'm setting up a previously working woody mp3 server after a crash, but > > > when I try to run xmms via ssh I get: > >

Re: ssh setup

2003-06-01 Thread Jeff Elkins
On Saturday 31 May 2003 4:09 pm, Vineet Kumar wrote: > * Jeff Elkins ([EMAIL PROTECTED]) [030531 12:42]: > > I'm setting up a previously working woody mp3 server after a crash, but > > when I try to run xmms via ssh I get: > > > > ** CRITICAL **: Unable to open display > > > > X11 forwarding is tur

Re: ssh setup

2003-06-01 Thread Vineet Kumar
* Jeff Elkins ([EMAIL PROTECTED]) [030531 12:42]: > I'm setting up a previously working woody mp3 server after a crash, but when I > try to run xmms via ssh I get: > > ** CRITICAL **: Unable to open display > > X11 forwarding is turned on. What have I forgotten? more specifically, I take it yo