ssh-key配置免密码登录

配置免密码登录:

③  配置免密码登录:

[root@Distribution-Center ~]# mkdir -p ~/.ssh/        创建ssh目录

[root@Distribution-Center ~]# ssh-keygen -t dsa      创建密码文件
  Generating public/private dsa key pair.
  Enter file in which to save the key (/root/.ssh/id_dsa): 
  Enter passphrase (empty for no passphrase): 
  Enter same passphrase again: 
  Your identification has been saved in /root/.ssh/id_dsa.
  Your public key has been saved in /root/.ssh/id_dsa.pub.
  The key fingerprint is:
  7f:7a:f1:94:dd:4c:96:4b:2c:66:c0:cc:0a:02:5e:f4 root@Distribution-Center
  The key's randomart image is:
  +--[ DSA 1024]----+
  |   .oo    +      |
  |  . ....   =     |
  |   .  .E. . . . .|
  |         .   + +o|
  |        S   o o*o|
  |         .  . o.+|
  |          . .+   |
  |           o. .  |
  |          ..     |
  +-----------------+
  [root@Distribution-Center ~]# ls -l ~/.ssh/    
  total 8
  -rw-------. 1 root root 668 Jul  5 11:35 id_dsa                私钥
  -rw-r--r--. 1 root root 614 Jul  5 11:35 id_dsa.pub         公钥 

[root@Distribution-Center ~]# cd ~/.ssh/

[root@Distribution-Center .ssh]# ssh-copy-id -i id_dsa.pub [email protected]       分发公钥文件
  [email protected]'s password: 
  Now try logging into the machine, with "ssh '[email protected]'", and check in:
  
    .ssh/authorized_keys
  
  to make sure we haven't added extra keys that you weren't expecting.
  
  [root@Distribution-Center .ssh]# 


  [root@Distribution-Center .ssh]# ssh p22 [email protected] /sbin/ifconfig      
没有要密码哦


你可能感兴趣的:(免密码登录,ssh-key)