Skip to content

I am going to present the practical tasks of the Netacad DevAsc Skills-Based exam.

Notifications You must be signed in to change notification settings

whitehacker/Devasc_Skills

Repository files navigation

Devasc_Skills

I am going to present the practical tasks of the Netacad DevAsc Skills-Based exam.

Task 1 -- Github Skills Test

Preparation

  • Git has to be installed on your local machine
  • Registered account on Github
  • A text editor to modify the README.md file

Implementation

  • 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

Verification

Cloning Repository Cloning Repository

Task 2 - Ansible Skills Test

Preparation:

  • Installed Ansible
  • Create three files - IOS_COMMANDS_PB.yaml (Ansible Playbook), hosts (Hosts file to access the hosts), and ansible.cfg (Ansible Configuration File)

Implementation:

  • 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-playbookcommand to run the playbook
> ansible-playbook IOS_COMMANDS_PB.yaml

Troubleshooting

  • It seems the host is not reachable as I didn't know the correct IP address, although I tried Google and the Webex conversation

Verification

Running Playbook

Task 3 -- Docker

Preparation

  • Installed Docker
  • Dowloaded the docker-ntp repo from Github

Implementation

  • Successful run the following commands

Running Playbook Running Playbook Running Playbook Running Playbook Running Playbook

Troubleshooting

  • I used Ubuntu to run docker as it doesn't work properly on Mac

About

I am going to present the practical tasks of the Netacad DevAsc Skills-Based exam.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published