-
Notifications
You must be signed in to change notification settings - Fork 0
/
FINALIntegratedAnswers.yaml
2928 lines (2881 loc) · 82.6 KB
/
FINALIntegratedAnswers.yaml
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
lab:
description: ''
notes: ''
title: Lab at Wed 17:19 PM
version: 0.1.0
links:
- id: l0
n1: n6
n2: n0
i1: i0
i2: i1
label: REMOTE-eth0<->ISP-GigabitEthernet0/0
- id: l1
n1: n4
n2: n0
i1: i1
i2: i4
label: BR1-GigabitEthernet0/0<->ISP-GigabitEthernet0/3
- id: l2
n1: n5
n2: n0
i1: i1
i2: i6
label: FW1-GigabitEthernet0/0<->ISP-GigabitEthernet0/5
- id: l3
n1: n7
n2: n5
i1: i0
i2: i2
label: DC-SRV-eth0<->FW1-GigabitEthernet0/1
- id: l4
n1: n3
n2: n0
i1: i1
i2: i5
label: BR2-GigabitEthernet0/0<->ISP-GigabitEthernet0/4
- id: l5
n1: n8
n2: n3
i1: i0
i2: i2
label: BR-CLI2-eth0<->BR2-GigabitEthernet0/1
- id: l6
n1: n1
n2: n0
i1: i1
i2: i2
label: HQ1-GigabitEthernet0/0<->ISP-GigabitEthernet0/1
- id: l7
n1: n2
n2: n0
i1: i1
i2: i3
label: HQ2-GigabitEthernet0/0<->ISP-GigabitEthernet0/2
- id: l8
n1: n12
n2: n1
i1: i1
i2: i2
label: DSW1-GigabitEthernet0/0<->HQ1-GigabitEthernet0/1
- id: l9
n1: n14
n2: n2
i1: i1
i2: i2
label: DSW2-GigabitEthernet0/0<->HQ2-GigabitEthernet0/1
- id: l10
n1: n13
n2: n12
i1: i6
i2: i6
label: ASW1-GigabitEthernet1/1<->DSW1-GigabitEthernet1/1
- id: l11
n1: n12
n2: n13
i1: i7
i2: i7
label: DSW1-GigabitEthernet1/2<->ASW1-GigabitEthernet1/2
- id: l12
n1: n14
n2: n15
i1: i6
i2: i6
label: DSW2-GigabitEthernet1/1<->ASW2-GigabitEthernet1/1
- id: l13
n1: n14
n2: n15
i1: i7
i2: i7
label: DSW2-GigabitEthernet1/2<->ASW2-GigabitEthernet1/2
- id: l14
n1: n9
n2: n13
i1: i0
i2: i1
label: HQ-SRV-eth0<->ASW1-GigabitEthernet0/0
- id: l15
n1: n10
n2: n15
i1: i0
i2: i1
label: HQ-CLI-eth0<->ASW2-GigabitEthernet0/0
- id: l16
n1: n1
n2: n14
i1: i3
i2: i2
label: HQ1-GigabitEthernet0/2<->DSW2-GigabitEthernet0/1
- id: l17
n1: n2
n2: n12
i1: i3
i2: i2
label: HQ2-GigabitEthernet0/2<->DSW1-GigabitEthernet0/1
- id: l18
n1: n12
n2: n15
i1: i5
i2: i2
label: DSW1-GigabitEthernet1/0<->ASW2-GigabitEthernet0/1
- id: l19
n1: n13
n2: n14
i1: i2
i2: i5
label: ASW1-GigabitEthernet0/1<->DSW2-GigabitEthernet1/0
- id: l20
n1: n12
n2: n14
i1: i3
i2: i3
label: DSW1-GigabitEthernet0/2<->DSW2-GigabitEthernet0/2
- id: l21
n1: n12
n2: n14
i1: i4
i2: i4
label: DSW1-GigabitEthernet0/3<->DSW2-GigabitEthernet0/3
- id: l22
n1: n4
n2: n11
i1: i2
i2: i0
label: BR1-GigabitEthernet0/1<->BR-CLI1-eth0
nodes:
- boot_disk_size: 0
configuration: |-
Building configuration...
Current configuration : 4782 bytes
!
! Last configuration change at 07:24:55 KST Thu Feb 2 2023 by admin
! NVRAM config last updated at 07:18:25 KST Thu Feb 2 2023 by admin
!
version 15.9
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname ISP
!
boot-start-marker
boot-end-marker
!
!
no logging console
enable secret 8 $8$UK19eMAsa02fiP$1imiGDM./xMMuSTjlWaCTXyIDHKbfkW1eM7mNJvaf3w
!
aaa new-model
!
!
aaa authentication login default local
!
!
!
!
!
aaa session-id common
!
!
!
clock timezone KST 9 0
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
!
!
!
!
!
!
!
!
!
!
!
no ip domain lookup
ip domain name wsc2022.net
ip cef
ipv6 unicast-routing
ipv6 cef
!
multilink bundle-name authenticated
vpdn enable
!
vpdn-group 1
!
!
!
!
!
username admin privilege 15 secret 9 $9$rxHYlHYZ/cFXyv$v8FnjSIrQGp4/5YxbYGpYIcZqQGQqokkVd2J0XiGNz6
username BR1 password 0 Skill39
username chapuser password 0 Skill39
!
redundancy
!
!
!
!
!
!
!
!
!
!
!
!
!
!
bba-group pppoe global
virtual-template 1
!
!
interface Loopback0
ip address 8.8.8.8 255.255.255.255
!
interface GigabitEthernet0/0
ip address 98.76.54.254 255.255.255.0
duplex auto
speed auto
media-type rj45
ntp broadcast
!
interface GigabitEthernet0/1
ip address 98.76.1.254 255.255.255.0
duplex auto
speed auto
media-type rj45
ipv6 enable
ntp broadcast
ipv6 ospf 1 area 0
!
interface GigabitEthernet0/2
ip address 98.76.2.254 255.255.255.0
duplex auto
speed auto
media-type rj45
ipv6 enable
ntp broadcast
ipv6 ospf 1 area 0
!
interface GigabitEthernet0/3
ip address 98.76.3.254 255.255.255.0
duplex auto
speed auto
media-type rj45
ntp broadcast
pppoe enable group global
!
interface GigabitEthernet0/4
ip address 98.76.4.254 255.255.255.0
duplex auto
speed auto
media-type rj45
ntp broadcast
!
interface GigabitEthernet0/5
ip address 98.76.5.254 255.255.255.0
duplex auto
speed auto
media-type rj45
ipv6 enable
ntp broadcast
ipv6 ospf 1 area 0
!
interface Virtual-Template1
ip address 98.76.11.254 255.255.255.0
ppp authentication chap
ppp chap hostname chapuser
ppp chap password 0 Skill39
!
router bgp 65000
bgp log-neighbor-changes
neighbor 1.1.1.1 remote-as 65001
neighbor 1.1.1.1 ebgp-multihop 2
neighbor 2.2.2.2 remote-as 65002
neighbor 2.2.2.2 ebgp-multihop 2
neighbor 98.76.3.1 remote-as 65003
neighbor 98.76.4.1 remote-as 65004
neighbor 98.76.5.1 remote-as 65005
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
ip route 1.1.1.1 255.255.255.255 98.76.1.1
ip route 2.2.2.2 255.255.255.255 98.76.2.1
!
ipv6 router ospf 1
router-id 8.8.8.8
!
ipv6 ioam timestamp
!
!
!
!
!
control-plane
!
banner exec ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
banner incoming ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
banner login ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
!
line con 0
exec-timeout 0 0
privilege level 15
logging synchronous
line aux 0
line vty 0 4
privilege level 15
transport input none
line vty 5 15
privilege level 15
transport input none
!
no scheduler allocate
ntp source Loopback0
ntp master 7
!
end
cpu_limit: 100
cpus: 1
data_volume: 0
hide_links: false
id: n0
label: ISP
node_definition: iosv
ram: 512
tags: []
x: 1309
y: 392
interfaces:
- id: i0
label: Loopback0
type: loopback
- id: i1
label: GigabitEthernet0/0
slot: 0
type: physical
- id: i2
label: GigabitEthernet0/1
slot: 1
type: physical
- id: i3
label: GigabitEthernet0/2
slot: 2
type: physical
- id: i4
label: GigabitEthernet0/3
slot: 3
type: physical
- id: i5
label: GigabitEthernet0/4
slot: 4
type: physical
- id: i6
label: GigabitEthernet0/5
slot: 5
type: physical
- boot_disk_size: 0
configuration: |-
Building configuration...
Current configuration : 5914 bytes
!
! Last configuration change at 07:24:03 KST Thu Feb 2 2023 by admin
!
version 15.9
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname HQ1
!
boot-start-marker
boot-end-marker
!
!
no logging console
enable secret 8 $8$3urge1Pj9SBkQP$9ZwqrPy1bzEWJ4mDtPQPiLfFG/h61hF.ogULjFuUrvk
!
aaa new-model
!
!
aaa authentication login default group radius local
!
!
!
!
!
aaa session-id common
!
!
!
clock timezone KST 9 0
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
!
!
!
!
!
!
!
!
!
!
!
no ip domain lookup
ip domain name wsc2022.net
ip cef
ipv6 unicast-routing
ipv6 cef
!
multilink bundle-name authenticated
!
!
!
key chain R1
key 1
key-string Skill39
cryptographic-algorithm hmac-sha-512
!
!
username admin privilege 15 secret 9 $9$jB824lqm4PtJ.v$qUh2lKwjPRibB1iesbTBTHGdDtXe827TkigZu2gGREQ
username user1 privilege 15 secret 9 $9$hEPgeUoyHhSEF9$yn9fXvdjOmaI4Tt1g9uTn/zBBq2iOn9LwE9nMcbwIig
username user2 privilege 5 secret 9 $9$07epI.LPUfWL8v$5AuQSeUMPSzNoITF3flMp6EvxZe68V11sBqNOLwrx9w
!
redundancy
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface Loopback0
ip address 1.1.1.1 255.255.255.255
!
interface Tunnel1
description DMVPN Tunnel
ip address 172.16.1.1 255.255.255.0
no ip redirects
ip mtu 1440
no ip split-horizon eigrp 2022
ip nhrp authentication nhrp1234
ip nhrp network-id 1
ip summary-address eigrp 123 0.0.0.0 0.0.0.0
ip summary-address eigrp 123 192.168.0.0 255.255.0.0
load-interval 30
keepalive 5 10
tunnel source GigabitEthernet0/0
tunnel mode gre multipoint
!
interface GigabitEthernet0/0
ip address 98.76.1.1 255.255.255.0
ip access-group SSH_ACCESS in
ip nat outside
ip virtual-reassembly in
duplex auto
speed auto
media-type rj45
ipv6 enable
ipv6 ospf 1 area 0
!
interface GigabitEthernet0/1
ip address 192.168.1.2 255.255.255.252
ip access-group SSH_ACCESS in
ip nat inside
ip virtual-reassembly in
duplex auto
speed auto
media-type rj45
ipv6 enable
ipv6 ospf 1 area 2022
ospfv3 network point-to-point
!
interface GigabitEthernet0/2
ip address 192.168.1.6 255.255.255.252
ip access-group SSH_ACCESS in
ip nat inside
ip virtual-reassembly in
duplex auto
speed auto
media-type rj45
ipv6 enable
ipv6 ospf 1 area 2022
ospfv3 network point-to-point
!
interface GigabitEthernet0/3
no ip address
shutdown
duplex auto
speed auto
media-type rj45
!
!
router eigrp 2022
network 172.16.1.0 0.0.0.255
network 192.168.1.0 0.0.0.3
network 192.168.1.4 0.0.0.3
!
router ospfv3 1
!
address-family ipv6 unicast
router-id 1.1.1.1
area 2022 authentication key-chain R1
exit-address-family
!
router bgp 65001
bgp log-neighbor-changes
network 98.76.1.0 mask 255.255.255.0
neighbor 98.76.1.254 remote-as 65000
neighbor 172.16.0.2 remote-as 65002
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
ip nat pool to-outside 98.76.12.1 98.76.12.10 prefix-length 24
ip nat inside source list 1 pool to-outside
ip route 2.2.2.2 255.255.255.255 192.168.2.6
ip ssh rsa keypair-name Skill39
ip ssh version 2
!
ip access-list extended SSH_ACCESS
permit icmp any any
permit ip any any
permit tcp 192.168.20.0 0.0.0.255 any eq 22
deny tcp any any eq 22
!
ipv6 ioam timestamp
!
snmp-server location Ilsan, Korea
snmp-server contact [email protected]
snmp-server chassis-id
!
access-list 1 permit 192.168.20.0 0.0.0.255
!
!
radius server HQ-SRV
address ipv4 192.168.10.1 auth-port 1645 acct-port 1646
!
!
control-plane
!
privilege interface level 5 ipv6
privilege interface level 5 shutdown
privilege interface level 5 ip
privilege interface level 5 no ipv6
privilege interface level 5 no shutdown
privilege interface level 5 no ip
privilege interface level 5 no
privilege configure level 5 interface
privilege exec level 5 configure terminal
privilege exec level 5 configure
banner exec ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
banner incoming ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
banner login ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
!
line con 0
exec-timeout 0 0
privilege level 15
logging synchronous
line aux 0
line vty 0 4
privilege level 15
transport input ssh
line vty 5 15
privilege level 15
transport input ssh
!
no scheduler allocate
!
end
cpu_limit: 100
cpus: 1
data_volume: 0
hide_links: false
id: n1
label: HQ1
node_definition: iosv
ram: 512
tags: []
x: 1524
y: 302
interfaces:
- id: i0
label: Loopback0
type: loopback
- id: i1
label: GigabitEthernet0/0
slot: 0
type: physical
- id: i2
label: GigabitEthernet0/1
slot: 1
type: physical
- id: i3
label: GigabitEthernet0/2
slot: 2
type: physical
- id: i4
label: GigabitEthernet0/3
slot: 3
type: physical
- boot_disk_size: 0
configuration: |-
Building configuration...
Current configuration : 5951 bytes
!
! Last configuration change at 07:24:56 KST Thu Feb 2 2023 by admin
! NVRAM config last updated at 07:19:54 KST Thu Feb 2 2023 by admin
!
version 15.9
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname HQ2
!
boot-start-marker
boot-end-marker
!
!
no logging console
enable secret 8 $8$o65b9kmsDuW.nf$VSlA9tEH00E/rjDBJ/1mX1j7LJSHJwqWHIactY3VcE.
!
aaa new-model
!
!
aaa authentication login default group radius local
!
!
!
!
!
aaa session-id common
!
!
!
clock timezone KST 9 0
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
!
!
!
!
!
!
!
!
!
!
!
no ip domain lookup
ip domain name wsc2022.net
ip cef
ipv6 unicast-routing
ipv6 cef
!
multilink bundle-name authenticated
!
!
!
key chain R1
key 1
key-string Skill39
cryptographic-algorithm hmac-sha-512
!
!
username admin privilege 15 secret 9 $9$WM.8tGf4TJ.Q5P$Vuwq9K668XGP9tHBmaBpJJh1X4jfbOX3wdbjktGqW.k
username user1 privilege 15 secret 9 $9$9v0E.ePRGX8xF9$NGwi7lRqeY8FHu/deTIPoY2TCboakYRIcKtISs6GROU
username user2 privilege 5 secret 9 $9$WJSNT/w1pw4nAf$7klb5LpIEasH6G2AZ/HDUwpkiafwKyotfrJFOemy9Fg
!
redundancy
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface Loopback0
ip address 2.2.2.2 255.255.255.255
!
interface Tunnel1
ip address 172.16.1.2 255.255.255.0
no ip redirects
ip mtu 1440
ip nhrp authentication nhrp1234
ip nhrp map 172.16.1.1 98.76.1.1
ip nhrp map multicast 98.76.1.1
ip nhrp network-id 1
ip nhrp nhs 172.16.1.1
ip summary-address eigrp 123 192.168.0.0 255.255.0.0
load-interval 30
keepalive 5 10
tunnel source GigabitEthernet0/0
tunnel mode gre multipoint
!
interface GigabitEthernet0/0
ip address 98.76.2.1 255.255.255.0
ip access-group SSH_ACCESS in
ip nat outside
ip virtual-reassembly in
duplex auto
speed auto
media-type rj45
ipv6 enable
ipv6 ospf 1 area 0
!
interface GigabitEthernet0/1
ip address 192.168.2.2 255.255.255.252
ip access-group SSH_ACCESS in
ip nat inside
ip virtual-reassembly in
duplex auto
speed auto
media-type rj45
ipv6 enable
ipv6 ospf 1 area 2022
ospfv3 network point-to-point
!
interface GigabitEthernet0/2
ip address 192.168.2.6 255.255.255.252
ip access-group SSH_ACCESS in
ip nat inside
ip virtual-reassembly in
duplex auto
speed auto
media-type rj45
ipv6 enable
ipv6 ospf 1 area 2022
ospfv3 network point-to-point
!
interface GigabitEthernet0/3
no ip address
shutdown
duplex auto
speed auto
media-type rj45
!
!
router eigrp 2022
network 172.16.1.0 0.0.0.255
network 192.168.2.0 0.0.0.3
network 192.168.2.4 0.0.0.3
!
router ospfv3 1
!
address-family ipv6 unicast
router-id 2.2.2.2
area 2022 authentication key-chain R1
exit-address-family
!
router bgp 65002
bgp log-neighbor-changes
network 98.76.2.0 mask 255.255.255.0
neighbor 98.76.2.254 remote-as 65000
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
ip nat pool to-outside 98.76.12.1 98.76.12.10 prefix-length 24
ip nat inside source list 1 pool to-outside
ip route 8.8.8.8 255.255.255.255 98.76.2.254
ip ssh rsa keypair-name Skill39
ip ssh version 2
!
ip access-list extended SSH_ACCESS
permit icmp any any
permit ip any any
permit tcp 192.168.20.0 0.0.0.255 any eq 22
deny tcp any any eq 22
!
ipv6 ioam timestamp
!
snmp-server location Ilsan, Korea
snmp-server contact [email protected]
snmp-server chassis-id
!
access-list 1 permit 192.168.20.0 0.0.0.255
!
!
radius server HQ-SRV
address ipv4 192.168.10.1 auth-port 1645 acct-port 1646
!
!
control-plane
!
privilege interface level 5 ipv6
privilege interface level 5 shutdown
privilege interface level 5 ip
privilege interface level 5 no ipv6
privilege interface level 5 no shutdown
privilege interface level 5 no ip
privilege interface level 5 no
privilege configure level 5 interface
privilege exec level 5 configure terminal
privilege exec level 5 configure
banner exec ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
banner incoming ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
banner login ^C
**************************************************************************
* IOSv is strictly limited to use for evaluation, demonstration and IOS *
* education. IOSv is provided as-is and is not supported by Cisco's *
* Technical Advisory Center. Any use or disclosure, in whole or in part, *
* of the IOSv Software or Documentation to any third party for any *
* purposes is expressly prohibited except as otherwise authorized by *
* Cisco in writing. *
**************************************************************************^C
!
line con 0
exec-timeout 0 0
privilege level 15
logging synchronous
line aux 0
line vty 0 4
privilege level 15
transport input ssh
line vty 5 15
privilege level 15
transport input ssh
!
no scheduler allocate
ntp server 8.8.8.8
!
end
cpu_limit: 100
cpus: 1
data_volume: 0
hide_links: false
id: n2
label: HQ2
node_definition: iosv
ram: 512
tags: []
x: 1525
y: 454
interfaces:
- id: i0
label: Loopback0
type: loopback
- id: i1
label: GigabitEthernet0/0
slot: 0
type: physical
- id: i2
label: GigabitEthernet0/1
slot: 1
type: physical
- id: i3
label: GigabitEthernet0/2
slot: 2
type: physical
- id: i4
label: GigabitEthernet0/3
slot: 3
type: physical
- boot_disk_size: 0
configuration: |-
Building configuration...
Current configuration : 4203 bytes
!
! Last configuration change at 07:24:55 KST Thu Feb 2 2023 by admin
! NVRAM config last updated at 07:18:57 KST Thu Feb 2 2023 by admin
!
version 15.9
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname BR2
!
boot-start-marker
boot-end-marker
!
!
no logging console
enable secret 8 $8$ozkPPNhyxtlmUv$GxEjoZE9aa6kKOgr78HX8xghFggs9gZ/Lx2.LHbg1Ac
!
aaa new-model
!
!
aaa authentication login default local
!
!