aboutsummaryrefslogtreecommitdiffstats
path: root/CCNP/ROUTE/OSPF/Jean-Christophe_Manciot/0.8.x/Multi-Areas/topology.net
blob: a4b8e8b4c36f10ade5f59f07f716cab91edaa65a (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
autostart = False
version = 0.8.6
[127.0.0.1:7202]
    workingdir = C:\Users\ActionMystique\AppData\Local\GNS3
    udp = 10200
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\Certifications\Cisco\IOS\Binaries\c7200-adventerprisek9-mz.152-4.S.image
        ram = 512
        idlepc = 0x62ef0300
        sparsemem = True
        ghostios = True
    [[ROUTER ABR2]]
        console = 2005
        aux = 2105
        cnfg = configs\ABR2.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ABR1 g0/0
        slot1 = PA-8T
        s1/0 = FR1 2
        slot2 = PA-2FE-TX
        f2/0 = BR8 f1/1
        f2/1 = BR7 f1/1
        x = 163.585786438
        y = 129.343145751
        z = 1.0
        hx = 7.25735931288
        hy = 41.4680374315
    [[ROUTER ASBR5]]
        console = 2003
        aux = 2100
        cnfg = configs\ASBR5.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ISP3 g0/0
        slot1 = PA-8T
        s1/0 = FR1 5
        x = 83.1715728753
        y = 285.414213562
        z = 1.0
        hx = 58.4116882454
        hy = -2.37258300205
[127.0.0.1:7203]
    workingdir = C:\Users\ActionMystique\AppData\Local\GNS3
    udp = 10300
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\Certifications\Cisco\IOS\Binaries\c7200-adventerprisek9-mz.152-4.S.image
        ram = 512
        idlepc = 0x62ef0300
        sparsemem = True
        ghostios = True
    [[ROUTER BR8]]
        console = 2011
        aux = 2511
        cnfg = configs\BR8.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = BR7 g0/0
        slot1 = PA-2FE-TX
        f1/0 = ABR1 f2/1
        f1/1 = ABR2 f2/0
        slot2 = PA-2FE-TX
        f2/0 = SW1 f1/5
        f2/1 = ABR15 f1/0
        x = 368.636651714
        y = 130.735064736
        z = 1.0
        hx = 15.0857864376
        hy = 37.2253967444
    [[ROUTER BR7]]
        console = 2010
        aux = 2510
        cnfg = configs\BR7.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = BR8 g0/0
        slot1 = PA-2FE-TX
        f1/0 = ABR1 f2/0
        f1/1 = ABR2 f2/1
        slot2 = PA-2FE-TX
        f2/0 = SW1 f1/3
        x = 364.394011027
        y = -166.249783362
        z = 1.0
[127.0.0.1:7200]
    workingdir = C:\Users\ActionMystique\AppData\Local\GNS3
    udp = 10000
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\Certifications\Cisco\IOS\Binaries\c7200-adventerprisek9-mz.152-4.S.image
        ram = 512
        idlepc = 0x62ef0300
        sparsemem = True
        ghostios = True
    [[ROUTER ABR1]]
        console = 2000
        aux = 2110
        cnfg = configs\ABR1.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ABR2 g0/0
        slot1 = PA-8T
        s1/0 = FR1 1
        slot2 = PA-2FE-TX
        f2/0 = BR7 f1/0
        f2/1 = BR8 f1/0
        slot3 = PA-2FE-TX
        f3/0 = SW1 f1/2
        x = 164.0
        y = -164.0
        z = 1.0
        hx = 1.60050506339
        hy = -22.1715728753
    [[FRSW FR1]]
        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 = ABR1 s1/0
        2 = ABR2 s1/0
        3 = ASBR3 s1/0
        4 = ASBR4 s1/0
        5 = ASBR5 s1/0
        x = -19.5
        y = -22.5
        z = 1.0
[127.0.0.1:7201]
    workingdir = C:\Users\ActionMystique\AppData\Local\GNS3
    udp = 10100
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\Certifications\Cisco\IOS\Binaries\c7200-adventerprisek9-mz.152-4.S.image
        ram = 512
        idlepc = 0x62ef0300
        sparsemem = True
        ghostios = True
    [[ROUTER ASBR3]]
        console = 2001
        aux = 2102
        cnfg = configs\ASBR3.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ASBR4 g0/0
        slot1 = PA-8T
        s1/0 = FR1 3
        slot2 = PA-GE
        g2/0 = ISP2 g0/0
        x = -264.017243943
        y = -154.970562748
        z = 1.0
        hx = 35.5
        hy = 39.0
    [[ROUTER ASBR4]]
        console = 2002
        aux = 2103
        cnfg = configs\ASBR4.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ASBR3 g0/0
        slot1 = PA-8T
        s1/0 = FR1 4
        slot2 = PA-GE
        g2/0 = ISP2 g1/0
        x = -257.946176131
        y = 132.007142675
        z = 1.0
        hx = 14.5710678119
        hy = 38.6396103067
[127.0.0.1:7206]
    workingdir = C:\Users\ActionMystique\AppData\Local\GNS3
    udp = 10600
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\Certifications\Cisco\IOS\Binaries\c7200-adventerprisek9-mz.152-4.S.image
        ram = 512
        idlepc = 0x62ef0300
        sparsemem = True
        ghostios = True
    [[ROUTER ABR15]]
        console = 2025
        aux = 2525
        cnfg = configs\ABR15.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ASBR16 g0/0
        slot1 = PA-2FE-TX
        f1/0 = BR8 f2/1
        slot2 = PA-2FE-TX
        slot3 = PA-GE
        x = 381.0
        y = 320.0
        z = 1.0
        hx = 7.5
        hy = 41.4680374315
    [[ROUTER ABR14]]
        console = 2024
        aux = 2524
        cnfg = configs\ABR14.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = IR18 g0/0
        slot1 = PA-2FE-TX
        f1/0 = SW1 f1/6
        slot2 = PA-2FE-TX
        x = 557.0
        y = 212.0
        z = 1.0
        hx = 23.0563491861
        hy = -20.7573593129
[127.0.0.1:7207]
    workingdir = C:\Users\ActionMystique\AppData\Local\GNS3
    udp = 10700
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\Certifications\Cisco\IOS\Binaries\c7200-adventerprisek9-mz.152-4.S.image
        ram = 512
        idlepc = 0x62ef0300
        sparsemem = True
        ghostios = True
    [[ROUTER ISP2]]
        console = 2013
        aux = 2513
        cnfg = configs\ISP2.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ASBR3 g2/0
        slot1 = PA-GE
        g1/0 = ASBR4 g2/0
        slot2 = PA-POS-OC3
        p2/0 = ISP1 p1/0
        slot3 = PA-POS-OC3
        p3/0 = ISP3 p2/0
        x = -423.0
        y = 50.0
        z = 1.0
    [[ROUTER ISP3]]
        console = 2014
        aux = 2514
        cnfg = configs\ISP3.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ASBR5 g0/0
        slot1 = PA-POS-OC3
        p1/0 = ISP1 p2/0
        slot2 = PA-POS-OC3
        p2/0 = ISP2 p3/0
        slot3 = PA-GE
        g3/0 = ASBR16 g1/0
        x = -223.0
        y = 346.0
        z = 1.0
[127.0.0.1:7204]
    workingdir = C:\Users\ActionMystique\AppData\Local\GNS3
    udp = 10400
    [[3725]]
        image = C:\Users\ActionMystique\Google Drive\Missions\Certifications\Cisco\IOS\Binaries\c3725-adventerprisek9-mz.124-15.T5.image
        ram = 128
        idlepc = 0x602649b4
        sparsemem = True
    [[ROUTER SW1]]
        model = 3725
        console = 2009
        aux = 2509
        cnfg = configs\SW1.cfg
        slot1 = NM-16ESW
        f1/2 = ABR1 f3/0
        f1/3 = BR7 f2/0
        f1/4 = ABR9 f1/0
        f1/5 = BR8 f2/0
        f1/6 = ABR14 f1/0
        symbol = EtherSwitch router
        x = 482.202668892
        y = -17.8431457502
        z = 1.0
[127.0.0.1:7205]
    workingdir = C:\Users\ActionMystique\AppData\Local\GNS3
    udp = 10500
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\Certifications\Cisco\IOS\Binaries\c7200-adventerprisek9-mz.152-4.S.image
        ram = 512
        idlepc = 0x62ef0300
        sparsemem = True
        ghostios = True
    [[ROUTER ABR9]]
        console = 2012
        aux = 2512
        cnfg = configs\ABR9.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = IR17 g0/0
        slot1 = PA-2FE-TX
        f1/0 = SW1 f1/4
        slot2 = PA-2FE-TX
        slot3 = PA-2FE-TX
        slot4 = PA-2FE-TX
        x = 617.052957318
        y = 2.8284271247
        z = 1.0
        hx = -6.37005768509
        hy = -22.1715728752
[127.0.0.1:7208]
    workingdir = C:\Users\ActionMystique\AppData\Local\GNS3
    udp = 10800
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\Certifications\Cisco\IOS\Binaries\c7200-adventerprisek9-mz.152-4.S.image
        ram = 512
        idlepc = 0x62ef0300
        sparsemem = True
        ghostios = True
    [[ROUTER ASBR16]]
        console = 2026
        aux = 2526
        cnfg = configs\ASBR16.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ABR15 g0/0
        slot1 = PA-GE
        g1/0 = ISP3 g3/0
        x = -0.74725804499
        y = 403.230447378
        z = 1.0
        hx = 1.77207793864
        hy = -21.9461761308
    [[ROUTER ISP1]]
        console = 2015
        aux = 2515
        cnfg = configs\ISP1.cfg
        slot0 = C7200-IO-GE-E
        slot1 = PA-POS-OC3
        p1/0 = ISP2 p2/0
        slot2 = PA-POS-OC3
        p2/0 = ISP3 p1/0
        x = -537.0
        y = 216.0
        z = 1.0
[127.0.0.1:7209]
    workingdir = C:\Users\ActionMystique\AppData\Local\GNS3
    udp = 10900
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\Certifications\Cisco\IOS\Binaries\c7200-adventerprisek9-mz.152-4.S.image
        ram = 512
        idlepc = 0x62ef0300
        sparsemem = True
        ghostios = True
    [[ROUTER IR18]]
        console = 2017
        aux = 2517
        cnfg = configs\IR18.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ABR14 g0/0
        x = 673.242640687
        y = 347.071067812
        z = 1.0
    [[ROUTER IR17]]
        console = 2018
        aux = 2518
        cnfg = configs\IR17.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = ABR9 g0/0
        x = 865.786796564
        y = 58.201010127
        z = 1.0
[GNS3-DATA]
    configs = configs
    m11 = 0.707106781187
    m22 = 0.707106781187
    [[NOTE 1]]
        text = "13.2/29"
        x = 111.0
        y = 108.0
    [[NOTE 2]]
        text = "AS 1"
        x = 72.6000717881
        y = 325.210244842
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 3]]
        text = "--"
        x = 693.0
        y = 203.0
    [[NOTE 4]]
        text = "eBGP"
        x = -357.203102168
        y = -47.5248198939
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 5]]
        text = "--"
        x = 693.0
        y = 243.0
    [[NOTE 6]]
        text = "MD5 Athentication"
        x = 639.81031663
        y = 178.694659665
    [[NOTE 7]]
        text = "|"
        x = 709.007755419
        y = -18.4299782086
    [[NOTE 8]]
        text = "|"
        x = 709.007755419
        y = -98.4299782083
    [[NOTE 9]]
        text = "--"
        x = 408.171572875
        y = 397.585786438
    [[NOTE 10]]
        text = "34.0/24*"
        x = 726.168614281
        y = -78.6045096764
    [[NOTE 11]]
        text = "10.10.0.0/16"
        x = -87.693434176
        y = -258.27416998
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 12]]
        text = "18.8/24"
        x = 321.509667992
        y = 113.558441227
    [[NOTE 13]]
        text = "163.3/27"
        x = -160.661904884
        y = 385.261110119
    [[NOTE 14]]
        text = "32.3/29"
        x = -279.213203436
        y = 311.597113195
    [[NOTE 15]]
        text = "27.7/24"
        x = 307.610173055
        y = -116.889393669
    [[NOTE 16]]
        text = "OSPF NSSA Area 5"
        x = 19.6396103067
        y = -341.126983721
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 17]]
        text = "------------"
        x = 619.425540319
        y = 222.759451354
    [[NOTE 18]]
        text = "|"
        x = 110.497474683
        y = 337.926406871
    [[NOTE 19]]
        text = "5.5/27"
        x = 77.5269119345
        y = 355.689862839
    [[NOTE 20]]
        text = "501"
        x = 27.4335495461
        y = 160.066017178
    [[NOTE 21]]
        text = "|"
        x = 404.0
        y = 378.0
    [[NOTE 22]]
        text = "MD5 Athentication"
        x = 349.896536344
        y = -334.262843223
    [[NOTE 23]]
        text = "165.16/27"
        x = 67.0264786586
        y = 417.3860018
    [[NOTE 24]]
        text = "302"
        x = -134.564971157
        y = -58.5355339059
    [[NOTE 25]]
        text = "iBGP"
        x = -401.099638511
        y = 184.166522241
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 26]]
        text = "|"
        x = 709.007755419
        y = -78.4299782083
    [[NOTE 27]]
        text = "23.2/29"
        x = -364.066017178
        y = 32.989898732
    [[NOTE 28]]
        text = "10.14.0.0/16"
        x = 647.609306503
        y = 158.31580054
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 29]]
        text = "36.64/26--"
        x = 728.11836175
        y = 2.39549032316
    [[NOTE 30]]
        text = "204"
        x = 83.0
        y = 60.0
    [[NOTE 31]]
        text = "12.1/30"
        x = -533.771644663
        y = 173.607214462
    [[NOTE 32]]
        text = "|"
        x = 110.497474683
        y = 317.926406871
    [[NOTE 33]]
        text = "15.1/29"
        x = 122.0
        y = -114.0
    [[NOTE 34]]
        text = "Injects Default route"
        x = -302.22034611
        y = -173.284271248
    [[NOTE 35]]
        text = "AS 12"
        x = -261.154328932
        y = -269.570634536
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 36]]
        text = "11.7/24"
        x = 424.747258045
        y = -127.762409946
    [[NOTE 37]]
        text = "--"
        x = 713.250396106
        y = -98.2289680823
    [[NOTE 38]]
        text = "17.1/24"
        x = 231.0
        y = -168.171572876
    [[NOTE 39]]
        text = "10.13.0.0/16"
        x = 851.983981546
        y = -154.977705424
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 40]]
        text = "205"
        x = 85.0
        y = 78.0
    [[NOTE 41]]
        text = "10.15.0.0/16"
        x = 219.553390593
        y = 480.7148622
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 42]]
        text = "OSPF Stub Area 13"
        x = 836.284271247
        y = -183.126983721
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 43]]
        text = "Clear Text Athentication"
        x = -109.048773235
        y = -235.559307779
    [[NOTE 44]]
        text = "--"
        x = 713.250396106
        y = -58.2289680823
    [[NOTE 45]]
        text = "|"
        x = 709.007755419
        y = -18.4299782086
    [[NOTE 46]]
        text = "|"
        x = 687.307791313
        y = 243.97265479
    [[NOTE 47]]
        text = "184.18/27"
        x = 603.180807591
        y = 341.337228565
    [[NOTE 48]]
        text = "|"
        x = 687.307791313
        y = 223.97265479
    [[NOTE 49]]
        text = "Extended ACL"
        x = 1046.5489527
        y = -124.89801564
    [[NOTE 50]]
        text = "32.2/29"
        x = -410.735064737
        y = 109.163563648
    [[NOTE 51]]
        text = "VeriISPon"
        x = -281.497474683
        y = -291.327993849
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 52]]
        text = "165.15/27"
        x = 306.028570699
        y = 363.444876303
    [[NOTE 53]]
        text = "28.8/24"
        x = 316.095454429
        y = 153.556349186
    [[NOTE 54]]
        text = "11.14/24"
        x = 506.771644663
        y = 197.5067094
    [[NOTE 55]]
        text = "OSPF Totally NSSA Area 15"
        x = 170.284271247
        y = 506.873016279
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 56]]
        text = "--"
        x = 713.250396106
        y = -58.2289680819
    [[NOTE 57]]
        text = "10.11.0.0/16"
        x = -88.2792206136
        y = -277.457936164
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 58]]
        text = "11.11/24"
        x = 414.847763109
        y = -0.282179206261
    [[NOTE 59]]
        text = "158.15/24"
        x = 380.906637611
        y = 296.099638511
    [[NOTE 60]]
        text = "301"
        x = -121.251262658
        y = -98.2132034356
    [[NOTE 61]]
        text = "OSPF Totally Stubby Area 14"
        x = 580.284271247
        y = 407.458802717
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 62]]
        text = "Injects Default route"
        x = -286.350288425
        y = 186.298556597
    [[NOTE 63]]
        text = "|"
        x = 404.0
        y = 418.0
    [[NOTE 64]]
        text = "11.9/24"
        x = 562.653895656
        y = 36.2863632884
    [[NOTE 65]]
        text = "23.3/29"
        x = -318.811183182
        y = -115.30151519
    [[NOTE 66]]
        text = "|"
        x = 1044.59058327
        y = 39.778174593
    [[NOTE 67]]
        text = "AS 1"
        x = -258.325901807
        y = -6.72792206138
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 68]]
        text = "------"
        x = 678.115403158
        y = 19.1126983722
    [[NOTE 69]]
        text = "131.32/27*"
        x = 421.997041406
        y = 437.445742855
    [[NOTE 70]]
        text = "|"
        x = 1105.94592232
        y = -85.5010460204
    [[NOTE 71]]
        text = "11.8/24"
        x = 424.747258045
        y = 121.139177031
    [[NOTE 72]]
        text = "Multiple Areas OSPF over Frame-Relay, Gigabit and Fast Ethernet"
        x = -289.913780286
        y = -456.063058585
        font = "MS Shell Dlg 2,20,-1,5,75,0,1,0,0,0"
        color = "#0000ff"
    [[NOTE 73]]
        text = "|"
        x = 1064.93372902
        y = -104.086832458
    [[NOTE 74]]
        text = "35.5/29"
        x = 12.1147904128
        y = 322.50880144
    [[NOTE 75]]
        text = "18.1/24"
        x = 202.715728753
        y = -105.443650814
    [[NOTE 76]]
        text = "Try to filter Area 14 subnets into \nArea 13 with "area filter-list" command"
        x = 757.948880916
        y = 112.221825407
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 77]]
        text = "--"
        x = 713.250396106
        y = -78.2289680823
    [[NOTE 78]]
        text = "+ Summarized in AS 1"
        x = -535.14805281
        y = -233.568542495
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 79]]
        text = "35.3/29"
        x = -156.419264197
        y = 331.722004875
    [[NOTE 80]]
        text = "158.8/24"
        x = 409.190908859
        y = 184.577777211
    [[NOTE 81]]
        text = "67.16/28*"
        x = 708.997041406
        y = 261.27416998
    [[NOTE 82]]
        text = "|"
        x = 1044.59058327
        y = 19.7781745931
    [[NOTE 83]]
        text = "Injects Default route"
        x = -44.0050506337
        y = 440.200143575
    [[NOTE 84]]
        text = "10.10.34.4/24"
        x = -259.791847199
        y = 87.3797256766
    [[NOTE 85]]
        text = "163.16/27"
        x = -71.5664504542
        y = 421.829652613
    [[NOTE 86]]
        text = "|"
        x = 709.007755419
        y = 18.5700217914
    [[NOTE 87]]
        text = "Prefix list"
        x = 1091.8037867
        y = -106.915259582
    [[NOTE 88]]
        text = "|"
        x = 709.007755419
        y = -58.4299782083
    [[NOTE 89]]
        text = "|"
        x = 1064.93372902
        y = -84.0868324584
    [[NOTE 90]]
        text = "--"
        x = 408.171572875
        y = 377.585786438
    [[NOTE 91]]
        text = "|"
        x = 1064.93372902
        y = -84.0868324584
    [[NOTE 92]]
        text = "12.2/24"
        x = 184.970562748
        y = 86.1715728753
    [[NOTE 93]]
        text = "^"
        x = 1063.51951545
        y = -109.341666454
    [[NOTE 94]]
        text = "27.2/24"
        x = 228.414213562
        y = 116.656854249
    [[NOTE 95]]
        text = "36.0/26-"
        x = 726.875721062
        y = -18.6045096768
    [[NOTE 96]]
        text = "OSPF Backbone Area"
        x = 325.269119345
        y = -380.09754647
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 97]]
        text = "--"
        x = 693.0
        y = 263.0
    [[NOTE 98]]
        text = "184.14/27"
        x = 593.281312654
        y = 269.41334701
    [[NOTE 99]]
        text = "|"
        x = 1064.93372902
        y = -104.086832458
    [[NOTE 100]]
        text = "10.9.0.0/16"
        x = 355.109739779
        y = -354.399061661
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 101]]
        text = "MD5 Athentication"
        x = 195.896536344
        y = 329.737156777
    [[NOTE 102]]
        text = "* Filtered in Area 34 and on SW1/BR8"
        x = 819.730626847
        y = -72.1457069614
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 103]]
        text = "--"
        x = 713.250396106
        y = 1.7710319181
    [[NOTE 104]]
        text = "35.128/25*"
        x = 727.582827844
        y = -37.8974028957
    [[NOTE 105]]
        text = "179.17/27"
        x = 785.898628384
        y = 65.109739779
    [[NOTE 106]]
        text = "64.0/23*"
        x = 708.997041406
        y = 204.27416998
    [[NOTE 107]]
        text = "|"
        x = 404.0
        y = 398.0
    [[NOTE 108]]
        text = "--"
        x = 713.250396106
        y = -78.2289680823
    [[NOTE 109]]
        text = "AS 1"
        x = 249.376767085
        y = 459.761543394
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 110]]
        text = "v"
        x = 1044.59058327
        y = 49.6776695296
    [[NOTE 111]]
        text = "eBGP"
        x = -91.3868683517
        y = 397.913780286
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 112]]
        text = "eBGP"
        x = -310.960461481
        y = 91.6467529813
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 113]]
        text = "11.1/24"
        x = 235.242640687
        y = -135.845671067
    [[NOTE 114]]
        text = "10.10.34.3/24"
        x = -255.407070888
        y = -84.514718626
    [[NOTE 115]]
        text = "* Summarized in Areas 0/5"
        x = 819.730626847
        y = -49.7193000902
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 116]]
        text = "eBGP"
        x = -53.2031021677
        y = 334.475180106
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 117]]
        text = "78.7/24"
        x = 368.421356237
        y = -100.119841048
    [[NOTE 118]]
        text = "-- Filtered in Area 5 and on BR7"
        x = 814.073772597
        y = -1.43502884254
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 119]]
        text = "13.1/29"
        x = 110.0
        y = -141.0
    [[NOTE 120]]
        text = "|"
        x = 687.307791313
        y = 203.97265479
    [[NOTE 121]]
        text = "Optical Fiber\nNetwork"
        x = -423.989898732
        y = 203.546247918
        font = "MS Shell Dlg 2,12,-1,5,75,1,0,0,0,0"
        color = "#55aa00"
    [[NOTE 122]]
        text = "103"
        x = 62.0
        y = -91.0
    [[NOTE 123]]
        text = "Injects Default route"
        x = 153.470129473
        y = 298.423448278
    [[NOTE 124]]
        text = "|"
        x = 687.307791313
        y = 260.97265479
    [[NOTE 125]]
        text = "--"
        x = 408.171572875
        y = 437.585786438
    [[NOTE 126]]
        text = "15.5/29"
        x = 101.882250994
        y = 240.544155878
    [[NOTE 127]]
        text = "|"
        x = 404.0
        y = 358.0
    [[NOTE 128]]
        text = "67.0/28*"
        x = 708.997041406
        y = 243.27416998
    [[NOTE 129]]
        text = "Route Map"
        x = 1016.30631202
        y = 63.4177848998
    [[NOTE 130]]
        text = "OSPF Area 34"
        x = -96.2497833619
        y = -304.156420974
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0055ff"
    [[NOTE 131]]
        text = "--"
        x = 693.0
        y = 223.0
    [[NOTE 132]]
        text = "MD5 Athentication"
        x = 26.0416305605
        y = -291.794805791
    [[NOTE 133]]
        text = "104"
        x = 62.0
        y = -74.0
    [[NOTE 134]]
        text = "- Filtered in Areas 34/5 and on BR7"
        x = 821.144840409
        y = -22.4472221513
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 135]]
        text = "203"
        x = 83.0
        y = 42.0
    [[NOTE 136]]
        text = "35.0/25*"
        x = 727.582827844
        y = -57.8974028953
    [[NOTE 137]]
        text = "401"
        x = -145.514718626
        y = 49.7609306503
    [[NOTE 138]]
        text = "402"
        x = -109.159379566
        y = 80.4888527117
    [[NOTE 139]]
        text = "--"
        x = 713.250396106
        y = -38.2289680819
    [[NOTE 140]]
        text = "|"
        x = 709.007755419
        y = -38.4299782086
    [[NOTE 141]]
        text = "128.0/23*"
        x = 421.997041406
        y = 378.27416998
    [[NOTE 142]]
        text = "13.1/29"
        x = -508.31580054
        y = 259.67323164
    [[NOTE 143]]
        text = "--"
        x = 713.250396106
        y = -98.2289680823
    [[NOTE 144]]
        text = "|"
        x = 404.0
        y = 438.0
    [[NOTE 145]]
        text = "|"
        x = 709.007755419
        y = -1.4299782086
    [[NOTE 146]]
        text = "13.4/29"
        x = -191.703535444
        y = 123.308657865
    [[NOTE 147]]
        text = "MD5 Athentication"
        x = 845.457069612
        y = -132.356205611
    [[NOTE 148]]
        text = "24.4/29"
        x = -317.154328933
        y = 137.825468532
    [[NOTE 149]]
        text = "130.0/24*"
        x = 421.997041406
        y = 398.27416998
    [[NOTE 150]]
        text = "--"
        x = 408.171572875
        y = 417.585786438
    [[NOTE 151]]
        text = "105"
        x = 64.0
        y = -55.0
    [[NOTE 152]]
        text = "16.2/29"
        x = 107.0
        y = 137.0
    [[NOTE 153]]
        text = "131.0/27*"
        x = 421.997041406
        y = 418.27416998
    [[NOTE 154]]
        text = "13.3/29"
        x = -195.774603256
        y = -139.142135624
    [[NOTE 155]]
        text = "--"
        x = 713.250396106
        y = -18.2289680819
    [[NOTE 156]]
        text = "|"
        x = 709.007755419
        y = -38.4299782086
    [[NOTE 157]]
        text = "^"
        x = 1104.53170876
        y = -92.5721138324
    [[NOTE 158]]
        text = "66.0/24*"
        x = 708.997041406
        y = 223.27416998
    [[NOTE 159]]
        text = "12.1/24"
        x = 180.556349186
        y = -76.4436508139
    [[NOTE 160]]
        text = "Filtering, Summarization and Default Routes"
        x = -166.87720036
        y = -422.322943214
        font = "MS Shell Dlg 2,20,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 161]]
        text = "502"
        x = 58.7573593129
        y = 159.585786438
    [[NOTE 162]]
        text = "|"
        x = 709.007755419
        y = 1.5700217914
    [[NOTE 163]]
        text = "24.2/29"
        x = -358.409162929
        y = 70.9726547893
    [[NOTE 164]]
        text = "17.7/24"
        x = 307.367532368
        y = -140.088311755
    [[NOTE 165]]
        text = "13.3/29"
        x = -286.284271248
        y = 354.224530192
    [[NOTE 166]]
        text = "37.12.0.0/16 +"
        x = -300.381817718
        y = -236.261976671
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 167]]
        text = "12.2/30"
        x = -475.788888606
        y = 87.5411972842
    [[NOTE 168]]
        text = "10.12.0.0/16"
        x = 33.8406204335
        y = -313.428498912
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
    [[NOTE 169]]
        text = "32.0/23*"
        x = 725.4615075
        y = -97.8974028953
    [[NOTE 170]]
        text = "179.9/27"
        x = 675.104689145
        y = 39.1147904131
    [[NOTE 171]]
        text = "28.2/24"
        x = 227.0
        y = 158.0
    [[NOTE 172]]
        text = "16.5/29"
        x = 102.828427125
        y = 259.213203435
    [[NOTE 173]]
        text = "78.8/24"
        x = 368.421356237
        y = 86.3553390584
    [[SHAPE 1]]
        type = ellipse
        x = 654.585786438
        y = -156.0
        width = 513.414213562
        height = 358.0
        fill_color = "#00aaff"
        border_style = 2
    [[SHAPE 2]]
        type = ellipse
        x = 588.0
        y = 154.0
        width = 230.0
        height = 258.0
        fill_color = "#00aaff"
        border_style = 2
    [[SHAPE 3]]
        type = ellipse
        x = -266.0
        y = -279.0
        width = 464.0
        height = 588.0
        fill_color = "#00aaff"
        border_style = 2
    [[SHAPE 4]]
        type = ellipse
        x = 168.291413923
        y = -350.724963468
        width = 483.661038331
        height = 688.722004875
        fill_color = "#00ffff"
        border_style = 2
        z = -1.0
    [[SHAPE 5]]
        type = ellipse
        x = -561.442784262
        y = -240.585786438
        width = 671.751442127
        height = 790.585786438
        fill_color = "#ffff7f"
        border_style = 2
        z = -2.0
    [[SHAPE 6]]
        type = ellipse
        x = -11.313708499
        y = -318.198051534
        width = 200.0
        height = 725.491557497
        fill_color = "#00aaff"
        border_style = 2
        z = -3.0
    [[SHAPE 7]]
        type = ellipse
        x = 24.0416305603
        y = 329.511760033
        width = 505.95836944
        height = 176.488239967
        fill_color = "#00aaff"
        border_style = 2
        z = -4.0