-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path17.8.2-Skills integration challenge(Code)
164 lines (128 loc) · 2.52 KB
/
17.8.2-Skills integration challenge(Code)
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
156
157
158
159
160
161
162
163
164
******************17.8.2-packet-tracer---skills-integration-challenge******************
Ipv4 adressing scheme
=====================
Staff 100 users :192.168.0.0/25
Sales 50 users :192.168.0.128/26
IT 25 users :192.168.0.192/27
Guest 25 users :192.168.1.0/27
Router 1 configuration
======================
en
conf t
hostname R1
no ip domain-lookup
enable secret Ciscoenpa55
line console 0
password Ciscoconpa55
login
exec-timeout 5
exit
security password min-length 10
service password-encryption
banner motd #Authorized access only#
ipv6 unicast-routing
int G0/0
ipv6 address fe80::1 link-local
ipv6 address 2001:db8:acad::1/64
ip address 192.168.0.1 255.255.255.128
no sh
exit
int G0/1
ipv6 address fe80::1 link-local
ipv6 address 2001:db8:acad:1::1/64
ip address 192.168.0.129 255.255.255.192
no sh
exit
int G0/2
ipv6 address fe80::1 link-local
ipv6 address 2001:db8:acad:2::1/64
ip address 192.168.0.193 255.255.255.224
no sh
exit
int s0/0/1
ipv6 address fe80::1 link-local
ipv6 address 2001:db8:2::1/64
ip address 172.16.1.2 255.255.255.252
no sh
exit
ip domain-name CCNA-lab.com
crypto key generate rsa
1024
line vty 0 4
transport input ssh
login local
exec-timeout 5
exit
username Admin1 secret Admin1pa55
login block-for 180 attempts 4 within 120
exit
Switch 1 configuration
======================
en
conf t
hostname S1
int Vlan1
ip address 192.168.0.2 255.255.255.128
no sh
exit
ip default-gateway 192.168.0.1
no ip domain-lookup
enable secret Ciscoenpa55
line console 0
password Ciscoconpa55
login
exec-timeout 5
exit
line vty 0 15
password Ciscoconpa55
login
exec-timeout 5
exit
service password-encryption
Switch 2 configuration
======================
en
conf t
hostname S2
int Vlan1
ip address 192.168.0.130 255.255.255.192
no sh
exit
ip default-gateway 192.168.0.129
no ip domain-lookup
enable secret Ciscoenpa55
line console 0
password Ciscoconpa55
login
exec-timeout 5
exit
line vty 0 15
password Ciscoconpa55
login
exec-timeout 5
exit
service password-encryption
Switch 3 configuration
======================
en
conf t
hostname S3
service password-encryption
int Vlan1
ip address 192.168.0.194 255.255.255.224
no sh
exit
ip default-gateway 192.168.0.193
no ip domain-lookup
enable secret Ciscoenpa55
line console 0
password Ciscoconpa55
login
exec-timeout 5
exit
line vty 0 15
password Ciscoconpa55
login
exec-timeout 5
exit
exit