This repository was archived by the owner on Mar 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDevice Configurations.txt
More file actions
1186 lines (1123 loc) · 22.8 KB
/
Device Configurations.txt
File metadata and controls
1186 lines (1123 loc) · 22.8 KB
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Device Name: Router0
en
conf t
hostname Router0
banner motd #
Unauthorized access is prohibited#
service password-encryption
line con 0
password class0
login
end
conf t
enable secret cisco
interface se0/0/0
ip add 210.165.10.97 255.255.255.252
clock rate 64000
no shutdown
exit
interface se0/0/1
ip add 210.165.10.101 255.255.255.252
clock rate 64000
no shutdown
exit
line vty 0 1
password class0
login
exit
ip domain-name network.local
username admin secret admin123
crypto key generate rsa
1024
ip ssh version 2
line vty 0 1
transport input ssh
login local
exec-timeout 2 0
end
conf t
router ospf 1
router-id 4.0.0.0
network 210.165.10.96 0.0.0.3 area 0
network 210.165.10.100 0.0.0.3 area 0
exit
do wr
router ospf 1
area 0 authentication message-digest
exit
int se0/0/0
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
int se0/0/1
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
do wr
exit
copy running-config startup-config
write memory
Device Name: Router1
en
conf t
hostname Router1
banner motd #
Unauthorized access is prohibited#
service password-encryption
line con 0
password class1
login
end
conf t
enable secret cisco
interface se0/0/0
ip add 210.165.10.98 255.255.255.252
clock rate 64000
no shutdown
exit
interface se0/0/1
ip add 210.165.10.106 255.255.255.252
clock rate 64000
no shutdown
exit
interface gig0/0
ip add 210.165.10.113 255.255.255.252
no shutdown
exit
line vty 0 1
password class1
login
exit
ip domain-name network.local
username admin secret admin123
crypto key generate rsa
1024
ip ssh version 2
line vty 0 1
transport input ssh
login local
exec-timeout 2 0
end
conf t
router ospf 1
router-id 1.0.0.0
network 210.165.10.96 0.0.0.3 area 0
network 210.165.10.104 0.0.0.3 area 0
network 210.165.10.112 0.0.0.3 area 0
exit
do wr
router ospf 1
area 0 authentication message-digest
exit
int se0/0/0
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
int se0/0/1
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
int gig0/0
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
do wr
exit
copy running-config startup-config
write memory
Device Name: Router2
en
conf t
hostname Router2
banner motd #
Unauthorized access is prohibited#
service password-encryption
line con 0
password class2
login
end
conf t
enable secret cisco
interface se0/0/0
ip add 210.165.10.105 255.255.255.252
clock rate 64000
no shutdown
exit
interface se0/0/1
ip add 210.165.10.109 255.255.255.252
clock rate 64000
no shutdown
exit
interface gig0/0
ip add 210.165.10.117 255.255.255.252
no shutdown
exit
line vty 0 1
password class2
login
exit
ip domain-name network.local
username admin secret admin123
crypto key generate rsa
1024
ip ssh version 2
line vty 0 1
transport input ssh
login local
exec-timeout 2 0
end
conf t
router ospf 1
router-id 2.0.0.0
network 210.165.10.104 0.0.0.3 area 0
network 210.165.10.108 0.0.0.3 area 0
network 210.165.10.116 0.0.0.3 area 0
exit
do wr
router ospf 1
area 0 authentication message-digest
exit
int se0/0/0
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
int se0/0/1
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
int gig0/0
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
do wr
exit
copy running-config startup-config
write memory
Device Name: Router3
en
conf t
hostname Router3
banner motd #
Unauthorized access is prohibited#
service password-encryption
line con 0
password class3
login
end
conf t
enable secret cisco
interface se0/0/0
ip add 210.165.10.102 255.255.255.252
clock rate 64000
no shutdown
exit
interface se0/0/1
ip add 210.165.10.110 255.255.255.252
clock rate 64000
no shutdown
exit
interface gig0/0
ip add 210.165.10.121 255.255.255.252
no shutdown
exit
line vty 0 1
password class3
login
exit
ip domain-name network.local
username admin secret admin123
crypto key generate rsa
1024
ip ssh version 2
line vty 0 1
transport input ssh
login local
exec-timeout 2 0
end
conf t
router ospf 1
router-id 3.0.0.0
network 210.165.10.100 0.0.0.3 area 0
network 210.165.10.108 0.0.0.3 area 0
network 210.165.10.120 0.0.0.3 area 0
exit
do wr
router ospf 1
area 0 authentication message-digest
exit
int se0/0/0
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
int se0/0/1
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
int gig0/0
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
do wr
exit
copy running-config startup-config
write memory
Device Name: MultilayerSwitch1
en
conf t
hostname MultilayerSwitch1
banner motd #
Unauthorized access is prohibited#
service password-encryption
line con 0
password class1
login
end
conf t
enable secret cisco
interface gig0/1
no switchport
ip add 210.165.10.114 255.255.255.252
no shutdown
exit
vlan 90
name Management-VLAN-M1
exit
int vlan 90
ip add 210.165.10.249 255.255.255.248
no shutdown
ip default-gateway 210.165.10.113
line vty 0 1
password class1
login
exit
ip domain-name network.local
username admin secret admin123
crypto key generate rsa
1024
ip ssh version 2
line vty 0 1
transport input ssh
login local
exec-timeout 2 0
end
conf t
vlan 10
name Marketing-VLAN-1
exit
vlan 20
name Sales-VLAN-1
exit
vlan 30
name IT-VLAN-1
exit
int range fa0/1-2
switchport trunk encapsulation dot1q
switchport mode trunk
switchport trunk allowed vlan all
exit
ip routing
ip route 0.0.0.0 0.0.0.0 210.165.10.113
do wr
end
conf t
int vlan 10
ip add 210.165.10.1 255.255.255.240
no sh
exit
int vlan 20
ip add 210.165.10.49 255.255.255.248
no sh
exit
int vlan 30
ip add 210.165.10.81 255.255.255.248
no sh
exit
conf t
service dhcp
ip dhcp pool Pool10
network 210.165.10.0 255.255.255.240
default-router 210.165.10.1
dns-server 210.165.10.35
exit
ip dhcp pool Pool20
network 210.165.10.48 255.255.255.248
default-router 210.165.10.49
dns-server 210.165.10.35
exit
ip dhcp pool Pool30
network 210.165.10.80 255.255.255.248
default-router 210.165.10.81
dns-server 210.165.10.35
exit
ip dhcp excluded-address 210.165.10.1
ip dhcp excluded-address 210.165.10.49
ip dhcp excluded-address 210.165.10.81
router ospf 1
router-id 1.1.0.0
network 210.165.10.112 0.0.0.3 area 0
network 210.165.10.0 0.0.0.15 area 0
network 210.165.10.48 0.0.0.7 area 0
network 210.165.10.80 0.0.0.7 area 0
network 210.165.10.248 0.0.0.7 area 0
exit
do wr
router ospf 1
area 0 authentication message-digest
exit
int gig0/1
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
do wr
ip access-list extended MS1-ACLvlan10
permit tcp 210.165.10.0 0.0.0.15 host 210.165.10.34 eq 80
permit tcp 210.165.10.0 0.0.0.15 host 210.165.10.35 eq 53
permit udp 210.165.10.0 0.0.0.15 host 210.165.10.35 eq 53
deny ip 210.165.10.0 0.0.0.15 210.165.10.48 0.0.0.7
deny ip 210.165.10.0 0.0.0.15 210.165.10.80 0.0.0.7
deny ip 210.165.10.0 0.0.0.15 210.165.10.56 0.0.0.7
deny ip 210.165.10.0 0.0.0.15 210.165.10.88 0.0.0.7
deny ip 210.165.10.0 0.0.0.15 210.165.10.72 0.0.0.7
deny ip 210.165.10.0 0.0.0.15 210.165.10.32 0.0.0.15
permit ip any any
exit
int vlan 10
ip access-group MS1-ACLvlan10 in
exit
do wr
ip access-list extended MS1-ACLvlan20
permit tcp 210.165.10.48 0.0.0.7 host 210.165.10.34 eq 80
permit tcp 210.165.10.48 0.0.0.7 host 210.165.10.35 eq 53
permit udp 210.165.10.48 0.0.0.7 host 210.165.10.35 eq 53
deny ip 210.165.10.48 0.0.0.7 210.165.10.0 0.0.0.15
deny ip 210.165.10.48 0.0.0.7 210.165.10.80 0.0.0.7
deny ip 210.165.10.48 0.0.0.7 210.165.10.16 0.0.0.15
deny ip 210.165.10.48 0.0.0.7 210.165.10.88 0.0.0.7
deny ip 210.165.10.48 0.0.0.7 210.165.10.64 0.0.0.7
deny ip 210.165.10.48 0.0.0.7 210.165.10.32 0.0.0.15
permit ip any any
exit
int vlan 20
ip access-group MS1-ACLvlan20 in
exit
do wr
ip access-list extended MS1-ACLvlan30
deny ip 210.165.10.80 0.0.0.7 210.165.10.0 0.0.0.15
deny ip 210.165.10.80 0.0.0.7 210.165.10.48 0.0.0.7
deny ip 210.165.10.80 0.0.0.7 210.165.10.16 0.0.0.15
deny ip 210.165.10.80 0.0.0.7 210.165.10.56 0.0.0.7
deny ip 210.165.10.80 0.0.0.7 210.165.10.64 0.0.0.7
deny ip 210.165.10.80 0.0.0.7 210.165.10.72 0.0.0.7
permit ip any any
exit
int vlan 30
ip access-group MS1-ACLvlan30 in
exit
do wr
exit
copy running-config startup-config
write memory
Device Name: MultilayerSwitch2
en
conf t
hostname MultilayerSwitch2
banner motd #
Unauthorized access is prohibited#
service password-encryption
line con 0
password class2
login
end
conf t
enable secret cisco
interface gig0/1
no switchport
ip add 210.165.10.118 255.255.255.252
no shutdown
exit
vlan 90
name Management-VLAN-M2
exit
int vlan 90
ip add 210.165.10.241 255.255.255.248
no shutdown
ip default-gateway 210.165.10.117
line vty 0 1
password class2
login
exit
ip domain-name network.local
username admin secret admin123
crypto key generate rsa
1024
ip ssh version 2
line vty 0 1
transport input ssh
login local
exec-timeout 2 0
end
conf t
vlan 10
name Marketing-VLAN-2
exit
vlan 20
name Sales-VLAN-2
exit
vlan 30
name IT-VLAN-2
exit
int range fa0/1-2
switchport trunk encapsulation dot1q
switchport mode trunk
switchport trunk allowed vlan all
exit
ip routing
ip route 0.0.0.0 0.0.0.0 210.165.10.117
do wr
end
conf t
int vlan 10
ip add 210.165.10.17 255.255.255.240
no sh
exit
int vlan 20
ip add 210.165.10.57 255.255.255.248
no sh
exit
int vlan 30
ip add 210.165.10.89 255.255.255.248
no sh
exit
conf t
service dhcp
ip dhcp pool Pool10
network 210.165.10.16 255.255.255.240
default-router 210.165.10.17
dns-server 210.165.10.35
exit
ip dhcp pool Pool20
network 210.165.10.56 255.255.255.248
default-router 210.165.10.57
dns-server 210.165.10.35
exit
ip dhcp pool Pool30
network 210.165.10.88 255.255.255.248
default-router 210.165.10.89
dns-server 210.165.10.35
exit
ip dhcp excluded-address 210.165.10.17
ip dhcp excluded-address 210.165.10.57
ip dhcp excluded-address 210.165.10.89
router ospf 1
router-id 2.1.0.0
network 210.165.10.116 0.0.0.3 area 0
network 210.165.10.16 0.0.0.15 area 0
network 210.165.10.56 0.0.0.7 area 0
network 210.165.10.88 0.0.0.7 area 0
network 210.165.10.240 0.0.0.7 area 0
exit
do wr
router ospf 1
area 0 authentication message-digest
exit
int gig0/1
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
do wr
ip access-list extended MS2-ACLvlan10
permit tcp 210.165.10.16 0.0.0.15 host 210.165.10.34 eq 80
permit tcp 210.165.10.16 0.0.0.15 host 210.165.10.35 eq 53
permit udp 210.165.10.16 0.0.0.15 host 210.165.10.35 eq 53
deny ip 210.165.10.16 0.0.0.15 210.165.10.48 0.0.0.7
deny ip 210.165.10.16 0.0.0.15 210.165.10.80 0.0.0.7
deny ip 210.165.10.16 0.0.0.15 210.165.10.56 0.0.0.7
deny ip 210.165.10.16 0.0.0.15 210.165.10.88 0.0.0.7
deny ip 210.165.10.16 0.0.0.15 210.165.10.72 0.0.0.7
deny ip 210.165.10.16 0.0.0.15 210.165.10.32 0.0.0.15
permit ip any any
exit
int vlan 10
ip access-group MS2-ACLvlan10 in
exit
do wr
ip access-list extended MS2-ACLvlan20
permit tcp 210.165.10.56 0.0.0.7 host 210.165.10.34 eq 80
permit tcp 210.165.10.56 0.0.0.7 host 210.165.10.35 eq 53
permit udp 210.165.10.56 0.0.0.7 host 210.165.10.35 eq 53
deny ip 210.165.10.56 0.0.0.7 210.165.10.0 0.0.0.15
deny ip 210.165.10.56 0.0.0.7 210.165.10.80 0.0.0.7
deny ip 210.165.10.56 0.0.0.7 210.165.10.16 0.0.0.15
deny ip 210.165.10.56 0.0.0.7 210.165.10.88 0.0.0.7
deny ip 210.165.10.56 0.0.0.7 210.165.10.64 0.0.0.7
deny ip 210.165.10.56 0.0.0.7 210.165.10.32 0.0.0.15
permit ip any any
exit
int vlan 20
ip access-group MS2-ACLvlan20 in
exit
do wr
ip access-list extended MS2-ACLvlan30
deny ip 210.165.10.88 0.0.0.7 210.165.10.0 0.0.0.15
deny ip 210.165.10.88 0.0.0.7 210.165.10.48 0.0.0.7
deny ip 210.165.10.88 0.0.0.7 210.165.10.16 0.0.0.15
deny ip 210.165.10.88 0.0.0.7 210.165.10.56 0.0.0.7
deny ip 210.165.10.88 0.0.0.7 210.165.10.64 0.0.0.7
deny ip 210.165.10.88 0.0.0.7 210.165.10.72 0.0.0.7
permit ip any any
exit
int vlan 30
ip access-group MS2-ACLvlan30 in
exit
do wr
exit
copy running-config startup-config
write memory
Device Name: MultilayerSwitch3
en
conf t
hostname MultilayerSwitch3
banner motd #
Unauthorized access is prohibited#
service password-encryption
line con 0
password class3
login
end
conf t
enable secret cisco
interface gig0/1
no switchport
ip add 210.165.10.122 255.255.255.252
no shutdown
vlan 90
name Management-VLAN-M3
exit
int vlan 90
ip add 210.165.10.233 255.255.255.248
no shutdown
ip default-gateway 210.165.10.121
line vty 0 1
password class3
login
exit
ip domain-name network.local
username admin secret admin123
crypto key generate rsa
1024
ip ssh version 2
line vty 0 1
transport input ssh
login local
exec-timeout 2 0
end
conf t
vlan 10
name Marketing-VLAN-3
exit
vlan 20
name Sales-VLAN-3
exit
vlan 30
name IT-VLAN-3
exit
int range fa0/1-2
switchport trunk encapsulation dot1q
switchport mode trunk
switchport trunk allowed vlan all
exit
ip routing
ip route 0.0.0.0 0.0.0.0 210.165.10.121
do wr
end
conf t
int vlan 10
ip add 210.165.10.65 255.255.255.248
no sh
exit
int vlan 20
ip add 210.165.10.73 255.255.255.248
no sh
exit
int vlan 30
ip add 210.165.10.33 255.255.255.240
no sh
exit
conf t
service dhcp
ip dhcp pool Pool10
network 210.165.10.64 255.255.255.248
default-router 210.165.10.65
dns-server 210.165.10.35
exit
ip dhcp pool Pool20
network 210.165.10.72 255.255.255.248
default-router 210.165.10.73
dns-server 210.165.10.35
exit
ip dhcp pool Pool30
network 210.165.10.32 255.255.255.240
default-router 210.165.10.33
dns-server 210.165.10.35
exit
ip dhcp excluded-address 210.165.10.65
ip dhcp excluded-address 210.165.10.73
ip dhcp excluded-address 210.165.10.33
ip dhcp excluded-address 210.165.10.34
ip dhcp excluded-address 210.165.10.35
router ospf 1
router-id 3.1.0.0
network 210.165.10.120 0.0.0.3 area 0
network 210.165.10.64 0.0.0.7 area 0
network 210.165.10.72 0.0.0.7 area 0
network 210.165.10.32 0.0.0.15 area 0
network 210.165.10.232 0.0.0.7 area 0
exit
do wr
router ospf 1
area 0 authentication message-digest
exit
int gig0/1
ip ospf message-digest-key 1 md5 MD5PassKeySGN990
exit
do wr
ip access-list extended MS3-ACLvlan10
permit tcp 210.165.10.64 0.0.0.7 host 210.165.10.34 eq 80
permit tcp 210.165.10.64 0.0.0.7 host 210.165.10.35 eq 53
permit udp 210.165.10.64 0.0.0.7 host 210.165.10.35 eq 53
deny ip 210.165.10.64 0.0.0.7 210.165.10.48 0.0.0.7
deny ip 210.165.10.64 0.0.0.7 210.165.10.80 0.0.0.7
deny ip 210.165.10.64 0.0.0.7 210.165.10.56 0.0.0.7
deny ip 210.165.10.64 0.0.0.7 210.165.10.88 0.0.0.7
deny ip 210.165.10.64 0.0.0.7 210.165.10.72 0.0.0.7
deny ip 210.165.10.64 0.0.0.7 210.165.10.32 0.0.0.15
permit ip any any
exit
int vlan 10
ip access-group MS3-ACLvlan10 in
exit
do wr
ip access-list extended MS3-ACLvlan20
permit tcp 210.165.10.72 0.0.0.7 host 210.165.10.34 eq 80
permit tcp 210.165.10.72 0.0.0.7 host 210.165.10.35 eq 53
permit udp 210.165.10.72 0.0.0.7 host 210.165.10.35 eq 53
deny ip 210.165.10.72 0.0.0.7 210.165.10.0 0.0.0.15
deny ip 210.165.10.72 0.0.0.7 210.165.10.80 0.0.0.7
deny ip 210.165.10.72 0.0.0.7 210.165.10.16 0.0.0.15
deny ip 210.165.10.72 0.0.0.7 210.165.10.88 0.0.0.7
deny ip 210.165.10.72 0.0.0.7 210.165.10.64 0.0.0.7
deny ip 210.165.10.72 0.0.0.7 210.165.10.32 0.0.0.15
permit ip any any
exit
int vlan 20
ip access-group MS3-ACLvlan20 in
exit
do wr
ip access-list extended MS3-ACLvlan30
permit tcp host 210.165.10.34 eq 80 any
permit tcp host 210.165.10.35 eq 53 any
permit udp host 210.165.10.35 eq 53 any
deny ip 210.165.10.32 0.0.0.15 210.165.10.0 0.0.0.15
deny ip 210.165.10.32 0.0.0.15 210.165.10.48 0.0.0.7
deny ip 210.165.10.32 0.0.0.15 210.165.10.16 0.0.0.15
deny ip 210.165.10.32 0.0.0.15 210.165.10.56 0.0.0.7
deny ip 210.165.10.32 0.0.0.15 210.165.10.64 0.0.0.7
deny ip 210.165.10.32 0.0.0.15 210.165.10.72 0.0.0.7
permit ip any any
exit
int vlan 30
ip access-group MS3-ACLvlan30 in
exit
do wr
exit
copy running-config startup-config
write memory
Device Name: Switch1
en
conf t
hostname Switch1
banner motd #
Unauthorized access is prohibited#
service password-encryption
line con 0
password class1
login
end
conf t
enable secret cisco
vlan 90
name Management-VLAN-1
exit
int vlan 90
ip add 210.165.10.250 255.255.255.248
no shutdown
exit
line vty 0 1
password class1
login
exit
ip domain-name network.local
username admin secret admin123
crypto key generate rsa
1024
ip ssh version 2
line vty 0 1
transport input ssh
login local
exec-timeout 2 0
end
conf t
ip default-gateway 210.165.10.249
vlan 10
name Marketing-VLAN-1
exit
vlan 20
name Sales-VLAN-1
exit
vlan 30
name IT-VLAN-1
exit
int range fa0/2-9
switchport mode access
switchport access vlan 30
exit
int range fa0/10-16
switchport mode access
switchport access vlan 20
exit
int range fa0/17-24
switchport mode access
switchport access vlan 10
exit
int fa0/24
switchport port-security
switchport port-security mac-address sticky
switchport port-security maximum 4
switchport port-security violation shutdown
exit
int range fa0/2-23
switchport port-security
switchport port-security mac-address sticky
switchport port-security maximum 1
switchport port-security violation shutdown
exit
exit
copy running-config startup-config
write memory
Device Name: Switch2
en
conf t
hostname Switch2
banner motd #
Unauthorized access is prohibited#
service password-encryption
line con 0
password class2
login
end
conf t
enable secret cisco
vlan 90
name Management-VLAN-2
exit
int vlan 90
ip add 210.165.10.251 255.255.255.248
no shutdown
exit
line vty 0 1
password class2
login
exit
ip domain-name network.local
username admin secret admin123
crypto key generate rsa
1024
ip ssh version 2
line vty 0 1
transport input ssh
login local
exec-timeout 2 0
end
conf t
ip default-gateway 210.165.10.249
vlan 10
name Marketing-VLAN-1
exit
vlan 20
name Sales-VLAN-1
exit
vlan 30
name IT-VLAN-1
exit
int range fa0/2-9
switchport mode access
switchport access vlan 30
exit
int range fa0/10-16
switchport mode access
switchport access vlan 20
exit
int range fa0/17-24
switchport mode access
switchport access vlan 10
exit
int range fa0/2-24
switchport port-security
switchport port-security mac-address sticky
switchport port-security maximum 1
switchport port-security violation shutdown
exit
exit
copy running-config startup-config
write memory
Device Name: Switch3
en
conf t
hostname Switch3
banner motd #
Unauthorized access is prohibited#
service password-encryption
line con 0
password class3
login
end
conf t
enable secret cisco
vlan 90
name Management-VLAN-3
exit
int vlan 90
ip add 210.165.10.242 255.255.255.248
no shutdown
exit
line vty 0 1
password class3
login
exit
ip domain-name network.local
username admin secret admin123
crypto key generate rsa
1024
ip ssh version 2
line vty 0 1
transport input ssh
login local
exec-timeout 2 0
end
conf t
ip default-gateway 210.165.10.241
vlan 10
name Marketing-VLAN-2
exit
vlan 20
name Sales-VLAN-2
exit
vlan 30
name IT-VLAN-2
exit
int range fa0/2-9
switchport mode access
switchport access vlan 30
exit
int range fa0/10-16
switchport mode access
switchport access vlan 20
exit
int range fa0/17-24
switchport mode access
switchport access vlan 10
exit
int range fa0/2-24
switchport port-security
switchport port-security mac-address sticky
switchport port-security maximum 1
switchport port-security violation shutdown
exit
exit
copy running-config startup-config
write memory
Device Name: Switch4
en
conf t
hostname Switch4
banner motd #
Unauthorized access is prohibited#
service password-encryption
line con 0
password class4
login
end
conf t
enable secret cisco
vlan 90
name Management-VLAN-4
exit
int vlan 90
ip add 210.165.10.243 255.255.255.248
no shutdown
exit
line vty 0 1
password class4
login
exit