aboutsummaryrefslogtreecommitdiffstats
path: root/CCNP/ROUTE/Redistribution/Jean-Christophe_Manciot/0.8.x/OSPF - EIGRP - RIP/topology.net
blob: ff289fd68a75f5d6c8392191b61b2104aa3001c2 (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
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.M2.image
        ram = 512
        idlepc = 0x6062d534
        sparsemem = True
        ghostios = True
    [[ROUTER R4]]
        console = 2007
        aux = 2107
        cnfg = configs\R4.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = R8 g0/0
        slot1 = PA-8T
        s1/0 = RD1 s1/3
        s1/1 = RD5 s1/1
        s1/2 = R10 s1/1
        slot2 = PA-2FE-TX
        slot3 = PA-2FE-TX
        slot4 = PA-2FE-TX
        slot5 = PA-2FE-TX
        x = 107.0
        y = 107.0
        z = 1.0
        hx = 20.5
        hy = -16.5147186258
    [[ROUTER RD1]]
        console = 2004
        aux = 2104
        cnfg = configs\RD1.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = R3 g0/0
        slot1 = PA-8T
        s1/0 = R7 s1/0
        s1/1 = R2 s1/0
        s1/2 = R8 s1/0
        s1/3 = R4 s1/0
        x = -128.0
        y = -30.0
        z = 1.0
[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.M2.image
        ram = 512
        idlepc = 0x6062d534
        sparsemem = True
        ghostios = True
    [[ROUTER RD5]]
        console = 2006
        aux = 2106
        cnfg = configs\RD5.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = R15 g0/0
        slot1 = PA-8T
        s1/0 = R3 s1/0
        s1/1 = R4 s1/1
        s1/2 = R6 s1/0
        x = 56.5979797464
        y = 281.518289963
        z = 1.0
        hx = 66.9116882454
        hy = 10.3553390593
    [[ROUTER R6]]
        console = 2008
        aux = 2108
        cnfg = configs\R6.cfg
        slot0 = C7200-IO-GE-E
        slot1 = PA-8T
        s1/0 = RD5 s1/2
        s1/1 = RD9 s1/1
        x = -126.338095117
        y = 375.394011027
        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.M2.image
        ram = 512
        idlepc = 0x6062d534
        sparsemem = True
        ghostios = True
    [[ROUTER R3]]
        console = 2003
        aux = 2103
        cnfg = configs\R3.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = RD1 g0/0
        slot1 = PA-8T
        s1/0 = RD5 s1/0
        s1/1 = R15 s1/0
        x = -5.50252531694
        y = 107.455844123
        z = 1.0
        hx = 20.5
        hy = -22.1715728753
    [[ROUTER R8]]
        console = 2000
        aux = 2100
        cnfg = configs\R8.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = R4 g0/0
        slot1 = PA-8T
        s1/0 = RD1 s1/2
        s1/1 = R10 s1/0
        s1/2 = RD14 s1/1
        x = 107.0
        y = -181.0
        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.M2.image
        ram = 512
        idlepc = 0x6062d534
        sparsemem = True
        ghostios = True
    [[ROUTER R7]]
        console = 2001
        aux = 2101
        cnfg = configs\R7.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = R2 g0/0
        slot1 = PA-8T
        s1/0 = RD1 s1/0
        s1/1 = RD11 s1/1
        s1/2 = RD14 s1/0
        x = -351.0
        y = -181.0
        z = 1.0
    [[ROUTER R2]]
        console = 2002
        aux = 2102
        cnfg = configs\R2.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = R7 g0/0
        slot1 = PA-8T
        s1/0 = RD1 s1/1
        s1/1 = RD9 s1/0
        s1/2 = RD11 s1/0
        x = -272.175765581
        y = 55.6354545675
        z = 1.0
        hx = 5.28873058522
        hy = 40.3824712704
[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.M2.image
        ram = 512
        idlepc = 0x6062d534
        sparsemem = True
        ghostios = True
    [[ROUTER RD14]]
        console = 2014
        aux = 2114
        cnfg = configs\RD14.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = R13 g0/0
        slot1 = PA-8T
        s1/0 = R7 s1/2
        s1/1 = R8 s1/2
        x = -124.757359313
        y = -102.100505063
        z = 1.0
    [[ROUTER R12]]
        console = 2013
        aux = 2113
        cnfg = configs\R12.cfg
        slot0 = C7200-IO-2FE
        f0/0 = RD11 f0/0
        slot1 = PA-2FE-TX
        f1/0 = RD13 f1/0
        slot2 = PA-2FE-TX
        slot3 = PA-2FE-TX
        x = -609.999133448
        y = -24.8284271247
        z = 1.0
[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.M2.image
        ram = 512
        idlepc = 0x6062d534
        sparsemem = True
        ghostios = True
    [[ROUTER R13]]
        console = 2015
        aux = 2115
        cnfg = configs\R13.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = RD14 g0/0
        slot1 = PA-GE
        x = -125.0
        y = -227.0
        z = 1.0
[127.0.0.1:7204]
    workingdir = C:\Users\ActionMystique\AppData\Local\GNS3
    udp = 10400
    [[7200]]
        image = C:\Users\ActionMystique\Google Drive\Missions\Certifications\Cisco\IOS\Binaries\c7200-adventerprisek9-mz.152-4.M2.image
        ram = 512
        idlepc = 0x6062d534
        sparsemem = True
        ghostios = True
    [[ROUTER RD9]]
        console = 2009
        aux = 2109
        cnfg = configs\RD9.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = RD13 g0/0
        slot1 = PA-8T
        s1/0 = R2 s1/1
        s1/1 = R6 s1/1
        x = -266.345237791
        y = 279.227488785
        z = 1.0
        hx = 17.4306459324
        hy = 37.9484210271
    [[ROUTER R9]]
        console = 2010
        aux = 2110
        cnfg = configs\R9.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = R10 g0/0
        x = 426.619407771
        y = -48.8700576851
        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.M2.image
        ram = 512
        idlepc = 0x6062d534
        sparsemem = True
        ghostios = True
    [[ROUTER RD11]]
        console = 2012
        aux = 2112
        cnfg = configs\RD11.cfg
        slot0 = C7200-IO-2FE
        f0/0 = R12 f0/0
        slot1 = PA-8T
        s1/0 = R2 s1/2
        s1/1 = R7 s1/1
        slot2 = PA-GE
        g2/0 = RD13 g2/0
        x = -454.534235808
        y = -76.3645454325
        z = 1.0
        hx = 9.31946420582
        hy = -21.4639512255
    [[ROUTER R10]]
        console = 2011
        aux = 2111
        cnfg = configs\R10.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = R9 g0/0
        slot1 = PA-8T
        s1/0 = R8 s1/1
        s1/1 = R4 s1/2
        x = 273.884343035
        y = -48.8700576851
        z = 1.0
[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.M2.image
        ram = 512
        idlepc = 0x6062d534
        sparsemem = True
        ghostios = True
    [[ROUTER R15]]
        console = 2017
        aux = 2517
        cnfg = configs\R15.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = RD5 g0/0
        slot1 = PA-8T
        s1/0 = R3 s1/1
        x = -100.882250994
        y = 209.931024229
        z = 1.0
        hx = 19.3284271247
        hy = 41.4680374315
[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.M2.image
        ram = 512
        idlepc = 0x6062d534
        sparsemem = True
        ghostios = True
    [[ROUTER RD13]]
        console = 2018
        aux = 2518
        cnfg = configs\RD13.cfg
        slot0 = C7200-IO-GE-E
        g0/0 = RD9 g0/0
        slot1 = PA-2FE-TX
        f1/0 = R12 f1/0
        slot2 = PA-GE
        g2/0 = RD11 g2/0
        x = -450.748612271
        y = 56.6855262839
        z = 1.0
        hx = 7.91612440536
        hy = 40.809712892
[GNS3-DATA]
    configs = configs
    m11 = 0.988514020354
    m22 = 0.988514020354
    [[NOTE 1]]
        text = "14.1/29"
        x = -63.0
        y = -10.0
    [[NOTE 2]]
        text = "Default metric on RD1/RD5/RD14 : 1000 1500 255 1 1500"
        x = 474.019466555
        y = 153.556723274
    [[NOTE 3]]
        text = "172.30.0.0/16"
        x = -299.27207794
        y = -250.703535443
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#ff5500"
    [[NOTE 4]]
        text = "1 Gbits/s"
        x = 349.310749906
        y = -29.9756133824
        color = "#ff0000"
    [[NOTE 5]]
        text = "100 Mbits/s"
        x = -524.558205049
        y = 37.9937667737
        color = "#ff0000"
    [[NOTE 6]]
        text = "Redistribution, Filtering, PBR and SLA"
        x = -265.872149726
        y = -388.180807591
        font = "MS Shell Dlg 2,20,-1,5,75,0,0,0,0,0"
    [[NOTE 7]]
        text = "|"
        x = 324.521861301
        y = 123.367532369
    [[NOTE 8]]
        text = "98.32/27 ***"
        x = 337.997041407
        y = 157.71277016
    [[NOTE 9]]
        text = "TAG 26"
        x = -602.497183526
        y = 110.74779131
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
        color = "#55ff00"
    [[NOTE 10]]
        text = "|"
        x = -262.0
        y = -180.0
    [[NOTE 11]]
        text = "|"
        x = 324.521861301
        y = 142.965512115
    [[NOTE 12]]
        text = "56.6/29"
        x = -61.1076477383
        y = 375.009234716
    [[NOTE 13]]
        text = "-"
        x = -640.638743756
        y = 23.3553390592
    [[NOTE 14]]
        text = "35.3/29"
        x = 22.3309524417
        y = 146.509667992
    [[NOTE 15]]
        text = "|"
        x = -637.143361113
        y = 23.4644660946
    [[NOTE 16]]
        text = "172.16.0.0/16"
        x = 256.513852073
        y = 184.67323164
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 17]]
        text = "*** Redistributed in EIGRP only on RD14 with metric 10000 4 ..."
        x = 457.441079046
        y = 110.748576437
    [[NOTE 18]]
        text = "13.1/29"
        x = -68.1787155501
        y = 23.2720779387
    [[NOTE 19]]
        text = "IPv4 Routing Protocols : EIGRP, OSPF and RIP"
        x = -329.511760033
        y = -422.121933088
        font = "MS Shell Dlg 2,20,-1,5,75,0,1,0,0,0"
    [[NOTE 20]]
        text = "|"
        x = 72.7918471984
        y = 119.727922061
    [[NOTE 21]]
        text = "*** 98.32/27"
        x = -730.109306504
        y = 23.9766594034
    [[NOTE 22]]
        text = "Strange behaviours when area 1 is changed to normal:\n- RD5 and R15 cannot see R10 as border router \n- R9 cannot see R3 or R4 as border routers\n- Any suggestions?"
        x = 229.168326585
        y = 249.514482448
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#ff0000"
    [[NOTE 23]]
        text = "-"
        x = -640.638743756
        y = -4.6238456608
    [[NOTE 24]]
        text = "27.7/28"
        x = -328.079128559
        y = -113.786796564
    [[NOTE 25]]
        text = "172.16.0.0/16"
        x = -143.708586079
        y = -303.029437251
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 26]]
        text = "108.8/28"
        x = 175.066017178
        y = -160.166522241
    [[NOTE 27]]
        text = "69.6/28"
        x = -186.972654789
        y = 380.465078839
    [[NOTE 28]]
        text = "*** Redistributed in OSPF only on RD5 with metric 100 as N1"
        x = -928.779843505
        y = 190.70217781
    [[NOTE 29]]
        text = "-"
        x = 332.693740548
        y = 158.91883092
    [[NOTE 30]]
        text = "18.1/28"
        x = -58.7867965644
        y = -40.3725830021
    [[NOTE 31]]
        text = "8 Mbits/s"
        x = -4.24264068712
        y = 33.8650070511
        color = "#ff0000"
    [[NOTE 32]]
        text = "-"
        x = 331.633080377
        y = 145.282791951
    [[NOTE 33]]
        text = "48.8/28"
        x = 113.887301628
        y = -119.786796564
    [[NOTE 34]]
        text = "Area 2"
        x = 417.264068712
        y = 31.9137802871
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 35]]
        text = "|"
        x = -186.451271008
        y = 63.7030948906
    [[NOTE 36]]
        text = "8.8/24"
        x = 56.3431457505
        y = -188.171572875
    [[NOTE 37]]
        text = "* 96.0/25"
        x = -706.286976034
        y = -51.211724139
    [[NOTE 38]]
        text = "56.5/29"
        x = 49.2010101268
        y = 325.71277016
    [[NOTE 39]]
        text = "OSPF"
        x = 80.5979797464
        y = -290.242640687
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 40]]
        text = "123.13/28"
        x = -529.928617855
        y = 66.5390450999
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#00ff00"
    [[NOTE 41]]
        text = "* Not redistributed in OSPF"
        x = -904.570810588
        y = 153.122015875
    [[NOTE 42]]
        text = "1 Gbits/s"
        x = -124.450793489
        y = -164.526911935
        color = "#ff0000"
    [[NOTE 43]]
        text = "-"
        x = -640.992297146
        y = 9.36574669961
    [[NOTE 44]]
        text = "8 Mbits/s"
        x = 193.747258045
        y = -115.639610307
        color = "#ff0000"
    [[NOTE 45]]
        text = "OSPF"
        x = 237.57568517
        y = 205.945309579
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 46]]
        text = "172.16.0.0/16"
        x = 58.5239533405
        y = -257.573593128
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 47]]
        text = "-----"
        x = -289.0
        y = -179.0
    [[NOTE 48]]
        text = "-"
        x = -640.992297146
        y = -39.3205448014
    [[NOTE 49]]
        text = "2.2/24"
        x = -213.965989634
        y = 75.7030948906
    [[NOTE 50]]
        text = "EIGRP"
        x = 234.844804516
        y = 342.124025129
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 51]]
        text = "8 Mbits/s"
        x = -214.960461481
        y = 342.364573775
        color = "#ff0000"
    [[NOTE 52]]
        text = "Resolve "routing loops" due to these multiple redistribution points:\n   - only with TAGs\n   - then only with "distance" commands\nWhich method works completely ?"
        x = -919.431717824
        y = 298.635872933
    [[NOTE 53]]
        text = "96.0/25 *"
        x = 337.997041407
        y = 81.1370849898
    [[NOTE 54]]
        text = "* 96.128/25"
        x = -723.286976034
        y = -40.270598642
    [[NOTE 55]]
        text = "134.3/28"
        x = -125.857864376
        y = -143.27207794
    [[NOTE 56]]
        text = "1 Gbits/s"
        x = -74.9533188057
        y = 53.0609665436
        color = "#ff0000"
    [[NOTE 57]]
        text = "Totally Stubby\n      Area 3"
        x = 198.866154787
        y = 113.283221304
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 58]]
        text = "*** 98.0/27"
        x = -722.630121784
        y = 8.71572875265
    [[NOTE 59]]
        text = "|"
        x = 71.0
        y = -174.0
    [[NOTE 60]]
        text = "45.5/29"
        x = 101.526911935
        y = 259.043722601
    [[NOTE 61]]
        text = "SLA icmp-echo\nwith 172.16.98.4"
        x = -462.55669271
        y = -294.165032494
    [[NOTE 62]]
        text = "AS 1"
        x = -195.230447378
        y = -196.774603256
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#ff5500"
    [[NOTE 63]]
        text = "98.0/27 ***"
        x = 337.997041407
        y = 145.185858225
    [[NOTE 64]]
        text = "4.4/24"
        x = 57.377633636
        y = 112.201010127
    [[NOTE 65]]
        text = "172.16.0.0/16"
        x = 407.834703246
        y = -114.939033456
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 66]]
        text = "35.5/29"
        x = 39.3015151902
        y = 248.132034356
    [[NOTE 67]]
        text = "69.9/28"
        x = -203.943217538
        y = 296.825468532
    [[NOTE 68]]
        text = "** 97.128/26"
        x = -731.286976034
        y = -5.10407640079
    [[NOTE 69]]
        text = "97.0/26 **"
        x = 339.411254969
        y = 107.605122421
    [[NOTE 70]]
        text = "12.1/30"
        x = -155.585786438
        y = 23.0294372516
    [[NOTE 71]]
        text = "134.13/28"
        x = -123.029437251
        y = -187.3137085
    [[NOTE 72]]
        text = "97.64/26 **"
        x = 338.350594798
        y = 120.132034356
    [[NOTE 73]]
        text = "TAG 30"
        x = 134.285471678
        y = 358.30762373
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
        color = "#ff5500"
    [[NOTE 74]]
        text = "NSSA\nArea 1"
        x = 154.220346111
        y = 180.607214463
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 75]]
        text = "|"
        x = -637.143361113
        y = 5.28069991064
    [[NOTE 76]]
        text = "TAG 16"
        x = 265.148956696
        y = 164.77473423
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 77]]
        text = "48.4/28"
        x = 103.573593129
        y = 57.686291501
    [[NOTE 78]]
        text = "7.7/24"
        x = -291.0
        y = -197.0
    [[NOTE 79]]
        text = "Stub Area 4"
        x = -145.46385335
        y = -272.086219713
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 80]]
        text = "172.16.0.0/16"
        x = 134.891485709
        y = 221.241774135
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 81]]
        text = "112.2/28"
        x = -348.865090373
        y = 56.1181947239
    [[NOTE 82]]
        text = "29.2/28"
        x = -260.199545002
        y = 123.445719677
    [[NOTE 83]]
        text = "TAG 16"
        x = -133.429102782
        y = -290.221625099
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 84]]
        text = "143.15/27"
        x = -121.91883092
        y = 186.717820794
    [[NOTE 85]]
        text = "18.8/28"
        x = 52.936074863
        y = -128.254833996
    [[NOTE 86]]
        text = "* Not redistributed in EIGRP"
        x = 470.169001107
        y = 77.0084610669
    [[NOTE 87]]
        text = "17.1/28"
        x = -187.627416998
        y = -27.6446609407
    [[NOTE 88]]
        text = "OSPF"
        x = -123.402020254
        y = -338.242640687
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 89]]
        text = "145.15/27"
        x = -37.066017178
        y = 225.102597105
    [[NOTE 90]]
        text = "8 Mbits/s"
        x = 199.404112294
        y = 45.3797256769
        color = "#ff0000"
    [[NOTE 91]]
        text = "1 Gbits/s"
        x = -36.7695526217
        y = 256.908729652
        color = "#ff0000"
    [[NOTE 92]]
        text = "|"
        x = 324.521861301
        y = 84.781745931
    [[NOTE 93]]
        text = "** 97.0/26"
        x = -714.872762472
        y = -28.7436867078
    [[NOTE 94]]
        text = "|"
        x = 324.521861301
        y = 161.149278299
    [[NOTE 95]]
        text = "-----"
        x = 74.0
        y = -173.0
    [[NOTE 96]]
        text = "** 97.64/26"
        x = -723.286976033
        y = -17.2167747728
    [[NOTE 97]]
        text = "TAGS 96-97-98"
        x = -745.561776769
        y = 39.2445377426
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
        color = "#55ff00"
    [[NOTE 98]]
        text = "TAG 16"
        x = 147.801101621
        y = 232.553236731
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 99]]
        text = "104.10/28"
        x = 204.764501988
        y = -17.7329726947
    [[NOTE 100]]
        text = "-"
        x = 331.986633767
        y = 130.9396462
    [[NOTE 101]]
        text = "192.26.64..0/18"
        x = -622.52622658
        y = 136.47037504
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#00ff00"
    [[NOTE 102]]
        text = "1 Gbits/s"
        x = -352.172041771
        y = 178.480240129
        color = "#ff0000"
    [[NOTE 103]]
        text = "** Redistributed in EIGRP only on RD1 with metric 1000 44 ..."
        x = 464.512146858
        y = 95.3932373769
    [[NOTE 104]]
        text = "109.10/28"
        x = 322.144227665
        y = -61.7746032551
    [[NOTE 105]]
        text = "117.7/28"
        x = -389.071067812
        y = -138.029437252
    [[NOTE 106]]
        text = "AS 2"
        x = -108.762409947
        y = 297.815367264
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#ff5500"
    [[NOTE 107]]
        text = "121.12/28"
        x = -537.081847517
        y = -20.7884428868
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#00ff00"
    [[NOTE 108]]
        text = "172.30.0.0/16"
        x = 126.406204334
        y = 344.479364189
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#ff5500"
    [[NOTE 109]]
        text = "---"
        x = -632.153462381
        y = -13.4142135624
    [[NOTE 110]]
        text = "112.11/28"
        x = -384.516212094
        y = -54.5152888563
    [[NOTE 111]]
        text = "-"
        x = 330.925973595
        y = 85.9898987322
    [[NOTE 112]]
        text = "27.2/28"
        x = -255.701972443
        y = 12.2835429968
    [[NOTE 113]]
        text = "-"
        x = -640.992297146
        y = -15.077904114
    [[NOTE 114]]
        text = "-"
        x = 331.633080377
        y = 108.111219076
    [[NOTE 115]]
        text = "12.2/30"
        x = -210.764979507
        y = 41.4310169521
    [[NOTE 116]]
        text = "Filtered in Area 0"
        x = -107.48023074
        y = 143.563491861
    [[NOTE 117]]
        text = "139.13/28"
        x = -384.516212094
        y = 101.454160833
    [[NOTE 118]]
        text = "PBR for 172.16.109.0\non S1/1  towards R2"
        x = -546.807668637
        y = -184.868859322
    [[NOTE 119]]
        text = "-"
        x = -640.992297146
        y = -27.4522727848
    [[NOTE 120]]
        text = "108.10/28"
        x = 204.764501988
        y = -51.4730880648
    [[NOTE 121]]
        text = "Backbone"
        x = -36.3969696196
        y = -196.017243943
        font = "MS Shell Dlg 2,12,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 122]]
        text = "3.3/24"
        x = -61.4163056032
        y = 130.384776311
    [[NOTE 123]]
        text = "139.9/28"
        x = -337.304896323
        y = 257.423610523
    [[NOTE 124]]
        text = "143.3/27"
        x = -51.2081528017
        y = 162.475180107
    [[NOTE 125]]
        text = "-"
        x = 331.279526986
        y = 95.8893936688
    [[NOTE 126]]
        text = "123.12/28"
        x = -610.044790071
        y = 16.4373944106
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#00ff00"
    [[NOTE 127]]
        text = "TAG 30"
        x = -286.324432458
        y = -232.57818942
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
        color = "#ff5500"
    [[NOTE 128]]
        text = "-"
        x = 331.986633767
        y = 121.192694528
    [[NOTE 129]]
        text = "29.9/28"
        x = -248.425730141
        y = 252.635946641
    [[NOTE 130]]
        text = "-----"
        x = -213.451271008
        y = 66.5643867555
    [[NOTE 131]]
        text = "38.8/28"
        x = 38.1909088588
        y = -154.585786437
    [[NOTE 132]]
        text = "117.11/28"
        x = -399.003427489
        y = -85.0818973303
    [[NOTE 133]]
        text = "121.11/28"
        x = -529.270293313
        y = -73.2824900811
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#00ff00"
    [[NOTE 134]]
        text = "100 Mbits/s"
        x = -548.879185901
        y = -52.1659700237
        color = "#ff0000"
    [[NOTE 135]]
        text = "TAG 16"
        x = 420.938350503
        y = -103.536806255
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 136]]
        text = "8 Mbits/s"
        x = -226.653144228
        y = 171.932100322
        color = "#ff0000"
    [[NOTE 137]]
        text = "14.4/29"
        x = 62.8650070511
        y = 81.7228714274
    [[NOTE 138]]
        text = "Default OSPF metric on RD1/RD14/RD5 : 500"
        x = -920.845931385
        y = 268.871658643
    [[NOTE 139]]
        text = "|"
        x = -637.143361113
        y = -52.9030662734
    [[NOTE 140]]
        text = "--"
        x = -14.8893936687
        y = 128.012193309
    [[NOTE 141]]
        text = "SLA icmp-echo\nwith 172.16.109.9"
        x = -624.752717431
        y = -120.014739691
    [[NOTE 142]]
        text = "97.128/26 **"
        x = 337.997041407
        y = 131.244732728
    [[NOTE 143]]
        text = "EIGRP"
        x = -287.0
        y = -287.0
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 144]]
        text = "1 Gbits/s"
        x = -303.530080068
        y = -49.0215061818
        color = "#ff0000"
    [[NOTE 145]]
        text = "Filtering on RD1/RD5 /RD14 : redistribute route-map with a match tag"
        x = -919.263048563
        y = 229.23060639
    [[NOTE 146]]
        text = "38.3/28"
        x = -67.8751083191
        y = -117.615223689
    [[NOTE 147]]
        text = "-"
        x = -640.992297146
        y = -50.6342533004
    [[NOTE 148]]
        text = "|"
        x = -637.143361113
        y = -32.9030662734
    [[NOTE 149]]
        text = "147.3/28"
        x = -181.012193309
        y = -116.000000001
    [[NOTE 150]]
        text = "109.9/28"
        x = 411.239682095
        y = -13.8923522612
    [[NOTE 151]]
        text = "145.5/27"
        x = -8.78174593048
        y = 283.286363289
    [[NOTE 152]]
        text = "** Redistributed in OSPF only on RD1 with metric 1000 as E1"
        x = -917.069704984
        y = 172.518411625
    [[NOTE 153]]
        text = "104.4/28"
        x = 158.09545443
        y = 91.7645019883
    [[NOTE 154]]
        text = "Filtering on RD1/RD5/RD14 : redistribute route-map"
        x = 473.522565741
        y = 132.30673648
    [[NOTE 155]]
        text = "OSPF"
        x = 428.49451609
        y = -149.223304703
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 156]]
        text = "---------------------------"
        x = 166.87720036
        y = 123.563491861
    [[NOTE 157]]
        text = "1 Gbits/s"
        x = -453.747902974
        y = -0.350501424956
        color = "#ff0000"
    [[NOTE 158]]
        text = "113.11/28"
        x = -453.446058894
        y = -16.0276097297
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#00ff00"
    [[NOTE 159]]
        text = "RIP"
        x = -789.997862369
        y = -20.2114592365
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
    [[NOTE 160]]
        text = "113.13/28"
        x = -452.015412962
        y = 19.7675816352
        font = "MS Shell Dlg 2,10,-1,5,75,0,0,0,0,0"
        color = "#00ff00"
    [[NOTE 161]]
        text = "96.128/25 *"
        x = 338.350594797
        y = 95.4317638773
    [[NOTE 162]]
        text = "17.7/28"
        x = -305.012193309
        y = -137.071067812
    [[NOTE 163]]
        text = "1 Gbits/s"
        x = 107.48023074
        y = -21.2893218814
        color = "#ff0000"
    [[NOTE 164]]
        text = "|"
        x = 324.521861301
        y = 104.781745931
    [[NOTE 165]]
        text = "TAG 16"
        x = 69.9064047182
        y = -245.395916704
        font = "MS Shell Dlg 2,14,-1,5,75,0,0,0,0,0"
        color = "#0000ff"
    [[NOTE 166]]
        text = "147.7/28"
        x = -282.183766184
        y = -165.313708499
    [[NOTE 167]]
        text = "45.4/29"
        x = 100.112698372
        y = 147.5218613
    [[NOTE 168]]
        text = "|"
        x = -637.143361113
        y = -14.3172798354
    [[NOTE 169]]
        text = "Route 172.16.98.0/27\nthrough RD1 when RTT \nis below 100 ms"
        x = -532.658343399
        y = -250.03142557
    [[NOTE 170]]
        text = "-----"
        x = 76.0883117542
        y = 121.154328932
    [[NOTE 171]]
        text = "Default EIGRP metric on RD11/RD13 : 100000 100 255 1 1500"
        x = -920.845931385
        y = 249.286289581
    [[NOTE 172]]
        text = "13.3/29"
        x = -68.1787155501
        y = 85.6984848098
    [[SHAPE 1]]
        type = ellipse
        x = -745.290547371
        y = -121.604904257
        width = 343.251875404
        height = 288.990478352
        fill_color = "#00aa00"
        border_color = "#0055ff"
        border_style = 2
    [[SHAPE 2]]
        type = ellipse
        x = -130.107647738
        y = 131.521861301
        width = 366.281312654
        height = 178.190908859
        fill_color = "#00aaff"
        border_color = "#0055ff"
        border_style = 2
        z = -1.0
    [[SHAPE 3]]
        type = ellipse
        x = -92.6568542495
        y = -260.242640687
        width = 399.0
        height = 400.956890143
        fill_color = "#00ffff"
        border_color = "#0055ff"
        border_style = 2
        z = -2.0
    [[SHAPE 4]]
        type = ellipse
        x = -414.364573775
        y = 289.913780286
        width = 648.604255869
        height = 138.592929113
        fill_color = "#ffaa00"
        border_color = "#0055ff"
        border_style = 2
        z = -2.0
    [[SHAPE 5]]
        type = ellipse
        x = 305.269119346
        y = -117.580735803
        width = 299.813275223
        height = 178.190908859
        fill_color = "#00aaff"
        border_color = "#0055ff"
        border_style = 2
        z = -2.0
    [[SHAPE 6]]
        type = ellipse
        x = -408.585786438
        y = -257.0
        width = 322.0
        height = 561.05591591
        fill_color = "#ffff00"
        border_color = "#0055ff"
        border_style = 2
        z = -2.0
    [[SHAPE 7]]
        type = ellipse
        x = -144.730880654
        y = -304.0
        width = 102.730880654
        height = 204.610173056
        fill_color = "#00aaff"
        border_color = "#0055ff"
        border_style = 2
        z = -2.0
    [[SHAPE 8]]
        type = ellipse
        x = 157.989898733
        y = 77.7817459305
        width = 299.813275223
        height = 131.521861301
        fill_color = "#00aaff"
        border_color = "#0055ff"
        border_style = 2
        z = -3.0