-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWSC2024_TSHOOT.yaml
2178 lines (2141 loc) · 55.8 KB
/
WSC2024_TSHOOT.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
annotations:
- border_color: '#808080FF'
border_radius: 0
border_style: ''
color: '#72D0EB82'
thickness: 1
type: rectangle
x1: -600.0
y1: -360.0
x2: 1080.0
y2: 600.0
z_index: 0
- border_color: '#808080FF'
border_style: ''
color: '#D51067FF'
thickness: 1
type: ellipse
x1: 720.0
y1: -200.0
x2: 240.0
y2: 120.0
z_index: 3
- border_color: '#00000000'
border_style: ''
color: '#808080FF'
rotation: 0
text_bold: true
text_content: WSC2024.local
text_font: sans-serif
text_italic: false
text_size: 24
text_unit: pt
thickness: 1
type: text
x1: -600.0
y1: -400.0
z_index: 4
- border_color: '#00000000'
border_style: ''
color: '#808080FF'
rotation: 0
text_bold: false
text_content: Internet
text_font: monospace
text_italic: false
text_size: 20
text_unit: pt
thickness: 1
type: text
x1: 640.0
y1: -360.0
z_index: 5
- border_color: '#00000000'
border_style: ''
color: '#000000FF'
rotation: 0
text_bold: false
text_content: Campus
text_font: monospace
text_italic: false
text_size: 20
text_unit: pt
thickness: 1
type: text
x1: -374.0
y1: -115.0
z_index: 9
- border_color: '#00000000'
border_style: ''
color: '#000000FF'
rotation: 0
text_bold: false
text_content: Datacenter
text_font: monospace
text_italic: false
text_size: 20
text_unit: pt
thickness: 1
type: text
x1: 240.0
y1: 200.0
z_index: 8
- border_color: '#808080FF'
border_style: ''
color: '#FF6C0CFF'
thickness: 1
type: ellipse
x1: 320.0
y1: 60.0
x2: 160.0
y2: 180.0
z_index: 7
- border_color: '#808080FF'
border_style: ''
color: '#8AE2D1FF'
thickness: 1
type: ellipse
x1: -320.0
y1: -200.0
x2: 280.0
y2: 120.0
z_index: 8
- border_color: '#808080FF'
border_style: ''
color: '#72D0EBFF'
thickness: 1
type: ellipse
x1: 160.0
y1: -180.0
x2: 240.0
y2: 140.0
z_index: 6
- border_color: '#00000000'
border_style: ''
color: '#000000FF'
rotation: 0
text_bold: false
text_content: CORE
text_font: monospace
text_italic: false
text_size: 20
text_unit: pt
thickness: 1
type: text
x1: 124.0
y1: -308.0
z_index: 10
nodes:
- boot_disk_size: null
configuration: |-
Building configuration...
Current configuration : 3730 bytes
!
! Last configuration change at 16:04:54 UTC Sun Apr 21 2024
!
version 15.2
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
service compress-config
!
hostname HQSW01
!
boot-start-marker
boot-end-marker
!
!
no logging console
!
username admin password 0 Skill39@Lyon
no aaa new-model
!
!
!
!
!
!
!
!
no ip domain-lookup
ip domain-name wsc2024.org
ip cef
no ipv6 cef
!
!
!
spanning-tree mode pvst
spanning-tree extend system-id
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface GigabitEthernet0/0
switchport access vlan 100
switchport mode access
switchport nonegotiate
switchport port-security mac-address sticky
switchport port-security
negotiation auto
spanning-tree portfast edge
!
interface GigabitEthernet0/1
switchport trunk allowed vlan 100
switchport trunk encapsulation dot1q
switchport mode access
switchport nonegotiate
switchport port-security mac-address sticky
switchport port-security mac-address d8bb.c1a4.e684
switchport port-security
negotiation auto
spanning-tree portfast edge
!
interface GigabitEthernet0/2
negotiation auto
!
interface GigabitEthernet0/3
negotiation auto
!
interface GigabitEthernet1/0
switchport trunk allowed vlan 100,150
switchport trunk encapsulation dot1q
switchport mode trunk
switchport nonegotiate
negotiation auto
ip dhcp snooping trust
!
interface GigabitEthernet1/1
switchport trunk allowed vlan 100,150
switchport trunk encapsulation dot1q
switchport mode trunk
switchport nonegotiate
negotiation auto
ip dhcp snooping trust
!
interface Vlan150
ip address 10.1.128.10 255.255.255.128
ipv6 address autoconfig
ipv6 enable
!
ip forward-protocol nd
!
ip http server
ip http secure-server
!
ip ssh version 2
ip ssh server algorithm encryption aes128-ctr aes192-ctr aes256-ctr
ip ssh client algorithm encryption aes128-ctr aes192-ctr aes256-ctr
!
!
!
!
!
!
control-plane
!
banner exec ^C
IOSv - Cisco Systems Confidential -
Supplemental End User License Restrictions
This IOSv software is provided AS-IS without warranty of any kind. Under no circumstances may this software be used separate from the Cisco Modeling Labs Software that this software was provided with, or deployed or used as part of a production environment.
By using the software, you agree to abide by the terms and conditions of the Cisco End User License Agreement at http://www.cisco.com/go/eula. Unauthorized use or distribution of this software is expressly prohibited.
^C
banner incoming ^C
IOSv - Cisco Systems Confidential -
Supplemental End User License Restrictions
This IOSv software is provided AS-IS without warranty of any kind. Under no circumstances may this software be used separate from the Cisco Modeling Labs Software that this software was provided with, or deployed or used as part of a production environment.
By using the software, you agree to abide by the terms and conditions of the Cisco End User License Agreement at http://www.cisco.com/go/eula. Unauthorized use or distribution of this software is expressly prohibited.
^C
banner login ^C
IOSv - Cisco Systems Confidential -
Supplemental End User License Restrictions
This IOSv software is provided AS-IS without warranty of any kind. Under no circumstances may this software be used separate from the Cisco Modeling Labs Software that this software was provided with, or deployed or used as part of a production environment.
By using the software, you agree to abide by the terms and conditions of the Cisco End User License Agreement at http://www.cisco.com/go/eula. Unauthorized use or distribution of this software is expressly prohibited.
^C
!
line con 0
exec-timeout 0 0
line aux 0
line vty 0 4
exec-timeout 0 0
login
!
!
end
cpu_limit: null
cpus: null
data_volume: null
hide_links: false
id: n0
image_definition: null
label: HQSW01
node_definition: iosvl2
ram: null
tags: []
x: -320
y: -200
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: GigabitEthernet1/0
slot: 4
type: physical
- id: i6
label: GigabitEthernet1/1
slot: 5
type: physical
- boot_disk_size: null
configuration: |-
Building configuration...
Current configuration : 4671 bytes
!
! Last configuration change at 10:53:00 UTC Sun Apr 21 2024
!
version 15.9
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname HQRTR01
!
boot-start-marker
boot-end-marker
!
!
no logging console
!
no aaa new-model
!
!
!
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
!
!
!
!
!
!
!
!
!
!
!
no ip domain lookup
ip cef
ipv6 unicast-routing
ipv6 cef
!
multilink bundle-name authenticated
!
!
!
!
!
redundancy
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface Loopback0
ip address 10.254.1.11 255.255.255.255
ip ospf network point-to-point
ipv6 address 2001:DB8:CAFE:254::11/128
ipv6 enable
ipv6 ospf 1 area 0
ipv6 ospf network point-to-point
!
interface GigabitEthernet0/0
no ip address
duplex auto
speed auto
media-type rj45
!
interface GigabitEthernet0/0.100
encapsulation dot1Q 100
ip address 10.1.0.2 255.255.254.0
ip helper-address 10.1.64.10
standby version 2
standby 100 ip 10.1.0.1
standby 100 priority 110
standby 100 preempt delay minimum 180
standby 100 authentication md5 key-string Skill39@Lyon
standby 101 ipv6 autoconfig
standby 101 priority 110
standby 101 preempt delay minimum 180
standby 101 authentication md5 key-string Skill39@Lyon
ipv6 address 2001:DB8:CAFE:100::2/64
ipv6 enable
ipv6 ospf 1 area 0
!
interface GigabitEthernet0/0.150
encapsulation dot1Q 150
ip address 10.1.128.2 255.255.255.128
standby version 2
standby 150 ip 10.1.128.1
standby 150 priority 110
standby 150 preempt delay minimum 180
standby 150 authentication md5 key-string Skill39@Lyon
standby 151 ipv6 autoconfig
standby 151 priority 110
standby 151 preempt delay minimum 180
standby 151 authentication md5 key-string Skill39@Lyon
ipv6 address 2001:DB8:CAFE:150::2/64
ipv6 enable
ipv6 ospf 1 area 0
!
interface GigabitEthernet0/1
ip address 10.254.254.0 255.255.255.254
ip ospf network point-to-point
duplex auto
speed auto
media-type rj45
ipv6 enable
ipv6 ospf 1 area 0
!
interface GigabitEthernet0/2
no ip address
shutdown
duplex auto
speed auto
media-type rj45
!
interface GigabitEthernet0/3
no ip address
shutdown
duplex auto
speed auto
media-type rj45
!
router ospf 1
auto-cost reference-bandwidth 100000
passive-interface default
no passive-interface GigabitEthernet0/1
network 10.1.0.0 0.0.1.255 area 0
network 10.1.128.0 0.0.0.127 area 0
network 10.254.1.11 0.0.0.0 area 0
network 10.254.254.0 0.0.0.1 area 0
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
ipv6 router ospf 1
auto-cost reference-bandwidth 100000
passive-interface default
no passive-interface GigabitEthernet0/1
!
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
line aux 0
line vty 0 4
exec-timeout 0 0
login
transport input none
!
no scheduler allocate
!
end
cpu_limit: null
cpus: null
data_volume: null
hide_links: false
id: n1
image_definition: null
label: HQRTR01
node_definition: iosv
ram: null
tags: []
x: -80
y: -280
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: null
configuration: |-
Building configuration...
Current configuration : 4515 bytes
!
! Last configuration change at 10:50:17 UTC Sun Apr 21 2024
!
version 15.9
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname HQRTR02
!
boot-start-marker
boot-end-marker
!
!
no logging console
!
no aaa new-model
!
!
!
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
!
!
!
!
!
!
!
!
!
!
!
no ip domain lookup
ip domain name wsc2024.local
ip cef
ipv6 unicast-routing
ipv6 cef
!
multilink bundle-name authenticated
!
!
!
!
username admin privilege 15 password 0 Skill39@Lyon
!
redundancy
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface Loopback0
ip address 10.254.1.12 255.255.255.255
ipv6 address 2001:DB8:CAFE:254::12/128
ipv6 enable
ipv6 ospf network point-to-point
!
interface GigabitEthernet0/0
no ip address
duplex auto
speed auto
media-type rj45
!
interface GigabitEthernet0/0.100
encapsulation dot1Q 100
ip address 10.1.0.3 255.255.254.0
ip helper-address 10.1.64.10
standby version 2
standby 100 ip 10.1.0.5
standby 100 authentication md5 key-string Skill39@Lyon
standby 101 ipv6 autoconfig
standby 101 authentication md5 key-string Skillss39
ipv6 address 2001:DB8:CAFE:100::3/64
ipv6 enable
ipv6 ospf 1 area 0
!
interface GigabitEthernet0/0.150
encapsulation dot1Q 150
ip address 10.1.128.3 255.255.255.128
standby version 2
standby 150 ip 10.1.128.1
standby 150 authentication md5 key-string Skill39@Lyon
standby 151 ipv6 autoconfig
standby 151 authentication md5 key-string Skill39@Lyon
ipv6 address 2001:DB8:CAFE:150::3/64
ipv6 enable
ipv6 ospf 1 area 0
!
interface GigabitEthernet0/1
ip address 10.254.254.2 255.255.255.254
ip ospf network point-to-point
duplex auto
speed auto
media-type rj45
ipv6 enable
ipv6 ospf 1 area 0
!
interface GigabitEthernet0/2
no ip address
shutdown
duplex auto
speed auto
media-type rj45
!
interface GigabitEthernet0/3
no ip address
shutdown
duplex auto
speed auto
media-type rj45
!
router ospf 1
auto-cost reference-bandwidth 100000
passive-interface default
no passive-interface GigabitEthernet0/1
network 10.1.0.0 0.0.1.255 area 0
network 10.1.128.0 0.0.0.127 area 0
network 10.254.1.12 0.0.0.0 area 0
network 10.254.254.2 0.0.0.1 area 0
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
ip ssh version 2
!
ipv6 router ospf 1
auto-cost reference-bandwidth 100000
passive-interface default
no passive-interface GigabitEthernet0/1
!
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
line aux 0
line vty 0 4
exec-timeout 0 0
login local
transport input telnet ssh
line vty 5 15
login local
transport input telnet ssh
!
no scheduler allocate
!
end
cpu_limit: null
cpus: null
data_volume: null
hide_links: false
id: n2
image_definition: null
label: HQRTR02
node_definition: iosv
ram: null
tags: []
x: -80
y: -120
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: null
configuration: |-
Building configuration...
Current configuration : 4152 bytes
!
! Last configuration change at 15:42:40 UTC Sat Apr 27 2024
!
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
!
no aaa new-model
!
!
!
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
!
!
!
!
!
!
!
!
!
!
!
no ip domain lookup
ip cef
ipv6 unicast-routing
ipv6 cef
!
multilink bundle-name authenticated
!
!
!
!
!
redundancy
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface Loopback0
ip address 21.21.21.21 255.255.255.255
ipv6 address 2001:DB8:AFA:B::100/128
ipv6 enable
!
interface Loopback1
ip address 8.8.8.8 255.255.255.0
!
interface GigabitEthernet0/0
ip address 20.20.1.192 255.255.255.254
ip nat outside
ip virtual-reassembly in
duplex auto
speed auto
media-type rj45
ipv6 address 2001:DB8:FAFE:42::1/64
ipv6 enable
!
interface GigabitEthernet0/1
ip address 31.22.11.1 255.255.255.128
ip nat inside
ip virtual-reassembly in
duplex auto
speed auto
media-type rj45
ipv6 address 2001:AB12:10::1/64
ipv6 enable
!
interface GigabitEthernet0/2
no ip address
shutdown
duplex auto
speed auto
media-type rj45
!
interface GigabitEthernet0/3
no ip address
shutdown
duplex auto
speed auto
media-type rj45
!
router bgp 6939
bgp log-neighbor-changes
neighbor 20.20.1.193 remote-as 42
neighbor 2001:DB8:FAFE:42::2 remote-as 42
!
address-family ipv4
network 8.8.8.0 mask 255.255.255.0
network 9.9.9.9 mask 255.255.255.255
network 31.22.11.0 mask 255.255.255.128
neighbor 20.20.1.193 activate
no neighbor 2001:DB8:FAFE:42::2 activate
exit-address-family
!
address-family ipv6
network 2001:DB8:AFA::/48
network 2001:AB12:10::/64
network 2001:AB12:10::/48
network 2001:FACE:B00C::/48
neighbor 2001:DB8:FAFE:42::2 activate
exit-address-family
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
ip nat inside source static 31.22.11.33 9.9.9.9
ip route 9.9.9.9 255.255.255.255 Null0
!
ipv6 route 2001:DB8:AFA::/48 Null0
ipv6 route 2001:AB12:10::/48 Null0
ipv6 route 2001:FACE:B00C::/48 Null0
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
line aux 0
line vty 0 4
exec-timeout 0 0
login
transport input none
!
no scheduler allocate
!
end
cpu_limit: null
cpus: null
data_volume: null
hide_links: false
id: n3
image_definition: null
label: ISP
node_definition: iosv
ram: null
tags: []
x: 600
y: -200
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