-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path1.6.1-packet-tracer---inplement-a-small-network
70 lines (68 loc) · 1.22 KB
/
1.6.1-packet-tracer---inplement-a-small-network
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
/* On R1 */
enable
conf t
hostname RTA
enable secret Ciscoenpa55
line console 0
password Ciscolinepa55
login
line vty 0
password Ciscolinepa55
exit
banner motd "Secure system! Unauthorized access is prohibited"
int g0/0
description Link to SW1
ip address 10.10.10.1 255.255.255.0
no shut
int g0/1
description link to SW2
ip address 10.10.20.1 255.255.255.0
no shut
end
copy running-config startup-config
/* On SW1 */
enable
conf t
hostname SW1
int vlan 1
ip address 10.10.10.2 255.255.255.0
no shut
exit
ip default-gateway 10.10.10.1
enable secret Ciscoenpa55
line console 0
password Ciscolinepa55
login
line vty 0
password Ciscolinepa55
exit
banner motd "Secure system! Unauthorized access is prohibited"
line vty 0 15
username admin password cisco
transport input telnet
login local
end
copy running-config startup-config
/* On SW2 */
enable
conf t
hostname SW2
int vlan 1
ip address 10.10.20.2 255.255.255.0
no shut
exit
ip default-gateway 10.10.20.1
enable secret Ciscoenpa55
line console 0
password Ciscolinepa55
login
line vty 0
password Ciscolinepa55
exit
banner motd "Secure system! Unauthorized access is prohibited"
line vty 0 15
username admin password cisco
transport input telnet
login local
end
copy running-config startup-config