6.5.1.2/6.5.1.3 Packet Tracer Skills Integration Challenge Instructions Answers
Packet Tracer – Skills Integration Challenge
Topology
You will receive one of three possible topologies.
Addressing Table
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 Activity button 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 ASw-2. You will not be able to access ASw-1.
· 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 ASw-2 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.
Instructions



Router>enable
Router#configure terminal
Router(config)#hostname RTARTA(config)#line console 0
RTA(config-line)#password cisco
RTA(config-line)#login
RTA(config-line)#exitRTA(config)#line vty 0 4
RTA(config-line)#password cisco
RTA(config-line)#login
RTA(config-line)#exitRTA(config)#enable password cisco
RTA(config)#enable secret class
RTA(config)#service password-encryption
RTA(config)#banner motd #Router RTA#RTA(config)#interface gigabitEthernet 0/0
RTA(config-if)#ip address 172.14.5.1 255.255.255.0
RTA(config-if)#no shutdown
RTA(config-if)#exitRTA(config)#interface gigabitEthernet 0/1
RTA(config-if)#ip address 172.14.10.1 255.255.255.0
RTA(config-if)#no shutdown
RTA(config-if)#exitRTA(config)#exit
RTA#copy running-config startup-config
ASw-2#configure terminal
ASw-2(config)#line console 0
ASw-2(config-line)#password cisco
ASw-2(config-line)#login
ASw-2(config-line)#exitASw-2(config)#line vty 0 4
ASw-2(config-line)#password cisco
ASw-2(config-line)#login
ASw-2(config-line)#exitASw-2(config)#enable password cisco
ASw-2(config)#enable secret class
ASw-2(config)#service password-encryption
ASw-2(config)#banner motd #Switch 2#ASw-2(config)#interface vlan 1
ASw-2(config-if)#ip address 172.14.10.35 255.255.255.0
ASw-2(config-if)#no shutdown
ASw-2(config-if)#description #This is interface VLAN 1 in ASw-2#
ASw-2(config-if)#exit
ASw-2(config)#ip default-gateway 172.14.10.1
ASw-2(config)#exit
ASw-2#copy running-config startup-config