Cisco Packet Tracer - Skills Integration Challenge RTA, ASw-2

Pada challenge kali ini anda bertindak sebagai seorang teknisi jaringan yang di tugaskan oleh seorang manager jaringan untuk melakukan konfigurasi dasar pada perangkat router, switch dan melakukan konfigurasi yang benar pada setiap client, karena setiap client yang ada pada jaringan tersebut tidak dapat saling berkomunikasi. Anda diharuskan mengkonfigurasi switch ASw-2 dan router, akan tetapi untuk switch class A ternyata sudah terkonfigurasi dengan benar, tugas anda hanya melakukan konfigurasi yang benar pada setiap client, router dan switch ASw-2.

Namun sebelum memulai konfigurasi ada baiknya anda memahami setiap petunjuk pada scenario maupun step by step penyelesaian konfigurasinya pada requirements atau persyaratan yang harus dikerjakan. Setiap tahapan dinilai dengan nilai, anda harus sampai pada score 100 untuk memastikan semua konfigurasi telah dilakukan dengan benar. Berikut ini adalah tabel IP address serta petunjuk pengerjaan yang ada pada cisco packet tracer tersebut.

https://padsite.blogspot.com/2019/06/packet-tracer-skills-integration-challange-rta-asw.html
Packet Tracer - Skills Integration Challenge
Topology
You will receive one of three possible topologies.

Addressing Table
 Device  Interface  IP address  Subnet Mask  Default Gateway
 RTA  G0/0
 G0/1
 10.10.10.1
 10.10.11.1
 255.255.255.0
 255.255.255.0
 NA
 NA
 ASw-1  VLAN1  10.10.10.100  255.255.255.0
 ASw-2  VLAN1  10.10.11.100  255.255.255.0
 Student-1  NIC  10.10.10.102  255.255.255.0
 Student-2  NIC  10.10.10.101  255.255.255.0
 Student-3  NIC  10.10.11.101  255.255.255.0
 Student-4  NIC  10.10.11.102  255.255.255.0

Objectives
  • Finish the network documentation.
  • Perform basic device configurations on a router and a switch.
  • Verify connectivity and troubleshoot any issues.
Scenario
Your network manager is impressed with your performance in your job as a LAN technician. She would like you to now demonstrate your ability to configure a router connecting two LANs. Your tasks include configuring basic settings on a router and a switch using the Cisco IOS. You will then verify your configurations, as well as configurations on existing devices by testing end-to-end connectivity.

Note: After completing this activity, you can choose to click the Reset Activitybutton to generate a new set of requirements. Variable aspects include device names, IP addressing schemes, and the topology.

Requirements
  • Provide the missing information in the Addressing Table.
  • Name the router RTA and the second switch Class-B. You will not be able to access Class-A.
  • Use cisco as the user EXEC password for all lines.
  • Use class as the privileged EXEC password.
  • Encrypt all plain text passwords.
  • Configure an appropriate banner.
  • Configure addressing for all devices according to the Addressing Table.
  • Document interfaces with descriptions, including the Class-B VLAN 1 interface.
  • Save your configurations.
  • Verify connectivity between all devices. All devices should be able to ping any other device.
  • Troubleshoot and document any issues.
  • Implement the solutions necessary to enable and verify full end-to-end connectivity.
Note: Click Check Results button to see your progress. Click the Reset Activity button to generate a new set of requirements.
ID: 022

Setelah memahami setiap persayaratan dan tabel ip address yang telah ditentukan langkah selanjutnya adalah melakukan konfugurasi pada router RTA, perhatikan perintah – perintah berikut ini yang digunakan untuk melakukan konfigurasi pada router RTA.

 Command  Keterangan
 enable  Masuk pada user privileged mode
 configure terminal  Masuk pada mode konfigurasi
 hostname  Memberikan nama pada router
 line console 0  Masuk pada console 0
 password  Memberikan password pada console 0
 login  Mengaktifkan login pada line console 0
 exit  Keluar dari line console 0
 line vty 0 4  Masuk pada line vty 0 sd 4
 password  Memberikan password pada line vty 0 4
 login  Mengaktifkan login pada line vty 0 4
 exit  Keluar dari line vty 0 4
 enable password  Memberikan password pada user exec tanpa enskripsi
 enable secret  Memberikan password pada user exec dengan enskripsi password
 service password-enscription  Memberikan enskripsi pada semua password
 interface gigabiteEthernet  Masuk pada interface gigabiteEthernet 0/0
 ip address  Memberikan IP address pad interfaceGigabite 0/0
 no shutdown  Menghidupkan interface gigabiteEthernet 0/0
 exit  Keluar dari interface gigabiteEthernet 0/0
 interface gigabiteEthernet  Masuk pada interface gigabiteEthernet 0/1
 ip address  Memberikan IP address pad interfaceGigabite 0/1
 no shutdown  Menghidupkan interface gigabiteEthernet 0/1
 exit  Keluar dari interface gigabiteEthernet 0/1
 exit  Keluar dari mode config
 copy running-config startup-config  Menyimpan konfigurasi pada NVRAM
 exit  Keluar dari privileged user mode

Untuk lebih lengkapnya perhatikanlah konfigurasi pada router RTA berikut ini.
Press RETURN to get started!
Router>enable
Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname RTA
RTA(config)#enable password cisco
RTA(config)#enable secret class
RTA(config)#line console 0
RTA(config-line)#password cisco
RTA(config-line)#login
RTA(config-line)#exit
RTA(config)#line vty 0 4
RTA(config-line)#password cisco
RTA(config-line)#login
RTA(config-line)#exit
RTA(config)#service password-encryption
RTA(config)#interface gi
RTA(config)#interface gigabitEthernet 0/0
RTA(config-if)#ip address 10.10.10.1 255.255.255.0
RTA(config-if)#no shutdown
RTA(config-if)#
%LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0, changed state to up

RTA(config-if)#exit
RTA(config)#interface gigabitEthernet 0/1
RTA(config-if)#ip address 10.10.11.1 255.255.255.0
RTA(config-if)#no shutdown

RTA(config-if)#
%LINK-5-CHANGED: Interface GigabitEthernet0/1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/1, changed state to up

RTA(config-if)#end
RTA#
%SYS-5-CONFIG_I: Configured from console by console

RTA#write
Building configuration...
[OK]
RTA#copy running-config start
RTA#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
RTA#

Setelah selesai melakukan konfigurasi pada router RTA anda dapat mengecek terlebih dahulu pada assessment items dengan mengklik check results. Jika setiap konfigurasi telah benar maka anda akan melihat ceklis berwarna hijau dan setiap score akan bertambah. Jika router RTA telah berhasil di konfigurasi maka langkah selanjutnya adalah melakukan konfigurasi pada switch ASw-2. Perhatikanlah perintah – perintah berikut ini yang digunakan dalam konfigurasi pada switch ASw-2.
 Command  Keterangan
 enable  Masuk pada user privileged mode
 configure terminal  Masuk pada mode konfigurasi
 hostname  Memberikan nama pada switch
 line console 0  Masuk pada line console 0
 password  Memberikan password pada line console 0
 login  Mengaktifkan login pada line console 0
 exit  Keluar dari line console 0
 line vty 0 4  Masuk pada line vty 0 4
 password  Memberikan password pada line vty 0 4
 login  Mengaktifkan login pada line vty 0 4
 exit  Keluar dari line vty 0 4
 enable password  Memberikan password pada privileged user mode
 enable secret  Memberikan password pada privileged user mode dengan enskripsi
 service password-enscription  Memberikan enskripsi pada semua password
 interface vlan1  Masuk pada interface vlan 1
 ip address  Memberikan ip address pada vlan 1
 no shutdown  Menghidupkan vlan 1
 exit  Keluar dari vlan 1
 ip default-gateway  Memberikan default gateway pada akses switch
 end  Keluar dari mode konfigurasi
 copy running-config startup-config  Menyimpan pada NVRAM hasil konfigurasi

Perhatikanlah perintah – perintah diatas sebelum melakukan konfigurasi pada perangkat switch, jika sudah maka lakukan konfigurasi, anda dapat melihat konfigurasi lengkap pada switch berikut ini.
Switch-2>enable
Switch#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
ASw-2(config)#hostname ASw-2
ASw-2(config)#line console 0
ASw-2(config-line)#password cisco
ASw-2(config-line)#login
ASw-2(config-line)#exit
ASw-2(config)#line vty 0 4
ASw-2(config-line)#password cisco
ASw-2(config-line)#login
ASw-2(config-line)#exit

ASw-2(config)#enable password cisco
ASw-2(config)#enable secret class
ASw-2(config)#service password-encryption
   
ASw-2(config)#interface Vlan1
ASw-2(config-if)#ip address 10.10.11.100 255.255.255.0

ASw-2(config-if)#no shutdown

ASw-2(config-if)#
%LINK-5-CHANGED: Interface Vlan1, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan1, changed state to up

ASw-2(config-if)#exit
ASw-2(config)#ip default-gateway 10.10.11.1
ASw-2(config)#end
ASw-2#
%SYS-5-CONFIG_I: Configured from console by console

ASw-2#wr
Building configuration...
[OK]

ASw-2#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
Sama seperti dengan melakukan konfigurasi pada router, setiap kebenaran pada hasil konfigurasi switch pun akan memliki nilai tersendiri untuk memastikan kebenarannya anda dapat melihatnya pada bagian assessment items dengan mengklik tombol check results. Setelah konfigurasi router dan switch ASw-2 telah dilakukan selanjutnya adalah melakukan konfigurasi pada setiap client, konfigurasi client ini hanya meliputi IP add dan default gateway yang belum tersetting, perhatikan table ip address di atas dan konfigurasikan setiap client tersebut dengan ip yang ada pada tabel tersebut dan default gateway di sesuaikan dengan interface pada routernya. Kemudian jika sudah selesai semua maka lihatlah kembali assessment item dan bobot nilai harus 100.

Conclusion 
Menjadi seorang teknisi jaringan tentunya harus memiliki kemampuan dasar untuk melakukan konfigurasi pada perangkat jaringan dan trouble shotting pada jaringan dengan memastikan bahwa setiap client telah terhubung dengan baik. Pada challenge ini semua pekerjaan teknisi ini dilakukan dengan memulai konfigurasi dari awal router melakukan pengecekan setiap client yang telah terhubung.

0 Response to "Cisco Packet Tracer - Skills Integration Challenge RTA, ASw-2"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel