aboutsummaryrefslogtreecommitdiffstats
path: root/CCNP-SP/SPADVROUTE/BGP/Jean-Christophe_Manciot/0.8.x/MP-BGP/topology.net
blob: 4a741453a72baf47c2927c131d2ee5f7f20c9393 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
autostart = False
version = 0.8.3.1
[127.0.0.1:7202]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 10200
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER R5]]
        console = 2003
        aux = 2103
        cnfg = configs\R5.cfg
        slot0 = C7200-IO-GE-E
        slot1 = PA-8T
        s1/0 = FR0 5
        x = -4.8284271247
        y = 197.414213562
        z = 1.0
        hx = 70.5726076352
        hy = 13.6274401758
    [[ROUTER WAN2]]
        console = 2005
        aux = 2105
        cnfg = configs\WAN2.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = WAN1 g0/0
        slot1 = PA-8T
        s1/0 = FR0 2
        slot2 = PA-2FE-TX
        f2/0 = R14 f1/0
        f2/1 = R13 f2/0
        x = 75.585786438
        y = 47.0
        z = 1.0
        hx = 9.5
        hy = 42.2403588244
[127.0.0.1:7203]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 10100
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER R11]]
        console = 2051
        aux = 2151
        cnfg = configs\R11.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = I11 g0/0
        slot1 = PA-2FE-TX
        f1/0 = R13 f1/1
        f1/1 = R16 f1/1
        slot2 = PA-8T
        s2/0 = I11 s1/0
        s2/1 = I16 s1/0
        x = 451.757359313
        y = -254.757359313
        z = 1.0
    [[ROUTER I11]]
        console = 2012
        aux = 2112
        cnfg = configs\I11.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = R11 g0/0
        slot1 = PA-8T
        s1/0 = R11 s2/0
        s1/1 = I6 s1/1
        s1/2 = I7 s1/2
        s1/3 = I16 s1/1
        s1/4 = I12 s1/0
        x = 779.91883092
        y = -308.17871555
        z = 1.0
[127.0.0.1:7200]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 10000
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER R13]]
        console = 2013
        aux = 2113
        cnfg = configs\R13.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = R14 g0/0
        slot1 = PA-2FE-TX
        f1/0 = WAN1 f2/0
        f1/1 = R11 f1/0
        slot2 = PA-2FE-TX
        f2/0 = WAN2 f2/1
        x = 311.749350086
        y = -254.249783362
        z = 1.0
    [[FRSW FR0]]
        1:103 = 3:301
        1:104 = 4:401
        1:105 = 5:501
        2:203 = 3:302
        2:204 = 4:402
        2:205 = 5:502
        3:301 = 1:103
        3:302 = 2:203
        4:401 = 1:104
        4:402 = 2:204
        5:501 = 1:105
        5:502 = 2:205
        1 = WAN1 s1/0
        2 = WAN2 s1/0
        3 = ASBR3 s1/0
        4 = ASBR4 s1/0
        5 = R5 s1/0
        x = -93.3578643763
        y = -110.5
        z = 1.0
    [[ROUTER WAN1]]
        console = 2000
        aux = 2100
        cnfg = configs\WAN1.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = WAN2 g0/0
        slot1 = PA-8T
        s1/0 = FR0 1
        slot2 = PA-2FE-TX
        f2/0 = R13 f1/0
        f2/1 = R14 f2/0
        x = 76.0
        y = -252.0
        z = 1.0
        hx = 15.2225837297
        hy = -19.2774162703
[127.0.0.1:7201]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 10300
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER ASBR3]]
        console = 2001
        aux = 2101
        cnfg = configs\ASBR3.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ASBR4 g0/0
        slot1 = PA-8T
        s1/0 = FR0 3
        s1/1 = I3 s1/0
        s1/2 = I5 s1/2
        s1/3 = I3 s1/3
        x = -472.225396745
        y = -168.017243942
        z = 1.0
    [[ROUTER ASBR4]]
        console = 2002
        aux = 2102
        cnfg = configs\ASBR4.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ASBR3 g0/0
        slot1 = PA-8T
        s1/0 = FR0 4
        s1/1 = I5 s1/0
        s1/2 = I3 s1/2
        slot2 = PA-GE
        g2/0 = IR1 g1/0
        slot3 = PA-FE-TX
        slot4 = PA-GE
        g4/0 = IR2 g0/0
        x = -471.811183182
        y = 2.9949493662
        z = 1.0
        hx = -51.0157522482
        hy = 8.85999595017
[127.0.0.1:7206]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 10600
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER I3]]
        console = 2015
        aux = 2115
        cnfg = configs\I3.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = I5 g0/0
        slot1 = PA-8T
        s1/0 = ASBR3 s1/1
        s1/1 = I4 s1/0
        s1/2 = ASBR4 s1/2
        s1/3 = ASBR3 s1/3
        x = -748.910821693
        y = -242.936074863
        z = 1.0
    [[ROUTER I5]]
        console = 2056
        aux = 2156
        cnfg = configs\I5.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = I3 g0/0
        slot1 = PA-8T
        s1/0 = ASBR4 s1/1
        s1/1 = I4 s1/1
        s1/2 = ASBR3 s1/2
        s1/3 = I105 s1/0
        s1/4 = IR4 s1/0
        slot2 = PA-GE
        g2/0 = IR1 g0/0
        slot3 = PA-GE
        x = -855.217281017
        y = 230.408351355
        z = 1.0
        hx = 28.2225837297
        hy = 45.1016506892
[127.0.0.1:7207]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 10700
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER R14]]
        console = 2019
        aux = 2119
        cnfg = configs\R14.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = R13 g0/0
        slot1 = PA-2FE-TX
        f1/0 = WAN2 f2/0
        f1/1 = R16 f1/0
        slot2 = PA-2FE-TX
        f2/0 = WAN1 f2/1
        x = 313.163563648
        y = 46.977705423
        z = 1.0
    [[ROUTER I4]]
        console = 2017
        aux = 2117
        cnfg = configs\I4.cfg
        slot0 = C7200-IO-GE-E
        slot1 = PA-8T
        s1/0 = I3 s1/1
        s1/1 = I5 s1/1
        s1/2 = IR4 s1/2
        x = -915.738724943
        y = -87.3397182619
        z = 1.0
[127.0.0.1:7204]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 10400
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER R16]]
        console = 2016
        aux = 2116
        cnfg = configs\R16.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = C10 g1/0
        slot1 = PA-2FE-TX
        f1/0 = R14 f1/1
        f1/1 = R11 f1/1
        slot2 = PA-8T
        s2/0 = I6 s1/0
        s2/1 = I16 s1/3
        slot3 = PA-GE
        g3/0 = C20 g3/0
        x = 457.171572876
        y = 48.242640687
        z = 1.0
        hx = 15.0857864376
        hy = -19.3431457505
    [[ROUTER I6]]
        console = 2014
        aux = 2114
        cnfg = configs\I6.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = I7 g0/0
        slot1 = PA-8T
        s1/0 = R16 s2/0
        s1/1 = I11 s1/1
        slot2 = PA-GE
        g2/0 = C10 g0/0
        x = 740.610173055
        y = 136.663996924
        z = 1.0
        hx = 45.390334919
        hy = -22.1387081352
[127.0.0.1:7205]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 10500
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER C30]]
        console = 2044
        aux = 2144
        cnfg = configs\C30.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = C20 g2/0
        slot1 = PA-8T
        s1/0 = I7 s1/0
        slot2 = PA-GE
        g2/0 = C10 g3/0
        slot3 = PA-GE
        x = 421.939297976
        y = 399.304013018
        z = 1.0
        hx = 56.7825806809
        hy = 30.6637324045
    [[ROUTER I7]]
        console = 2041
        aux = 2141
        cnfg = configs\I7.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = I6 g0/0
        slot1 = PA-8T
        s1/0 = C30 s1/0
        s1/1 = I107 s1/1
        s1/2 = I11 s1/2
        s1/3 = I12 s1/2
        slot2 = PA-GE
        x = 871.35533906
        y = 323.345237792
        z = 1.0
        hx = 61.1274401757
        hy = 33.6564832298
[127.0.0.1:7208]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 10800
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER I107]]
        console = 2031
        aux = 2131
        cnfg = configs\I107.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = I106 g1/0
        slot1 = PA-8T
        s1/0 = I105 s1/1
        s1/1 = I7 s1/1
        slot2 = PA-GE
        g2/0 = C20 g0/0
        x = 144.912481935
        y = 412.616640416
        z = 1.0
    [[ROUTER I105]]
        console = 2018
        aux = 2118
        cnfg = configs\I105.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = I106 g0/0
        slot1 = PA-8T
        s1/0 = I5 s1/3
        s1/1 = I107 s1/0
        slot2 = PA-GE
        g2/0 = IR2 g3/0
        x = -127.02864356
        y = 404.721329561
        z = 1.0
        hx = -5.73238880602
        hy = 40.7552636196
[127.0.0.1:7209]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 10900
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER IR4]]
        console = 2026
        aux = 2126
        cnfg = configs\IR4.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = IR2 g2/0
        slot1 = PA-8T
        s1/0 = I5 s1/4
        s1/2 = I4 s1/2
        slot2 = PA-GE
        g2/0 = IR1 g3/0
        x = -450.286917032
        y = 361.127683498
        z = 1.0
        hx = 64.2345404554
        hy = 1.51985042212
    [[ROUTER I106]]
        console = 2027
        aux = 2127
        cnfg = configs\I106.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = I105 g0/0
        slot1 = PA-GE
        g1/0 = I107 g0/0
        x = -5.40627719729
        y = 471.189366993
        z = 1.0
[127.0.0.1:7213]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 11030
[127.0.0.1:7212]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 11020
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER C10]]
        console = 2032
        aux = 2528
        cnfg = configs\C10.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = I6 g2/0
        slot1 = PA-GE
        g1/0 = R16 g0/0
        slot2 = PA-GE
        g2/0 = C20 g1/0
        slot3 = PA-GE
        g3/0 = C30 g2/0
        x = 446.930873893
        y = 196.440021874
        z = 1.0
        hx = -7.61291864868
        hy = -20.7080622027
    [[ROUTER C20]]
        console = 2030
        aux = 2526
        cnfg = configs\C20.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = I107 g2/0
        slot1 = PA-GE
        g1/0 = C10 g2/0
        slot2 = PA-GE
        g2/0 = C30 g0/0
        slot3 = PA-GE
        g3/0 = R16 g3/0
        x = 354.869891991
        y = 287.142251424
        z = 1.0
        hx = -28.9252076407
        hy = 5.20840888325
[127.0.0.1:7210]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 10910
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER I16]]
        console = 2024
        aux = 2124
        cnfg = configs\I16.cfg
        slot0 = C7200-IO-GE-E
        slot1 = PA-8T
        s1/0 = R11 s2/1
        s1/1 = I11 s1/3
        s1/2 = I12 s1/1
        s1/3 = R16 s2/1
        x = 679.444876303
        y = -194.852813742
        z = 1.0
    [[ROUTER I12]]
        console = 2025
        aux = 2125
        cnfg = configs\I12.cfg
        slot0 = C7200-IO-GE-E
        slot1 = PA-8T
        s1/0 = I11 s1/4
        s1/1 = I16 s1/2
        s1/2 = I7 s1/3
        x = 918.446968343
        y = -186.367532368
        z = 1.0
[127.0.0.1:7211]
    workingdir = C:\Users\ActionMystique\AppData\Local\Temp\GNS3
    udp = 10920
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\IOS\Binaries\c7200-adventerprisek9-mz.124-24.T.image
        idlepc = 0x6307ad74
        sparsemem = True
        ghostios = True
    [[ROUTER IR1]]
        console = 2029
        aux = 2525
        cnfg = configs\IR1.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = I5 g2/0
        slot1 = PA-GE
        g1/0 = ASBR4 g2/0
        slot2 = PA-GE
        g2/0 = IR2 g1/0
        slot3 = PA-GE
        g3/0 = IR4 g2/0
        slot4 = PA-GE
        x = -459.891688683
        y = 156.585281519
        z = 1.0
        hx = -4.64487488285
        hy = -18.4568075937
    [[ROUTER IR2]]
        console = 2028
        aux = 2524
        cnfg = configs\IR2.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ASBR4 g4/0
        slot1 = PA-GE
        g1/0 = IR1 g2/0
        slot2 = PA-GE
        g2/0 = IR4 g0/0
        slot3 = PA-GE
        g3/0 = I105 g2/0
        slot4 = PA-GE
        x = -354.458863998
        y = 269.618645168
        z = 1.0
        hx = -27.9121220098
        hy = 8.62890156604
[GNS3-DATA]
    configs = configs
    m11 = 0.494257010177
    m22 = 0.494257010177
    [[NOTE 1]]
        text = "7.82/29"
        x = 340.790077944
        y = 259.353136612
    [[NOTE 2]]
        text = "7.86/29"
        x = 413.626677646
        y = 91.1919207163
    [[NOTE 3]]
        text = "7.53/29"
        x = 464.207649661
        y = 363.317550157
    [[NOTE 4]]
        text = "7.50/29"
        x = 482.416799587
        y = 242.702447955
    [[NOTE 5]]
        text = "107.2/28"
        x = 281.68695458
        y = 318.238252526
    [[NOTE 6]]
        text = "107.7/28"
        x = 222.001407602
        y = 399.947038384
    [[NOTE 7]]
        text = "ISPrint"
        x = 761.841845923
        y = -387.788888606
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 8]]
        text = "AS 7"
        x = 939.351513915
        y = 320.305699271
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 9]]
        text = "3.2/30"
        x = -676.312841947
        y = -238.585786438
    [[NOTE 10]]
        text = "3216:A0A::/32"
        x = -223.700760329
        y = -347.783150916
        color = "#ff0000"
    [[NOTE 11]]
        text = "1.1/30"
        x = 95.4759737967
        y = 410.284821422
    [[NOTE 12]]
        text = "4.17/29"
        x = -374.482051835
        y = 166.620462886
    [[NOTE 13]]
        text = "San Francisco\nSacramento"
        x = -264.067592108
        y = 226.833953452
        font = "MS Shell Dlg 2,20,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 14]]
        text = "AS 64495"
        x = -849.888156681
        y = 304.284385429
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 15]]
        text = "12.1/24"
        x = 93.970562748
        y = -182.828427125
    [[NOTE 16]]
        text = "|"
        x = 399.335953261
        y = 406.249535596
    [[NOTE 17]]
        text = "1.33/30"
        x = 882.150503789
        y = -135.140043583
    [[NOTE 18]]
        text = "1.29/30"
        x = 739.314933989
        y = -174.336003076
    [[NOTE 19]]
        text = "eBGP"
        x = 568.150503789
        y = -295.289321882
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 20]]
        text = "4.26/29"
        x = -348.579193068
        y = 322.395830065
    [[NOTE 21]]
        text = "OSPF"
        x = -205.379725677
        y = -403.244732729
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 22]]
        text = "7.43/29"
        x = 372.153893428
        y = 376.117096892
    [[NOTE 23]]
        text = "|"
        x = 422.464698346
        y = 209.37086598
    [[NOTE 24]]
        text = "4.11/29"
        x = -397.659961075
        y = 195.565970733
    [[NOTE 25]]
        text = "4.1/29"
        x = -427.415951335
        y = 135.20433848
    [[NOTE 26]]
        text = "|"
        x = -29.8284271247
        y = 208.914213562
    [[NOTE 27]]
        text = "200.17.7.5/29"
        x = -551.049411244
        y = 368.925958733
    [[NOTE 28]]
        text = "6.6/30"
        x = 826.214428923
        y = 299.702668892
    [[NOTE 29]]
        text = "NAT service"
        x = -432.991072375
        y = 402.555428133
        font = "MS Shell Dlg 2,11,-1,5,75,0,0,0,0,0"
    [[NOTE 30]]
        text = "4.6/30"
        x = -783.280702355
        y = 214.948638607
    [[NOTE 31]]
        text = "6.4/24"
        x = -832.778177039
        y = 185.251301534
    [[NOTE 32]]
        text = "200.17.0.0/16"
        x = -927.407772502
        y = -150.469660577
    [[NOTE 33]]
        text = "MetroISP"
        x = -981.45313626
        y = 165.876272899
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 34]]
        text = "1.34/30"
        x = 911.067242669
        y = 287.484414823
    [[NOTE 35]]
        text = "5.5/27"
        x = -50.0710678119
        y = 223.849242405
    [[NOTE 36]]
        text = "4.2/30"
        x = -703.182899632
        y = -196.159379566
    [[NOTE 37]]
        text = "10.12.16.2/29"
        x = -15.7956108513
        y = 44.5149847209
    [[NOTE 38]]
        text = "3064:300::/32"
        x = 68.8067742622
        y = 357.331362043
        color = "#ff0000"
    [[NOTE 39]]
        text = "13.3/29"
        x = -396.730932175
        y = -157.664914997
    [[NOTE 40]]
        text = "Backbone Area"
        x = -233.663996924
        y = 164.388087734
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#ffffff"
    [[NOTE 41]]
        text = "Seattle"
        x = -422.125684831
        y = 488.91528207
        font = "MS Shell Dlg 2,20,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 42]]
        text = "GooglISP"
        x = -764.19509294
        y = -352.87720036
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 43]]
        text = "17.1/24"
        x = 143.0
        y = -259.0
    [[NOTE 44]]
        text = "---"
        x = -390.81791414
        y = 381.223623845
    [[NOTE 45]]
        text = "|"
        x = -324.975907771
        y = 304.939848034
    [[NOTE 46]]
        text = "Houston"
        x = 91.7769908421
        y = 106.755522442
        font = "MS Shell Dlg 2,20,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 47]]
        text = "200.17.4.5/30"
        x = -560.635012178
        y = 50.5047970296
    [[NOTE 48]]
        text = "6.1/30"
        x = 701.498806672
        y = 115.78873575
    [[NOTE 49]]
        text = "eBGP"
        x = 650.789869618
        y = 381.592533664
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 50]]
        text = "7.4/29"
        x = 490.597596512
        y = 107.082339904
    [[NOTE 51]]
        text = "1.2/30"
        x = 725.123501255
        y = -304.770651892
    [[NOTE 52]]
        text = "100.16.6.2/30"
        x = 537.08239457
        y = 56.5828278446
    [[NOTE 53]]
        text = "6.5/30"
        x = 803.486506862
        y = 168.636651714
    [[NOTE 54]]
        text = "4.84/29"
        x = -420.795756029
        y = 49.1920160783
    [[NOTE 55]]
        text = "4.82/29"
        x = -333.796484163
        y = 239.608859661
    [[NOTE 56]]
        text = "200.17.5.10/30"
        x = -555.41324262
        y = 335.703012429
    [[NOTE 57]]
        text = "5.5/30"
        x = -899.346754712
        y = -28.0289214159
    [[NOTE 58]]
        text = "105.6/30"
        x = -281.785073668
        y = 302.599183309
    [[NOTE 59]]
        text = "eBGP"
        x = 747.983981547
        y = -33.4415587736
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 60]]
        text = "eBGP"
        x = -702.849069624
        y = -2.02025560929
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 61]]
        text = "99.7/24"
        x = 358.89148571
        y = -267.48023074
    [[NOTE 62]]
        text = "3216:A0C::/32"
        x = -53.208434333
        y = -382.059830945
        color = "#ff0000"
    [[NOTE 63]]
        text = "NAT service"
        x = 426.773736705
        y = -320.409162928
        font = "MS Shell Dlg 2,11,-1,5,75,0,0,0,0,0"
    [[NOTE 64]]
        text = "1.14/30"
        x = 736.486506863
        y = -268.284271247
    [[NOTE 65]]
        text = "3.6/30"
        x = -795.389330828
        y = 195.753826851
    [[NOTE 66]]
        text = "1.18/30"
        x = 865.226622234
        y = 265.962553522
    [[NOTE 67]]
        text = "---"
        x = 426.554389043
        y = 209.152849615
    [[NOTE 68]]
        text = "5.9/30"
        x = -849.759921776
        y = -57.9507235496
    [[NOTE 69]]
        text = "200.17.0.0/16"
        x = -760.579869252
        y = -312.936074863
    [[NOTE 70]]
        text = "100.16.6.10/30"
        x = 511.938220624
        y = 216.707360095
    [[NOTE 71]]
        text = "AT&ISP"
        x = -27.4589990911
        y = 345.675783367
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 72]]
        text = "34.3/24"
        x = -439.573593129
        y = -130.088311755
    [[NOTE 73]]
        text = "3007:6410::/32"
        x = 845.533507709
        y = 406.39308648
        color = "#ff0000"
    [[NOTE 74]]
        text = "|"
        x = 814.800215362
        y = 140.747258045
    [[NOTE 75]]
        text = "200.17.3.9/30"
        x = -571.661038331
        y = -156.561399819
    [[NOTE 76]]
        text = "VerISPon"
        x = 21.8278374077
        y = -490.68965696
        font = "MS Shell Dlg 2,24,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 77]]
        text = "105"
        x = -24.0
        y = -143.0
    [[NOTE 78]]
        text = "|"
        x = -385.867697786
        y = 165.061886184
    [[NOTE 79]]
        text = "1.9/30"
        x = 493.241774136
        y = -222.828427125
    [[NOTE 80]]
        text = "1.17/30"
        x = 821.503644307
        y = -251.596880476
    [[NOTE 81]]
        text = "77.13/30"
        x = 821.896481366
        y = 358.907106506
    [[NOTE 82]]
        text = "L1 23.23.23.23/32"
        x = -703.585493754
        y = -269.086333896
    [[NOTE 83]]
        text = "200.17.4.1/30"
        x = -539.434022128
        y = -26.4932325679
    [[NOTE 84]]
        text = "3.10/30"
        x = -674.898628385
        y = -216.159379567
    [[NOTE 85]]
        text = "4.44/29"
        x = -367.834631893
        y = 381.09388649
    [[NOTE 86]]
        text = "4.12/29"
        x = -413.426845628
        y = 255.610249369
    [[NOTE 87]]
        text = "7.26/29"
        x = 441.597225083
        y = 296.468623253
    [[NOTE 88]]
        text = "6.18/28"
        x = 809.143361113
        y = 129.038671967
    [[NOTE 89]]
        text = "18.1/24"
        x = 141.585786438
        y = -211.828427125
    [[NOTE 90]]
        text = "eBGP"
        x = -628.436945115
        y = -168.198180421
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 91]]
        text = "160.2/24"
        x = 425.359523142
        y = 2.03152929237
    [[NOTE 92]]
        text = "9.6/29"
        x = -765.519332703
        y = 231.964225133
    [[NOTE 93]]
        text = "160.1/24"
        x = 425.310226032
        y = -194.293848641
    [[NOTE 94]]
        text = "AS 64512"
        x = 257.068109219
        y = 219.619407771
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 95]]
        text = "AS 1"
        x = 872.251008851
        y = -317.178715551
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 96]]
        text = "10.10.13.1/29"
        x = -24.0702905103
        y = -230.238587177
    [[NOTE 97]]
        text = "New-York"
        x = 179.90654944
        y = 247.062272358
        font = "MS Shell Dlg 2,20,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 98]]
        text = "6.3/24"
        x = -745.609306503
        y = -175.750216638
    [[NOTE 99]]
        text = "103"
        x = -26.0
        y = -179.0
    [[NOTE 100]]
        text = "3216:0A0B::/32"
        x = -430.539492596
        y = 465.486845126
        color = "#ff0000"
    [[NOTE 101]]
        text = "EIGRP"
        x = 264.13917703
        y = -459.612265097
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 102]]
        text = "L1 3.3.3.3/32"
        x = -444.381817717
        y = -207.681240867
    [[NOTE 103]]
        text = "7.42/29"
        x = 408.568580445
        y = 322.387994933
    [[NOTE 104]]
        text = "2.6/30"
        x = -777.68239476
        y = 244.815849461
    [[NOTE 105]]
        text = "eBGP"
        x = 643.467170881
        y = 60.5462479176
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 106]]
        text = "L11 10.9.11.11/32"
        x = 422.531096017
        y = -299.605122421
    [[NOTE 107]]
        text = "2.2/24"
        x = -94.0286435602
        y = 446.853363917
    [[NOTE 108]]
        text = "15.5/29"
        x = -54.0
        y = 178.0
    [[NOTE 109]]
        text = "402"
        x = -265.04163056
        y = -24.4817100368
    [[NOTE 110]]
        text = "1.6/30"
        x = 726.636309036
        y = -283.692729102
    [[NOTE 111]]
        text = "---"
        x = 415.274065885
        y = 296.577303467
    [[NOTE 112]]
        text = "3.3/24"
        x = 64.3632754247
        y = 478.978255598
    [[NOTE 113]]
        text = "|"
        x = -943.549908125
        y = -78.7539318243
    [[NOTE 114]]
        text = "iBGP"
        x = 783.365330369
        y = -152.412720095
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 115]]
        text = "---"
        x = 800.658079738
        y = 142.161471607
    [[NOTE 116]]
        text = "iBGP"
        x = -431.264035028
        y = -93.2654359616
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 117]]
        text = "100.16.7.0/24"
        x = 852.256059484
        y = 420.773736703
    [[NOTE 118]]
        text = "-"
        x = -323.772178915
        y = 312.222194243
    [[NOTE 119]]
        text = "---"
        x = -399.419234043
        y = 165.262896311
    [[NOTE 120]]
        text = "100.16.1.0/24"
        x = 771.874710662
        y = -86.395165277
    [[NOTE 121]]
        text = "100.16.6.0/24"
        x = 729.947401619
        y = 230.452885529
    [[NOTE 122]]
        text = "iBGP"
        x = 427.123524432
        y = -107.60093834
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 123]]
        text = "6.9/30"
        x = 700.068160739
        y = 171.612970169
    [[NOTE 124]]
        text = "3.0.0.0/8"
        x = 78.6275644952
        y = 370.32523869
    [[NOTE 125]]
        text = "7.6/29"
        x = -793.366091947
        y = 265.61926916
    [[NOTE 126]]
        text = "1.5/30"
        x = 525.817983179
        y = -245.406547013
    [[NOTE 127]]
        text = "10.12.0.0/16"
        x = -46.9878066912
        y = -398.780827858
    [[NOTE 128]]
        text = "200.17.3.1/30"
        x = -567.418397643
        y = -188.887301627
    [[NOTE 129]]
        text = "AS 65534"
        x = -219.521861301
        y = 187.49451609
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 130]]
        text = "Area 5"
        x = -28.9152454115
        y = 275.970827093
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#ffffff"
    [[NOTE 131]]
        text = "105.5/30"
        x = -152.29778531
        y = 380.261491406
    [[NOTE 132]]
        text = "1.22/30"
        x = 770.959594929
        y = 92.4701294725
    [[NOTE 133]]
        text = "NAT service"
        x = -444.381817717
        y = -227.681240867
        font = "MS Shell Dlg 2,11,-1,5,75,0,0,0,0,0"
    [[NOTE 134]]
        text = "16.37/27"
        x = 343.335136524
        y = -210.710678119
    [[NOTE 135]]
        text = "10.9.7.0/24"
        x = 386.900183576
        y = 466.161656314
    [[NOTE 136]]
        text = "7.10/29"
        x = 392.296944346
        y = 230.002409745
    [[NOTE 137]]
        text = "---"
        x = -937.893053876
        y = -77.3397182619
    [[NOTE 138]]
        text = "Los Angeles"
        x = -85.2564112105
        y = 305.57977457
        font = "MS Shell Dlg 2,20,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 139]]
        text = "302"
        x = -274.068240413
        y = -106.346985086
    [[NOTE 140]]
        text = "27.2/24"
        x = 140.414213562
        y = 28.656854249
    [[NOTE 141]]
        text = "5.2/30"
        x = -855.063479014
        y = -113.11047144
    [[NOTE 142]]
        text = "1.37/30"
        x = 686.989032181
        y = -142.620274323
    [[NOTE 143]]
        text = "NAT service"
        x = -467.009234715
        y = -56.7624099466
        font = "MS Shell Dlg 2,11,-1,5,75,0,0,0,0,0"
    [[NOTE 144]]
        text = "3006:6410::/32"
        x = 726.789895317
        y = 212.511519581
        color = "#ff0000"
    [[NOTE 145]]
        text = "16.38/27"
        x = 340.506709399
        y = 2.2325394194
    [[NOTE 146]]
        text = "13.4/29"
        x = -407.179944498
        y = 11.3491891554
    [[NOTE 147]]
        text = "3200:A09::/32"
        x = 255.146600544
        y = -407.363388183
        color = "#ff0000"
    [[NOTE 148]]
        text = "3.1/24"
        x = 137.902380668
        y = 453.321401349
    [[NOTE 149]]
        text = "1.38/30"
        x = 520.111831821
        y = 15.5706345354
    [[NOTE 150]]
        text = "ISP & T"
        x = 18.7125995055
        y = 636.709661494
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 151]]
        text = "502"
        x = -29.2426406871
        y = 71.585786438
    [[NOTE 152]]
        text = "---"
        x = -25.2426406871
        y = 209.242640687
    [[NOTE 153]]
        text = "4.4/29"
        x = -464.295391962
        y = 72.2268743992
    [[NOTE 154]]
        text = "28.2/24"
        x = 139.0
        y = 70.0
    [[NOTE 155]]
        text = "28.8/24"
        x = 251.41125497
        y = 69.102597104
    [[NOTE 156]]
        text = "NAT service"
        x = 389.234221493
        y = 437.955450779
        font = "MS Shell Dlg 2,11,-1,5,75,0,0,0,0,0"
    [[NOTE 157]]
        text = "7.33/29"
        x = 371.684843131
        y = 392.821076616
    [[NOTE 158]]
        text = "AS 6"
        x = 717.219479559
        y = 69.0315292913
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 159]]
        text = "BGP - EIGRP - OSPF over IPv4 and IPv6"
        x = -259.506158434
        y = -562.069716642
        font = "MS Shell Dlg 2,26,-1,5,75,0,1,0,0,0"
    [[NOTE 160]]
        text = "OSPF"
        x = -32.8456710674
        y = -440.014285351
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 161]]
        text = "7.12/29"
        x = 413.698571226
        y = 278.631300218
    [[NOTE 162]]
        text = "1.13/30"
        x = 732.243866176
        y = -210.502525317
    [[NOTE 163]]
        text = "eBGP"
        x = -280.892035246
        y = 356.084887814
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 164]]
        text = "10.11.4.0/24"
        x = -416.098876024
        y = 451.476904673
    [[NOTE 165]]
        text = "104"
        x = -26.0
        y = -162.0
    [[NOTE 166]]
        text = "iBGP"
        x = 14.7510103297
        y = 412.569092669
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 167]]
        text = "203"
        x = -5.0
        y = -46.0
    [[NOTE 168]]
        text = "Boston"
        x = 384.91816291
        y = 520.503803626
        font = "MS Shell Dlg 2,20,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 169]]
        text = "200.17.2.5/30"
        x = -227.586328196
        y = 420.936521997
    [[NOTE 170]]
        text = "eBGP"
        x = -924.937750292
        y = 88.5194352047
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 171]]
        text = "17.7/24"
        x = 251.41125497
        y = -262.634559673
    [[NOTE 172]]
        text = "ISPcast"
        x = 726.805265997
        y = 28.2203461091
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 173]]
        text = "4.94/29"
        x = -450.26417197
        y = 319.448320062
    [[NOTE 174]]
        text = "4.91/29"
        x = -486.682471821
        y = 204.902934502
    [[NOTE 175]]
        text = "501"
        x = -60.5664504539
        y = 72.066017178
    [[NOTE 176]]
        text = "Area 4"
        x = -401.107624594
        y = 431.07058117
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#ffffff"
    [[NOTE 177]]
        text = "12.2/24"
        x = 106.985084275
        y = 3.89415660504
    [[NOTE 178]]
        text = "10.9.0.0/16"
        x = 264.139177031
        y = -421.428498912
    [[NOTE 179]]
        text = "18.8/24"
        x = 249.997041407
        y = 22.232539419
    [[NOTE 180]]
        text = "L16 10.9.16.16/27"
        x = 519.354472508
        y = 43.5046173578
    [[NOTE 181]]
        text = "7.17/29"
        x = 389.632830739
        y = 195.689770926
    [[NOTE 182]]
        text = "3001:6410::/32"
        x = 768.278627358
        y = -102.974951575
        color = "#ff0000"
    [[NOTE 183]]
        text = "31EF:C811::/32"
        x = -854.133418613
        y = 347.05830925
        color = "#ff0000"
    [[NOTE 184]]
        text = "200.17.9.1/29"
        x = -558.151804468
        y = 160.66021737
    [[NOTE 185]]
        text = "10.12.15.1/29"
        x = -9.74202621319
        y = -198.760763624
    [[NOTE 186]]
        text = "eBGP"
        x = 834.022653515
        y = -26.789755158
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 187]]
        text = "AS 64493"
        x = -763.994082814
        y = -149.289321882
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 188]]
        text = "eBGP"
        x = 908.975972321
        y = 1.29350596265
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 189]]
        text = "16.5/29"
        x = 21.2236921464
        y = 167.933910594
    [[NOTE 190]]
        text = "99.1/24"
        x = 398.374438866
        y = -230.977417726
    [[NOTE 191]]
        text = "31ED:C811::/32"
        x = -764.176291326
        y = -300.619079122
        color = "#ff0000"
    [[NOTE 192]]
        text = "200.17.3.5/30"
        x = -560.347329832
        y = -121.20606076
    [[NOTE 193]]
        text = "205"
        x = -1.56935406757
        y = -6.9651416791
    [[NOTE 194]]
        text = "4.54/29"
        x = -386.214793616
        y = 344.266710412
    [[NOTE 195]]
        text = "204"
        x = -3.58578643763
        y = -28.0
    [[NOTE 196]]
        text = "4.52/29"
        x = -398.794310533
        y = 305.906523657
    [[NOTE 197]]
        text = "10.10.13.2/29"
        x = -11.6220443953
        y = 22.7822154587
    [[NOTE 198]]
        text = "2.3/24"
        x = -61.9145940181
        y = 478.37407748
    [[NOTE 199]]
        text = "NAT service"
        x = 423.94530958
        y = -26.051731828
        font = "MS Shell Dlg 2,11,-1,5,75,0,0,0,0,0"
    [[NOTE 200]]
        text = "401"
        x = -287.254833996
        y = -59.4522727853
    [[NOTE 201]]
        text = "---"
        x = 402.978297573
        y = 407.01223324
    [[NOTE 202]]
        text = "Dallas"
        x = 72.6281150565
        y = -308.123192187
        font = "MS Shell Dlg 2,20,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 203]]
        text = "5.6/30"
        x = -884.495053528
        y = 212.326642679
    [[NOTE 204]]
        text = "34.4/24"
        x = -434.845671067
        y = -34.5613998203
    [[NOTE 205]]
        text = "Stubby Area"
        x = -48.9442884656
        y = 254.482095052
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#ffffff"
    [[NOTE 206]]
        text = "98.2/24"
        x = 401.317892581
        y = 49.9137802865
    [[NOTE 207]]
        text = "ClearwISP"
        x = 848.581961294
        y = 452.371716449
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 208]]
        text = "27.7/24"
        x = 257.068109219
        y = -213.338095117
    [[NOTE 209]]
        text = "|"
        x = 429.328857202
        y = 296.346514044
    [[NOTE 210]]
        text = "1.21/30"
        x = 763.323699809
        y = -241.931260406
    [[NOTE 211]]
        text = "5.1/30"
        x = -796.520994749
        y = -215.147186257
    [[NOTE 212]]
        text = "|"
        x = -377.98170085
        y = 381.211069822
    [[NOTE 213]]
        text = "eBGP"
        x = -641.528121651
        y = 239.952993032
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 214]]
        text = "100.16.77.14/30"
        x = 493.81250774
        y = 409.016485914
    [[NOTE 215]]
        text = "Interconnected ISP Networks"
        x = -185.51780858
        y = -603.930283358
        font = "MS Shell Dlg 2,28,-1,5,75,0,1,0,0,0"
        color = "#0055ff"
    [[NOTE 216]]
        text = "1.26/30"
        x = 853.866232541
        y = -199.590837072
    [[NOTE 217]]
        text = "eBGP"
        x = 558.251008852
        y = -146.99790796
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 218]]
        text = "1.10/30"
        x = 620.520994749
        y = -183.431457505
    [[NOTE 219]]
        text = "31EE:C811::/32"
        x = -929.415896522
        y = -137.554485879
        color = "#ff0000"
    [[NOTE 220]]
        text = "1.25/30"
        x = 842.552524042
        y = -285.656854249
    [[NOTE 221]]
        text = "98.8/24"
        x = 370.205194209
        y = 35.9726547893
    [[NOTE 222]]
        text = "7.1/29"
        x = 478.182923896
        y = 173.86082171
    [[NOTE 223]]
        text = "AS 64494"
        x = -928.199990136
        y = 9.337045839
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 224]]
        text = "200.17.16.0/20"
        x = -995.142132161
        y = -51.4418464709
    [[NOTE 225]]
        text = "1.2/30"
        x = -65.7443723133
        y = 399.17212305
    [[NOTE 226]]
        text = "200.17.0.0/16"
        x = -851.492131366
        y = 329.771336131
    [[NOTE 227]]
        text = "10.10.0.0/16"
        x = -214.670195295
        y = -364.483319905
    [[NOTE 228]]
        text = "301"
        x = -277.133513652
        y = -153.686291501
    [[NOTE 229]]
        text = "1.30/30"
        x = 853.866232541
        y = -163.223304703
    [[NOTE 230]]
        text = "77.1/30"
        x = 809.702683982
        y = 325.502420976
    [[NOTE 231]]
        text = "BelISP"
        x = -916.780355503
        y = -190.136616094
        font = "MS Shell Dlg 2,16,-1,5,75,0,0,0,0,0"
    [[NOTE 232]]
        text = "100.16.77.2/30"
        x = 216.852740881
        y = 433.080568463
    [[NOTE 233]]
        text = "1.1/30"
        x = 501.727055509
        y = -276.367532368
    [[NOTE 234]]
        text = "AS 100"
        x = -14.2111842553
        y = 383.854230468
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[SHAPE 1]]
        type = ellipse
        x = -193.023592931
        y = 387.123349815
        width = 431.335136523
        height = 131.5218613
        fill_color = "#ff5500"
        border_style = 2
    [[SHAPE 2]]
        type = ellipse
        x = 93.019335984
        y = -425.997041407
        width = 425.997041407
        height = 681.650937064
        fill_color = "#00ffff"
        border_style = 2
    [[SHAPE 3]]
        type = ellipse
        x = 351.223576413
        y = -214.596889865
        width = 160.232344433
        height = 734.596889865
        fill_color = "#00ffff"
        border_style = 2
        z = -1.0
    [[SHAPE 4]]
        type = ellipse
        x = -830.462120245
        y = -317.102597104
        width = 236.173664916
        height = 199.404112294
        fill_color = "#ffaaff"
        border_style = 2
        z = -2.0
    [[SHAPE 5]]
        type = ellipse
        x = -978.954544294
        y = -158.710678119
        width = 200.0
        height = 200.0
        fill_color = "#ffd8ff"
        border_style = 2
        z = -2.0
    [[SHAPE 6]]
        type = ellipse
        x = -455.0
        y = -367.0
        width = 565.0
        height = 588.0
        fill_color = "#00aaff"
        border_style = 2
        z = -2.0
    [[SHAPE 7]]
        type = ellipse
        x = -901.24891681
        y = 154.811183182
        width = 200.0
        height = 200.0
        fill_color = "#ff00ff"
        border_style = 2
        z = -2.0
    [[SHAPE 8]]
        type = ellipse
        x = 785.071067812
        y = 249.759451354
        width = 213.202235616
        height = 209.193867452
        fill_color = "#c9ff15"
        border_style = 2
        z = -2.0
    [[SHAPE 9]]
        type = ellipse
        x = 677.621499812
        y = 59.4091629284
        width = 200.0
        height = 200.0
        fill_color = "#ffff7f"
        border_style = 2
        z = -2.0
    [[SHAPE 10]]
        type = ellipse
        x = 617.692567624
        y = -348.215295476
        width = 381.83766184
        height = 284.256926037
        fill_color = "#ffff00"
        border_style = 2
        z = -2.0
    [[SHAPE 11]]
        type = ellipse
        x = -457.806698379
        y = -148.787176973
        width = 170.24686596
        height = 640.434224959
        fill_color = "#55aaff"
        border_style = 2
        z = -3.0
    [[SHAPE 12]]
        type = ellipse
        x = -102.142135624
        y = -406.198051534
        width = 205.060966544
        height = 719.834703248
        fill_color = "#0055ff"
        border_style = 2
        z = -3.0