在 Bashrc 中设置 SSH 身份

Posted

技术标签:

【中文标题】在 Bashrc 中设置 SSH 身份【英文标题】:Set SSH Identities In Bashrc 【发布时间】:2013-06-03 20:50:36 【问题描述】:

我有一个 .bashrc 文件来启动我的 ssh 代理 (taken from here)。

每当我启动我的机器时,我都必须向它添加我的身份(使用ssh-add ~/.ssh my_private key)。 不太了解 bash 脚本,我该调整什么(以及在哪里)添加我的身份?

SSH_ENV="$HOME/.ssh/environment"

# start the ssh-agent
function start_agent 
    echo "Initializing new SSH agent..."
    # spawn ssh-agent
    ssh-agent | sed 's/^echo/#echo/' > "$SSH_ENV"
    echo succeeded
    chmod 600 "$SSH_ENV"
    . "$SSH_ENV" > /dev/null
    ssh-add


# test for identities
function test_identities 
    # test whether standard identities have been added to the agent already
    ssh-add -l | grep "The agent has no identities" > /dev/null
    if [ $? -eq 0 ]; then
        ssh-add
        # $SSH_AUTH_SOCK broken so we start a new proper agent
        if [ $? -eq 2 ];then
            start_agent
        fi
    fi


# check for running ssh-agent with proper $SSH_AGENT_PID
if [ -n "$SSH_AGENT_PID" ]; then
    ps -ef | grep "$SSH_AGENT_PID" | grep ssh-agent > /dev/null
    if [ $? -eq 0 ]; then
    test_identities
    fi
# if $SSH_AGENT_PID is not properly set, we might be able to load one from
# $SSH_ENV
else
    if [ -f "$SSH_ENV" ]; then
    . "$SSH_ENV" > /dev/null
    fi
    ps -ef | grep "$SSH_AGENT_PID" | grep -v grep | grep ssh-agent > /dev/null
    if [ $? -eq 0 ]; then
        test_identities
    else
        start_agent
    fi
fi

【问题讨论】:

【参考方案1】:

知道了,有一个高级的时刻。 在 test_identities 函数中,刚刚完成了以 ssh-add 开头的那一行。

【讨论】:

以上是关于在 Bashrc 中设置 SSH 身份的主要内容,如果未能解决你的问题,请参考以下文章

在 XMPPFramework 中设置 Facebook SASL 身份验证

如何在 KONGO 中设置 JWT 身份验证

如何在 ServiceAuthorizationManager 中设置身份/用户名?

在 tomcat webapp 中设置身份验证的最佳方法是啥?

如何在 MVC 5 中设置本地授权身份验证?

如何使用带有密码的 SSH 密钥身份验证“去获取”私有存储库