首页 > 其他 > 详细

ansible 批量添加免密码信任

时间:2018-07-19 20:56:45      阅读:458      评论:0      收藏:0      [点我收藏+]
1、生成密钥对
ssh-keygen 
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa): 
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:x4GMdUhaRwmn1JOy1zjLC3kEaN/cqjErTvVxYm06zfQ root@localhost.localdomain
The key‘s randomart image is:
+---[RSA 2048]----+
|       o*==o     |
|      oB+*=      |
|     .o.+*.=     |
|        o.Boo    |
|        S=*+=    |
|       .=+=X .   |
|      .  B+.o E  |
|     .. o ..     |
|     ...         |
+----[SHA256]-----+

2、指定远程机器及密码

  • 关掉key验证

    vi /etc/ansible/ansible.cnf
    host_key_checking = False

  • 指定机器和密码

vi /etc/ansible/hosts

[test]
192.168.10.51
192.168.10.52

[test:vars]
ansible_ssh_pass="123456"

3、发送公钥到目标机器

ansible test -m copy -a "src=/root/.ssh/id_rsa.pub dest=/tmp/authorized_keys mode=600"

4、验证

ansible test -m shell -a "whoami"
192.168.10.52 | SUCCESS | rc=0 >>
root

192.168.10.51 | SUCCESS | rc=0 >>
root

ansible 批量添加免密码信任

原文:http://blog.51cto.com/4988084/2147372

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!