CCNA2 - Lab Flashcards

1
Q
  1. hostname
  2. set motd to Welcome to CCS!
  3. set encrypted enable password to ccna
  4. set console password to final
  5. encryp password
A

enable
configure terminal
hostname Main
banner motd “Welcome to CCS!”
enable secret ccna
line console 0
password final
login
exit
service password-encryption

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

set ip domain-name & generate secure keys

A

ip domain-name ccs.com
crypto key generate rsa
# Choose a key size of 1024 bits when prompted

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Create SSH user & reconfigure the vty lines for ssh only access

A

username administrator secret secret
line vty 0 4
transport input ssh
login local
password tsu
exit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

create vlans & name them

A

vlan 10
name MAIN
exit
vlan 20
name CCS
exit
vlan 30
name LUCINDA
Exit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

make g0/1-2 trunk

A

int g0/1 (s1 & s2)
sw mode trunk
nonegotiate

int g0/2 (s1)
sw mode trunk
dynamic desirable (no on s3)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

assign vlans to the active ports

A

interface F0/11
switchport mode access
switchport access vlan 10
exit
interface F0/18
switchport mode access
switchport access vlan 20
exit
interface F0/6
switchport mode access
switchport access vlan 30
exit
interface G0/1
switchport mode trunk
sw nonegotiate
exit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

configure port security

A

interface range F0/11, F0/13
switchport mode access
switchport port-security
switchport port-security maximum 1
switchport port-security mac-address sticky
switchport port-security violation restrict
Exit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

disable unused ports

A

interface range F0/2 - F0/5
interface range F0/7 - F0/10
interface range F0/12 - F0/17
interface range F0/19 - F0/24
shutdown
exit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

save the config

A

copy run start

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

IP add of PCs

A
  1. 192.168.1.10/26
  2. 192.168.1.69/27
  3. 192.168.1.98/29
  4. 192.168.1.20/26
  5. 192.168.1.74/27
  6. 192.168.1.101/29
How well did you know this?
1
Not at all
2
3
4
5
Perfectly