[Video] Install Ansible and run your first playbook
Are you a network engineer and want to know from where to start network automation? Or want to learn how to install and configure Ansible server for running your first ansible-playbook on Ansible.
Updating Yum
# yum -y update
Install Python
#sudo yum install python3
Install Ansible
# sudo pip3 install ansible
Install paramiko
sudo pip3 install paramiko
Verify the status/version of installed components
pip --version
python --version
ansible --version
Thanks for the tutorial. By the way, how did you connect Ansible with GNS3 router?
ReplyDeleteHi Shahib, I did not used GNS3 in this demonstration. I connected to lab router form Ansible hosted in AWS.
Delete