-
Notifications
You must be signed in to change notification settings - Fork 12
/
ITN Practice PT Skills Assessment (PTSA)
155 lines (114 loc) · 2.99 KB
/
ITN Practice PT Skills Assessment (PTSA)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
******************** ITN Practice PT Skills Assessment (PTSA) ********************
Ipv4 Addressing Scheme
======================
Subnet Number | Hosts Available | Network address | Mask | Assignement |
1 30 192.168.1.0 255.255.255.224
2 30 192.168.1.32 255.255.255.224
3 30 192.168.1.64 255.255.255.224
4 30 192.168.1.96 255.255.255.224 IT Department LAN
5 14 192.168.1.128 255.255.255.240
6 14 192.168.1.144 255.255.255.240 Administration LAN
PC configurations
=================
#To configure, clik on the selected device, go to Desktop>IP configuration
*Host 1
IPv4 Address : 192.168.1.97
IPv4 Subnet mask : 255.255.255.224
IPv4 Default gateway : 192.168.1.126
IPv6 Address : 2001:DB8:ACAD:A::FF/64
IPv6 Default gateway : FE80::1
*Host 2
IPv4 Address : 192.168.1.98
IPv4 Subnet mask : 255.255.255.224
IPv4 Default gateway : 192.168.1.126
IPv6 Address : 2001:DB8:ACAD:A::15/64
IPv6 Default gateway : FE80::1
*Host 3
IPv4 Address : 192.168.1.145
IPv4 Subnet mask : 255.255.255.240
IPv4 Default gateway : 192.168.1.158
IPv6 Address : 2001:DB8:ACAD:B::FF/64
IPv6 Default gateway : FE80::1
*TFTP Server
IPv4 Address : 192.168.1.146
IPv4 Subnet mask : 255.255.255.240
IPv4 Default gateway : 192.168.1.158
IPv6 Address : 2001:DB8:ACAD:B::15/64
IPv6 Default gateway : FE80::1
Building 1 router configuration
===============================
#To configure the router, you need to use a console cable.
#Select it from the lower left corner , COnnections -> Console
#Connect Host 1 and Building 1
#On Host 1, go to “Desktop ” –> “Terminal”
en
conf terminal
hostname Middle
enable secret class12345
service password-encryption
banner motd #Authorized Access only#
security passwords min-length 10
login block-for 120 attempts 2 within 30
no ip domain-lookup
ip domain-name CCNA-lab.com
crypto key generate rsa
1024
ipv6 unicast-routing
line console 0
password cisco12345
login
exec-timeout 60
exit
line vty 0 4
password cisco12345
transport input ssh
login local
exec-timeout 60
exit
line aux 0
password cisco12345
login
exec-timeout 60
exit
username netadmin privilege 15 secret Cisco_CCNA5
interface g0/0
ip address 192.168.1.126 255.255.255.224
description First Floor LAN
ipv6 address 2001:DB8:ACAD:A::1/64
ipv6 address fe80::1 link-local
no shutdown
exit
interface g0/1
ip address 192.168.1.158 255.255.255.240
description Second Floor LAN
ipv6 address 2001:DB8:ACAD:B::1/64
ipv6 address fe80::1 link-local
no shutdown
exit
copy running-config tftp:
192.168.1.146
exit
Second Floor switch configuration
=================================
#Connect the switch with a console cable to Host 1
enable
conf terminal
enable secret class12345
service password-encryption
banner motd #aUTHORIZED ACCESS ONLY!#
no ip domain-lookup
line console 0
password cisco12345
login
exec-timeout 60
exit
line vty 0 15
password cisco12345
login
exec-timeout 60
exit
interface vlan 1
ip address 192.168.1.157 255.255.255.240
no shutdown
ip default-gateway 192.168.1.158
exit