Ansible - Enable SSH Communication
Ansible - Enable SSH Communication
Ansible is an agentless automation tool; means no need to install any agent on the nodes which Ansible manages. Instead, Ansible control machine communicates to the nodes via SSH. We have to enable SSH communication between control machine and nodes before executing any playbook.
There are 2 ways this ssh communication can be setup:
- Create a ssh key from control machine and propogate to the nodes
- Pass the credentials via inventory file
We will setup both ways now.
Via inventory file
In the inventory file, pass ansible_ssh_user and ansible_ssh_pass along with the node’s IP address or FQDN as below.
[node1]
10.0.0.2 ansible_ssh_user=root ansible_ssh_pass=password
Via SSH key
- Generate a SSH key in the control machine as below
$ ssh-keygen -t rsa -b 4096
2. Copy the ssh key that is created to the node using the following command
$ ssh-copy-id root@10.0.0.2
3. Verify connection once
$ ssh root@10.0.0.2
Now that ssh connection is successfully established
Test the communication
Now we can test the communication between control machine and and the node using few ansible modules as below
- Ping the node machine
$ ansible -m ping node1
- Find node machine’s uptime
$ ansible -m command -a uptime node1
SSH Connection established successfully !!!! Now the Control machine can communicate to the node.