I am going to present the practical tasks of the Netacad DevAsc Skills-Based exam.
- Git has to be installed on your local machine
- Registered account on Github
- A text editor to modify the README.md file
- Cloned the repository using
git clone repo url
- Took screenshots and added to the local repository
- Added all file to the staging area
git add .
git commit -m 'Task 1 -- Github Skills Test'
- Pushed all the changes to the repository
git push
- Installed Ansible
- Create three files - IOS_COMMANDS_PB.yaml (Ansible Playbook), hosts (Hosts file to access the hosts), and ansible.cfg (Ansible Configuration File)
- The playbook name was sat in IOS_COMMANDS_PB.yaml file as follow:
---
- name: IOS_COMMANDS_PB
- Added the following lines to the hosts file
[routers]
CSR1kv_1 ansible_user=cisco ansible_password=cisco123! ansible_host=192.168.173.130
CSR1kv_2 ansible_user=cisco ansible_password=cisco123! ansible_host=192.168.173.130
- Used the
ansible-playbook
command to run the playbook
> ansible-playbook IOS_COMMANDS_PB.yaml
- It seems the host is not reachable as I didn't know the correct IP address, although I tried Google and the Webex conversation
- Installed Docker
- Dowloaded the docker-ntp repo from Github
- Successful run the following commands
- I used Ubuntu to run docker as it doesn't work properly on Mac