当前位置:   article > 正文

linux ssh互信配置_/usr/bin/ssh-copy-id: info: source of key(s) to be

/usr/bin/ssh-copy-id: info: source of key(s) to be installed: "/root/.ssh/id

ssh-copy-id -i .ssh/id_rsa.pub root@192.168.3.20

注意:

ssh-copy-id不是这样使用,如下

ssh-copy-id root@192.168.3.21

  1. [root@centos5 ~]# ssh-copy-id root@195.168.43.135
  2. /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub"
  3. /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
  4. /usr/bin/ssh-copy-id: ERROR: ssh: connect to host 195.168.43.135 port 22: Connection refused
  1. [root@centos5 ~]# ssh-copy-id root@195.168.43.135
  2. /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub"
  3. /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
  4. /usr/bin/ssh-copy-id: ERROR: ssh_exchange_identification: read: Connection reset by peer
  1. NAME
  2.      ssh-copy-id — use locally available keys to authorise logins on a remote machine
  3. SYNOPSIS
  4.      ssh-copy-id [-f] [-n] [-i [identity_file]] [-p port] [-o ssh_option] [user@]hostname
  5.      ssh-copy-id -h | -?
  1. EXAMPLES
  2.      If you have already installed keys from one system on a lot of remote hosts, and you then create a new key, on a new
  3.      client machine, say, it can be difficult to keep track of which systems on which you've installed the new key.  One way
  4.      of dealing with this is to load both the new key and old key(s) into your ssh-agent(1).  Load the new key first, with‐
  5.      out the -c option, then load one or more old keys into the agent, possibly by ssh-ing to the client machine that has
  6.      that old key, using the -A option to allow agent forwarding:
  7.            user@newclient$ ssh-add
  8.            user@newclient$ ssh -A old.client
  9.            user@oldl$ ssh-add -c
  10.            ... prompt for pass-phrase ...
  11.            user@old$ logoff
  12.            user@newclient$ ssh someserver
  13.      now, if the new key is installed on the server, you'll be allowed in unprompted, whereas if you only have the old
  14.      key(s) enabled, you'll be asked for confirmation, which is your cue to log back out and run
  15.            user@newclient$ ssh-copy-id -i someserver
  16.      The reason you might want to specify the -i option in this case is to ensure that the comment on the installed key is
  17.      the one from the .pub file, rather than just the filename that was loaded into you agent.  It also ensures that only
  18.      the id you intended is installed, rather than all the keys that you have in your ssh-agent(1).  Of course, you can
  19.      specify another id, or use the contents of the ssh-agent(1) as you prefer.
  20.      Having mentioned ssh-add(1)'s -c option, you might consider using this whenever using agent forwarding to avoid your
  21.      key being hijacked, but it is much better to instead use ssh(1)'s ProxyCommand and -W option, to bounce through remote
  22.      servers while always doing direct end-to-end authentication. This way the middle hop(s) don't get access to your
  23.      ssh-agent(1).  A web search for ‘ssh proxycommand nc’ should prove enlightening (N.B. the modern approach is to use the
  24.      -W option, rather than nc(1)).

环境:

node1:192.168.3.20 
node2:192.168.3.21

用到的命令
  • ssh-keygen:创建公钥和密钥,会生成id_rsa和id_rsa.pub两个文件
  • ssh-copy-id:把本地的公钥复制到远程主机的authorized_keys文件(不会覆盖文件,是追加到文件末尾),并且会设置远程主机用户目录的.ssh和.ssh/authorized_keys权限 
    权限为: 
    chmod 700 ~/.ssh 
    chmod 600 ~/.ssh/authorized_keys

下面开始

1.在两台机器上生成各自的key文件
  1. [root@192.168.3.20]#ssh-keygen -t rsa #下面一直按回车就好
  2. [root@192.168.3.21]#ssh-keygen -t rsa
2.用ssh-copy-id 把公钥复制到远程主机上,命令也要
  1. [root@192.168.3.20]#ssh-copy-id -i .ssh/id_rsa.pub root@192.168.3.21
  2. [root@192.168.3.21]#ssh-copy-id -i .ssh/id_rsa.pub root@192.168.3.20

注:如果不是默认的端口,可以这样写 
ssh-copy-id -i ~/.ssh/id_rsa.pub “-p 2022 root@192.168.3.21”

现在就可以直接登录了

[root@192.168.3.20]#ssh root@192.168.3.21,试试吧

说明:

  • 上面是以root用户配置互信,如果想要其它用户,可以切到相应的用户下执行命令即可
  • 如果单纯的只需要单向信任,在一台机器上执行命令就可以了,比如说node1连接node2,不用密码的话,在node1上执行命令就可以了
  • 3.也可以把ip地址和主机名对应关系加到 /etc/hosts里 这样直接ssh 主机名就可以了(eg:192.168.3.21 node2 加到hosts里就可以了

出处:https://blog.csdn.net/chenghuikai/article/details/52807074

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/187744
推荐阅读
相关标签
  

闽ICP备14008679号