Incluso si el agente está activo, si ciertas variables de entorno no están establecidas, no tiene referencia al agente. Además, incluso si todo está bien, agente y variables, la identidad no se envía automáticamente al agente: esa es una tarea para ssh-askpass
trabajar solo en sesiones X.
Si está utilizando bash, cree el archivo ~/.bash_profile
con este contenido:
# File: ~/.bash_profile
# source ~/.profile, if available
if [[ -r ~/.profile ]]; then
. ~/.profile
fi
# start agent and set environment variables, if needed
agent_started=0
if ! env | grep -q SSH_AGENT_PID >/dev/null; then
echo "Starting ssh agent"
eval $(ssh-agent -s)
agent_started=1
fi
# ssh become a function, adding identity to agent when needed
ssh() {
if ! ssh-add -l >/dev/null 2>&-; then
ssh-add ~/.ssh/id_dsa
fi
/usr/bin/ssh "$@"
}
export -f ssh
# another example: git
git() {
if ! ssh-add -l >/dev/null 2>&-; then
ssh-add ~/.ssh/id_dsa
fi
/usr/bin/git "$@"
}
export -f git
modifique el nombre del archivo ~/.ssh/id_dsa
según sus necesidades y agregue esta línea a~/.bash_logout
# stuff to add at end of ~/.bash_logout
if ((agent_started)); then
echo "Killing ssh agent"
ssh-agent -k
fi
Una última nota: esto no interfiere con una sesión de gnome, porque en ese caso solo ~/.profile
se obtiene, y puede beneficiarse de la ssh-askpass
interfaz gráfica que solicita una frase de contraseña y la envía al ssh-agent
.
ssh-agent
está ejecutando:ps -ef | grep '[s]sh-agent'