This link has been bookmarked by 119 people . It was first bookmarked on 18 Aug 2006, by Pete McKinstry.
-
12 May 17
-
Over ten years ago (that would be back in 2002 as of this writing), I went searching for a good, general page that would explain how to do passwordless logins using ssh-agent and didn't find much at the time (now there is much more out there). So I wrote this page.
-
-
11 Sep 16
-
11 Aug 16
-
01 Sep 15
-
15 Aug 15
-
20 Jul 15
-
26 Jun 15
BOK ™Over ten years ago (that would be back in 2002 as of this writing), I went searching for a good, general page that would explain how to do passwordless logins using ssh-agent and didn't find much at the time (now there is much more out there). So I wrote this page.
-
16 May 15
-
SSH_ENV="$HOME/.ssh/environment" function start_agent { echo "Initialising new SSH agent..." /usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}" echo succeeded chmod 600 "${SSH_ENV}" . "${SSH_ENV}" > /dev/null /usr/bin/ssh-add; } # Source SSH settings, if applicable if [ -f "${SSH_ENV}" ]; then . "${SSH_ENV}" > /dev/null #ps ${SSH_AGENT_PID} doesn't work under cywgin ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || { start_agent; } else start_agent; fi
-
-
23 Jan 15
-
30 Oct 14
-
05 Jun 14
-
13 May 14
-
02 May 14
-
10 Apr 14
-
23 Sep 13
nosurs"SSH_ENV="$HOME/.ssh/environment"
function start_agent {
echo "Initialising new SSH agent..."
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}"
echo succeeded
chmod 600 "${SSH_ENV}"
. "${SSH_ENV}" > /dev/null
/usr/bin/ssh-add;
}
# Source SSH settings, if applicable
if [ -f "${SSH_ENV}" ]; then
. "${SSH_ENV}" > /dev/null
#ps ${SSH_AGENT_PID} doesn't work under cywgin
ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
start_agent;
}
else
start_agent;
fi" -
03 Aug 13
-
11 Mar 13
-
12 Dec 12
-
23 Nov 12
-
19 Sep 12
-
07 Sep 12
-
24 Jan 12
-
15 Oct 11
-
23 Sep 11
-
25 Aug 11
-
24 Jul 11
-
15 Jul 11
-
14 May 11
-
18 Mar 11
-
02 Nov 10
J MI went searching for a good, general page that would explain how to do passwordless logins using ssh-agent and didn't find much at the time (now there is much more out there). So I wrote this page.
-
26 Aug 10
-
18 May 10
-
25 Mar 10
-
23 Dec 09
-
05 Oct 09
-
18 Aug 09
-
12 Jun 09
-
06 May 09
-
31 Mar 09
-
12 Jan 09
-
08 Nov 08
-
15 Oct 08
Juan Carlos Rubio PinedaHow to use ssh-agent to get secure, encrypted passwordless logins.
-
08 Oct 08
-
30 Sep 08
-
17 Sep 08
-
28 Aug 08
-
12 Aug 08
-
19 Dec 07
-
16 Dec 07
-
cat ~/.ssh/id_dsa.pub | ssh you@other-host 'cat - >> ~/.ssh/authorized_keys'
-
-
20 Nov 07
-
01 Aug 07
-
25 Jul 07
-
08 May 07
-
21 Mar 07
-
01 Mar 07
-
27 Feb 07
-
03 Feb 07
-
25 Jan 07
-
25 Oct 06
-
07 Oct 06
-
01 Oct 06
-
22 Sep 06
-
30 Jun 06
-
29 Jun 06
-
25 May 06
-
19 May 06
-
30 Jun 05
-
24 Mar 05
-
25 Feb 05
Would you like to comment?
Join Diigo for a free account, or sign in if you are already a member.