ansible 批量添加免密码信任

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible 批量添加免密码信任相关的知识,希望对你有一定的参考价值。

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 [email protected]
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 批量添加免密码信任的主要内容,如果未能解决你的问题,请参考以下文章

运维自动化之 - ansible 批量主机管理

SSH免密码登录教程

Ansible批量更新远程主机用户密码 (包括Ansible批量做ssh互信)

ansible-playbook批量修改密码

ansible免手工输入yes和快速部署公钥

ansible 用户批量创建与管理