File List

Skills Assessment (Version A) [Step by Step]

Full terminal command for Skills Assessment(Version A)

Router R1

// Set the device hostname to R1
Router(config)# hostname R1

// Configure IP address and enable GigabitEthernet 0/0 interface
R1 (config) # int g0/0
R1 (config-if) # ip address 172.51.12.2 255.255.255.252
R1 (config-if) # no shut

// Configure IP address and enable GigabitEthernet 0/1 interface
R1 (config) # int g0/1
R1 (config-if) # ip address 172.51.15.1 255.255.255.0
R1 (config-if) # no shut

// Set interface description for GigabitEthernet 0/0
R1 (config) # int g0/0
R1 (config-if) # description To Wireless Network

// Set interface description for GigabitEthernet 0/1
R1 (config) # int g0/1
R1 (config-if) # description To Wireless Network

// Create a banner that warns anyone accessing the device that 'unauthorized access is prohibited'
R1 (config) # banner motd 'unauthorized access is prohibited'

// Assign cisco as the console password and enable login
R1 (config) # line con 0
R1 (config-line) # password cisco
R1 (config-line) # login

// Assign class as the encrypted privileged EXEC mode password
R1 (config) # enable secret class

// Encrypt all plaintext passwords
R1 (config) # service password-encryption

// Enable IPV6 Routing
R1 (config) # ipv6 unicast-routing

// Set the domain name to cisco.com
R1 (config) # ip domain-name cisco.com

// Generate a 1024-bit RSA key
R1 (config) # line vty 0 4
R1 (config-line) # crypto key generate rsa

// Create a user with a username admin with a scecret password adminpass
R1 (config) # user admin secret adminpass

// Configure the VTY lines for SSH access
R1 (config) # line vty 0 4
R1 (config-line) # transport input ssh

// Enable SSH Version 2
R1 (config) # ip ssh version 2

// Use the local user profiles for authentication
R1 (config) # line vty 0 4
R1 (config-line) # login local

// Save the running configuration to the startup configuration file
R1 # copy run start 
Destination filename [startup-config]?[Enter Key]

Switch S1

// Configure the device name according the Addressing Table
Switch (config) # hostname S1

// Configure the IP address of the switch on SVI interface according to the Addressing Table and enable the interface
S1 (config) # int vlan 1
S1 (config-if) # ip address 172.51.15.5 255.255.255.0

// Create a banner that warns anyone accesing the device that 'unauthorized access is prohibited'
S1 (config-if) # banner motd 'unauthorized access is prohibited'

// Assign cisco as the console/VTY password and enable login
/* console */
S1 (config) # line con 0
S1 (config-line) # password cisco
S1 (config-line) # login
S1 (config-line) # exit
/* vty */
S1 (config) # line vty 0 15
S1 (config-line) # password cisco
S1 (config-line) # login
S1 (config-line) # exit
/* Applied Task */
S1 (config) # line vty 0 15
S1 (config-line) # transport input ssh
S1 (config-line) # login local

// Assign class as the encrypted privileged EXEC mode password
S1 (config) # enable secret class

// Encrypt all plaintext passwords
S1 (config) # service passowrd-encryption

// Assign a Default Gateway
S1 (config) # ip default-gateway 172.51.15.1

// Disable ALL UNUSED ports
S1 (config) # int range f0/1-9, f0/11-24, g0/2
S1 (config-if-range) # shut

// Save the running configuration to the startup configuration file
S1 (config) # copy run start 
Destination filename [startup-config]? [Enter Key]

R1 Table

R1 (config) # int g0/1
R1 (config-if) # ipv6 address 2001:DB8:ACAD:C::1/64
R1 (config-if) # ipv6 address FE80::A linklocal

Gather Device Information

// What is the Cisco IOS software and version currently in use? Also register
R1#show version 

// What IPV6 multicast groups have been assigned to interface G0/1
R1#show ipv6 interface g0/1

// What is the MAC address of the PC-A?
C:\>ipconfig /all

image.png

image.png