美文网首页
ssh 认证linux cygwin

ssh 认证linux cygwin

作者: 9682f4e55d71 | 来源:发表于2017-03-30 11:46 被阅读44次
    == ssh keygen(cygwin) ==
    ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa && scp ~/.ssh/id_rsa.pub root@example.com:~
    cd ~ && cat id_rsa.pub >> .ssh/authorized_keys && chmod 700 .ssh && chmod 600 .ssh/authorized_keys
    
    -- or --
    ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa && scp ~/.ssh/id_dsa.pub root@example.com:~
    cd ~ && cat id_dsa.pub >> .ssh/authorized_keys && chmod 700 .ssh && chmod 600 .ssh/authorized_keys
    

    相关文章

      网友评论

          本文标题:ssh 认证linux cygwin

          本文链接:https://www.haomeiwen.com/subject/qabuottx.html