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
|
autostart = False
version = 0.8.2
[127.0.0.1:7202]
workingdir = C:\Users\actionmystique\Downloads\Travail\GNS3\Temp
udp = 10200
[[3725]]
image = C:\Users\actionmystique\Downloads\Travail\IOS\Binaries\c3725-adventerprisek9-mz.124-15.T5.image
ram = 128
idlepc = 0x62af9f1c
sparsemem = True
ghostios = True
[[ROUTER B_Core1]]
model = 3725
console = 2009
aux = 2100
cnfg = configs\B_Core1.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = FR2 1
f0/0 = B_Edge1 f0/0
f0/1 = B_Core2 f0/1
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
f2/0 = B_Edge2 f2/0
x = 673.222438152
y = -476.391918985
z = 1.0
[[FRSW FR2]]
1:102 = 2:101
1:111 = 11:101
1:112 = 12:101
1:113 = 13:101
2:101 = 1:102
2:111 = 11:102
2:112 = 12:102
2:113 = 13:102
11:101 = 1:111
11:102 = 2:111
12:101 = 1:112
12:102 = 2:112
13:101 = 1:113
13:102 = 2:113
1 = B_Core1 s0/0
2 = B_Core2 s0/0
11 = B_Branch1 s0/0
12 = B_Branch2 s0/0
13 = B_Branch3 s0/0
x = 948.573159853
y = -307.742640687
z = 1.0
[[ROUTER C_Edge1]]
model = 3725
console = 2011
aux = 2101
cnfg = configs\C_Edge1.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = ISP2 s0/3
f0/0 = C_Core1 f0/0
f0/1 = C_Edge2 f0/1
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = -323.357431101
y = 211.688383543
z = 1.0
hx = 0.5
hy = -31.2426406871
[[ROUTER PC1]]
model = 3725
console = 2030
aux = 2128
cnfg = configs\PC1.cfg
f0/0 = A_Branch_IPsec f0/0
symbol = computer
x = -943.083261121
y = -714.142135623
z = 1.0
[[ROUTER B_Edge1]]
model = 3725
console = 2029
aux = 2102
cnfg = configs\B_Edge1.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = ISP1 s0/1
f0/0 = B_Core1 f0/0
f0/1 = B_Edge2 f0/1
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
f2/0 = B_Core2 f2/0
x = 323.409162928
y = -479.653895656
z = 1.0
hx = -5.0
hy = -27.0
[[ROUTER B_Edge2]]
model = 3725
console = 2008
aux = 2103
cnfg = configs\B_Edge2.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = ISP3 s0/0
f0/0 = B_Core2 f0/0
f0/1 = B_Edge1 f0/1
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
f2/0 = B_Core1 f2/0
x = 322.636651714
y = -150.239682093
z = 1.0
[127.0.0.1:7203]
workingdir = C:\Users\actionmystique\Downloads\Travail\GNS3\Temp
udp = 10300
[[3725]]
image = C:\Users\actionmystique\Downloads\Travail\IOS\Binaries\c3725-adventerprisek9-mz.124-15.T5.image
ram = 128
idlepc = 0x62af9f1c
sparsemem = True
ghostios = True
[[ROUTER C_Core2]]
model = 3725
console = 2014
aux = 2104
cnfg = configs\C_Core2.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
f0/0 = C_Edge2 f0/0
f0/1 = C_Core1 f0/1
slot1 = NM-1FE-TX
f1/0 = C_Distribution2 f0/0
slot2 = NM-1FE-TX
x = 29.6101730553
y = 444.54833996
z = 1.0
[[ROUTER C_Core1]]
model = 3725
console = 2013
aux = 2105
cnfg = configs\C_Core1.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
f0/0 = C_Edge1 f0/0
f0/1 = C_Core2 f0/1
slot1 = NM-1FE-TX
f1/0 = C_Distribution1 f0/0
slot2 = NM-1FE-TX
x = -323.256926038
y = 445.518902709
z = 1.0
[[ROUTER C_Edge2]]
model = 3725
console = 2012
aux = 2106
cnfg = configs\C_Edge2.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = ISP3 s0/3
f0/0 = C_Core2 f0/0
f0/1 = C_Edge1 f0/1
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = 32.43860018
y = 211.688383542
z = 1.0
[[ROUTER C_Access2]]
model = 3725
console = 2015
aux = 2107
cnfg = configs\C_Access2.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
f0/0 = C_Distribution2 f1/0
f0/1 = C_Access1 f0/1
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = 31.0660171781
y = 901.81031663
z = 1.0
[127.0.0.1:7200]
workingdir = C:\Users\actionmystique\Downloads\Travail\GNS3\Temp
udp = 10000
[[3725]]
image = C:\Users\actionmystique\Downloads\Travail\IOS\Binaries\c3725-adventerprisek9-mz.124-15.T5.image
ram = 128
idlepc = 0x62af9f1c
sparsemem = True
ghostios = True
[[FRSW FR1]]
1:111 = 11:101
1:112 = 12:101
1:113 = 13:101
2:111 = 11:102
2:112 = 12:102
2:113 = 13:102
11:101 = 1:111
11:102 = 2:111
12:101 = 1:112
12:102 = 2:112
13:101 = 1:113
13:102 = 2:113
1 = A_Core1 s0/0
2 = A_Core2 s0/0
11 = A_Branch1 s0/0
12 = A_Branch2 s0/0
13 = A_Branch3 s0/0
x = -1161.60764774
y = -296.914213562
z = 1.0
[[ROUTER A_Core1]]
model = 3725
console = 2002
aux = 2108
cnfg = configs\A_Core1.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = FR1 1
f0/0 = A_Edge1 f0/0
f0/1 = A_Core2 f0/1
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
f2/0 = A_Edge2 f2/0
x = -946.13708499
y = -480.541197284
z = 1.0
[[ROUTER A_Core2]]
model = 3725
console = 2003
aux = 2109
cnfg = configs\A_Core2.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = FR1 2
f0/0 = A_Edge2 f0/0
f0/1 = A_Core1 f0/1
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
f2/0 = A_Edge1 f2/0
x = -946.428498912
y = -149.303607231
z = 1.0
hx = -3.0
hy = -29.0
[[ROUTER A_Edge2]]
model = 3725
console = 2001
aux = 2110
cnfg = configs\A_Edge2.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = ISP2 s0/0
f0/0 = A_Core2 f0/0
f0/1 = A_Edge1 f0/1
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
f2/0 = A_Core1 f2/0
x = -594.688383542
y = -147.509667992
z = 1.0
[[ROUTER A_Edge1]]
model = 3725
console = 2000
aux = 2111
cnfg = configs\A_Edge1.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = ISP1 s0/0
f0/0 = A_Core1 f0/0
f0/1 = A_Edge2 f0/1
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
f2/0 = A_Core2 f2/0
x = -594.639610307
y = -478.433549546
z = 1.0
[127.0.0.1:7201]
workingdir = C:\Users\actionmystique\Downloads\Travail\GNS3\Temp
udp = 10100
[[3725]]
image = C:\Users\actionmystique\Downloads\Travail\IOS\Binaries\c3725-adventerprisek9-mz.124-15.T5.image
ram = 128
idlepc = 0x62af9f1c
sparsemem = True
ghostios = True
[[ROUTER B_Core2]]
model = 3725
console = 2028
aux = 2112
cnfg = configs\B_Core2.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = FR2 2
f0/0 = B_Edge2 f0/0
f0/1 = B_Core1 f0/1
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
f2/0 = B_Edge1 f2/0
x = 673.496608131
y = -147.26197667
z = 1.0
[[ROUTER ISP1]]
model = 3725
console = 2004
aux = 2113
cnfg = configs\ISP1.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = A_Edge1 s0/0
s0/1 = B_Edge1 s0/0
s0/2 = ISP3 s0/1
s0/3 = ISP2 s0/1
s0/4 = A_Branch_IPsec s0/0
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = -135.254103842
y = -349.682005552
z = 1.0
[[ROUTER ISP2]]
model = 3725
console = 2005
aux = 2114
cnfg = configs\ISP2.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = A_Edge2 s0/0
s0/1 = ISP1 s0/3
s0/2 = ISP3 s0/2
s0/3 = C_Edge1 s0/0
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = -311.651652324
y = -70.3915858829
z = 1.0
[[ROUTER ISP3]]
model = 3725
console = 2006
aux = 2115
cnfg = configs\ISP3.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = B_Edge2 s0/0
s0/1 = ISP1 s0/2
s0/2 = ISP2 s0/2
s0/3 = C_Edge2 s0/0
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = 31.4020202535
y = -65.7085860777
z = 1.0
[127.0.0.1:7206]
workingdir = C:\Users\actionmystique\Downloads\Travail\GNS3\Temp
udp = 10600
[[3725]]
image = C:\Users\actionmystique\Downloads\Travail\IOS\Binaries\c3725-adventerprisek9-mz.124-15.T5.image
ram = 128
idlepc = 0x62af9f1c
sparsemem = True
ghostios = True
[[ROUTER C_Distribution2]]
model = 3725
console = 2059
aux = 2117
cnfg = configs\C_Distribution2.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
f0/0 = C_Core2 f1/0
f0/1 = C_Distribution1 f0/1
slot1 = NM-1FE-TX
f1/0 = C_Access2 f0/0
slot2 = NM-1FE-TX
x = 28.5147186258
y = 668.083261121
z = 1.0
[[ROUTER C_Distribution1]]
model = 3725
console = 2058
aux = 2116
cnfg = configs\C_Distribution1.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
f0/0 = C_Core1 f1/0
f0/1 = C_Distribution2 f0/1
slot1 = NM-1FE-TX
f1/0 = C_Access1 f0/0
slot2 = NM-1FE-TX
x = -323.267027305
y = 667.497474684
z = 1.0
[127.0.0.1:7204]
workingdir = C:\Users\actionmystique\Downloads\Travail\GNS3\Temp
udp = 10400
[[3725]]
image = C:\Users\actionmystique\Downloads\Travail\IOS\Binaries\c3725-adventerprisek9-mz.124-15.T5.image
ram = 128
idlepc = 0x62af9f1c
sparsemem = True
ghostios = True
[[ROUTER A_Branch_IPsec]]
model = 3725
console = 2019
aux = 2118
cnfg = configs\A_Branch_IPsec.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = ISP1 s0/4
f0/0 = PC1 f0/0
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = -597.350288426
y = -704.793939239
z = 1.0
[[ROUTER B_Branch1]]
model = 3725
console = 2018
aux = 2119
cnfg = configs\B_Branch1.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = FR2 11
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = 1231.07315985
y = -510.242640687
z = 1.0
[[ROUTER A_Branch1]]
model = 3725
console = 2017
aux = 2120
cnfg = configs\A_Branch1.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = FR1 11
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = -1491.7766953
y = -481.213203435
z = 1.0
[[ROUTER C_Access1]]
model = 3725
console = 2055
aux = 2121
cnfg = configs\C_Access1.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
f0/0 = C_Distribution1 f1/0
f0/1 = C_Access2 f0/1
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = -323.943217539
y = 901.952452255
z = 1.0
[127.0.0.1:7205]
workingdir = C:\Users\actionmystique\Downloads\Travail\GNS3\Temp
udp = 10500
[[3725]]
image = C:\Users\actionmystique\Downloads\Travail\IOS\Binaries\c3725-adventerprisek9-mz.124-15.T5.image
ram = 128
idlepc = 0x62af9f1c
sparsemem = True
ghostios = True
[[ROUTER B_Branch2]]
model = 3725
console = 2023
aux = 2122
cnfg = configs\B_Branch2.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = FR2 12
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = 1247.07315985
y = -310.242640687
z = 1.0
[[ROUTER B_Branch3]]
model = 3725
console = 2024
aux = 2123
cnfg = configs\B_Branch3.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = FR2 13
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = 1231.07315985
y = -94.2426406871
z = 1.0
[[ROUTER A_Branch3]]
model = 3725
console = 2022
aux = 2124
cnfg = configs\A_Branch3.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = FR1 13
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = -1484.70562748
y = -103.656854249
z = 1.0
[[ROUTER A_Branch2]]
model = 3725
console = 2021
aux = 2125
cnfg = configs\A_Branch2.cfg
wic0/0 = WIC-2T
wic0/1 = WIC-2T
wic0/2 = WIC-2T
s0/0 = FR1 12
slot1 = NM-1FE-TX
slot2 = NM-1FE-TX
x = -1481.63455967
y = -297.071067811
z = 1.0
[GNS3-DATA]
configs = configs
m11 = 0.707106781187
m22 = 0.707106781187
width = 5000
height = 2500
[[NOTE 1]]
text = L0\n61.1.1.101/32
x = -971.299423149
y = -553.24011537
color = "#6f6f6f"
[[NOTE 2]]
text = fa0/1 EIGRP\n63.3.0.33/30
x = -248.144227665
y = 667.423015003
color = "#6f6f6f"
[[NOTE 3]]
text = L0\n3.0.0.3/32
x = 66.7333316313
y = -138.466378666
color = "#6f6f6f"
[[NOTE 4]]
text = ----CONFIGURED (Company C)\n\nBGP\n-Edge routers aggregate address\n-Edge routers filter all but site prefix\n-Edge routers next-hop-self\n-Direct connect to iBGP neighbors\n-BGP timers set to 10 30\n\n\n----CONSIDERATIONS\n\nBGP\n-BGP Path Attributes for path control?\nCompany A through C_Edge1\nCompany B through C_Edge2\n-Synchronization?\nNot necessary
x = -915.914646843
y = 752.992782987
[[NOTE 5]]
text = fa0/0 EIGRP\n63.3.0.30/30
x = 104.468037431
y = 544.611831821
rotate = 90
color = "#6f6f6f"
[[NOTE 6]]
text = fa1/0 EIGRP\n63.3.0.25/30
x = -248.482322782
y = 493.374241768
rotate = 90
color = "#6f6f6f"
[[NOTE 7]]
text = L0\n62.2.1.1/32
x = 304.32121011
y = -547.985281373
color = "#6f6f6f"
[[NOTE 8]]
text = fa0/1 OSPF\n63.3.0.21/30
x = -250.386868353
y = 445.04833996
color = "#6f6f6f"
[[NOTE 9]]
text = ISP1\nBGP ASN 1\nSite Prefix: 1.0.0.0/24\n\nISP2\nBGP ASN 2\nSite Prefix: 2.0.0.0/24\n\nISP3\nBGP ASN 3\nSite Prefix: 3.0.0.0/24
x = -234.351513915
y = -810.690908854
font = "Sans Serif,16,-1,5,50,1,0,0,0,0"
[[NOTE 10]]
text = s0/0.101 p2p\n61.1.0.2/30\ns0/0.102 p2p\n61.1.0.6/30
x = -1403.84776311
y = -473.642135623
rotate = 27
color = "#6f6f6f"
[[NOTE 11]]
text = L0\n2.0.0.2/32
x = -367.430232017
y = -138.265368539
color = "#6f6f6f"
[[NOTE 12]]
text = COMPANY C\nBGP ASN 6\nOSPF 6\nSite Prefix: 63.3.0.0/22\nInterconn: 63.3.0.0/24\nLoopback: 63.3.1.0/24
x = -239.028570701
y = 992.012626585
font = "Sans Serif,16,-1,5,50,1,0,0,0,0"
[[NOTE 13]]
text = s0/0\n62.2.0.41/30
x = 193.747258044
y = -425.651370339
rotate = -20
color = "#6f6f6f"
[[NOTE 14]]
text = fa0/0 OSPF\n63.3.0.14/30
x = -288.913780287
y = 328.325468533
rotate = 90
color = "#6f6f6f"
[[NOTE 15]]
text = COMPANY A\nBGP ASN 4\nEIGRP 4\nSite Prefix: 61.1.0.0/22\nInterconn: 61.1.0.0/24\nLoopback: 61.1.1.0/24\n\nA_Branch_IPsec\n61.1.4.0/30\n
x = -1354.82546853
y = -800.247258044
font = "Sans Serif,16,-1,5,50,1,0,0,0,0"
[[NOTE 16]]
text = s0/0 mtp\n61.1.0.251/29
x = -1410.43354955
y = -299.257359312
rotate = -3
color = "#6f6f6f"
[[NOTE 17]]
text = fa0/0\n61.1.0.30/30
x = -707.935208311
y = -146.051298552
color = "#6f6f6f"
[[NOTE 18]]
text = DHCP\nNAT
x = -501.416305604
y = -751.607647737
font = "Sans Serif,12,-1,5,75,1,0,0,0,0"
color = "#1b748f"
[[NOTE 19]]
text = fa0/1\n61.1.0.14/30
x = -892.427632361
y = -276.15894629
rotate = 90
color = "#6f6f6f"
[[NOTE 20]]
text = fa0/0 RIP\n63.3.0.42/30
x = 107.296464556
y = 781.087011927
rotate = 90
color = "#6f6f6f"
[[NOTE 21]]
text = fa2/0\n61.1.0.22/30
x = -876.871283175
y = -193.933549546
rotate = -43
color = "#6f6f6f"
[[NOTE 22]]
text = s0/0.101 p2p\n62.2.0.6/30\ns0/0.102 p2p\n62.2.0.14/30
x = 1134.28253814
y = -315.217820793
rotate = -5
color = "#6f6f6f"
[[NOTE 23]]
text = fa0/1\n61.1.0.26/30
x = -541.058007951
y = -283.230014102
rotate = 90
color = "#6f6f6f"
[[NOTE 24]]
text = L0\n61.1.1.111/32
x = -1525.6711396
y = -543.139610306
color = "#6f6f6f"
[[NOTE 25]]
text = L0\n62.2.1.112/32
x = 1215.07474428
y = -372.421789512
color = "#6f6f6f"
[[NOTE 26]]
text = L0\n63.3.1.212/32
x = 107.733331631
y = 902.533621334
color = "#6f6f6f"
[[NOTE 27]]
text = s0/0\n61.1.0.37/30
x = -516.187950266
y = -139.98023074
rotate = 11
color = "#6f6f6f"
[[NOTE 28]]
text = s0/1\n62.2.0.42/30
x = -42.8406204336
y = -369.497041407
rotate = -20
color = "#6f6f6f"
[[NOTE 29]]
text = fa0/0\n62.2.0.38/30
x = 554.371716449
y = -147.855339059
color = "#6f6f6f"
[[NOTE 30]]
text = ----CONFIGURED (Company B)\n\nOSPF\n-A_Edge1 - d-originate OSPF\n-A_Edge2 - d-originate OSPF\n-Virtual Links - Full Mesh\n\n\n----CONSIDERATIONS\n-Timers for convergence\n-Limit neighborship?\n-Authentication w/chains\n-Verify backup routes\n-Split Horizon Issues?\n-Distribute list filter interconnections?\n-Summary routes? (area range)\n-Metric tuning reference bandwidth?\n-Stubby / NSSA?\n-Type 3 or Type 5 Filtering?\n-DR election?\n-Virtual Link Authentication
x = 398.499207787
y = 7.68289963216
[[NOTE 31]]
text = L0\n63.3.1.12/32
x = 103.733331631
y = 445.533621334
color = "#6f6f6f"
[[NOTE 32]]
text = s0/2\n2.0.0.254/30
x = -88.0954544295
y = -59.5832611208
rotate = -2
color = "#6f6f6f"
[[NOTE 33]]
text = fa0/0\n61.1.0.9/30
x = -864.143361114
y = -480.018902707
color = "#6f6f6f"
[[NOTE 34]]
text = fa0/0 EIGRP\n63.3.0.26/30
x = -289.896536344
y = 549.084919887
rotate = 90
color = "#6f6f6f"
[[NOTE 35]]
text = L0\n61.1.1.113/32
x = -1520.01428535
y = -162.118182281
color = "#6f6f6f"
[[NOTE 36]]
text = fa0/1\n62.2.0.34/30
x = 726.905771059
y = -280.188383542
rotate = 90
color = "#6f6f6f"
[[NOTE 37]]
text = L0\n1.0.0.1/32
x = -141.156062037
y = -425.149711574
color = "#6f6f6f"
[[NOTE 38]]
text = L0\n62.2.1.111/32
x = 1198.10418153
y = -573.039105243
color = "#6f6f6f"
[[NOTE 39]]
text = s0/0\n62.2.0.45/30
x = 210.717820794
y = -100.784271247
rotate = -20
color = "#6f6f6f"
[[NOTE 40]]
text = L0\n61.1.1.2/32
x = -605.018110495
y = -95.4369414149
color = "#6f6f6f"
[[NOTE 41]]
text = fa0/1 BGP (OSPF)\n63.3.0.9/30
x = -248.901586977
y = 210.744732729
color = "#6f6f6f"
[[NOTE 42]]
text = fa0/1 BGP (OSPF)\n63.3.0.10/30
x = -110.308657865
y = 210.945742855
color = "#6f6f6f"
[[NOTE 43]]
text = fa0/1 EIGRP\n63.3.0.34/30
x = -87.6274169979
y = 670.050432001
color = "#6f6f6f"
[[NOTE 44]]
text = 62.2.0.16/30 - 62.2.0.32/30\n62.2.0.36/30\n62.2.0.40/30\n62.2.0.44/30\n62.2.1.1/32\n62.2.1.2/32\n62.2.1.101/32\n62.2.1.102/32
x = 336.582827845
y = -740.819984622
[[NOTE 45]]
text = fa2/0\n61.1.0.17/30
x = -854.243866176
y = -434.764068712
rotate = 45
color = "#6f6f6f"
[[NOTE 46]]
text = fa0/0\n62.2.0.37/30
x = 404.465078839
y = -149.068542494
color = "#6f6f6f"
[[NOTE 47]]
text = s0/3\n63.3.0.5/30
x = 88.6812408663
y = -1.80151519015
rotate = 86
color = "#6f6f6f"
[[NOTE 48]]
text = s0/0.111 p2p\n62.2.0.1/30\ns0/0.112 p2p\n62.2.0.5/30\ns0/0 mtp\n62.2.0.249/29
x = 784.888527117
y = -529.089970519
color = "#6f6f6f"
[[NOTE 49]]
text = L0\n61.1.1.102/32
x = -972.713636712
y = -96.6501448505
color = "#6f6f6f"
[[NOTE 50]]
text = fa2/0\n62.2.0.30/30
x = 403.050865276
y = -203.619841046
rotate = -43
color = "#6f6f6f"
[[NOTE 51]]
text = fa0/0\n62.2.0.17/30
x = 397.394011027
y = -478.3792924
color = "#6f6f6f"
[[NOTE 52]]
text = fa1/0 EIGRP\n63.3.0.29/30
x = 58.8822509933
y = 490.759018078
rotate = 90
color = "#6f6f6f"
[[NOTE 53]]
text = L0\n63.3.1.211/32
x = -441.266668369
y = 899.533621334
color = "#6f6f6f"
[[NOTE 54]]
text = fa2/0\n62.2.0.29/30
x = 568.513852074
y = -357.568109218
rotate = -43
color = "#6f6f6f"
[[NOTE 55]]
text = L0\n62.2.1.101/32
x = 657.874600703
y = -540.713203435
color = "#6f6f6f"
[[NOTE 56]]
text = s0/0\n61.1.0.38/30
x = -419.021428025
y = -99.3822509939
rotate = 11
color = "#6f6f6f"
[[NOTE 57]]
text = L0\n63.3.1.2/32
x = 104.733331631
y = 210.533621334
color = "#6f6f6f"
[[NOTE 58]]
text = fa0/0 OSPF\n63.3.0.17/30
x = 60.3969696203
y = 266.698051534
rotate = 90
color = "#6f6f6f"
[[NOTE 59]]
text = s0/0.111 p2p\n61.1.0.5/30\ns0/0 mtp\n61.1.0.250/29\n
x = -1086.80108191
y = -167.156854249
color = "#6f6f6f"
[[NOTE 60]]
text = fa0/1\n61.1.0.25/30
x = -541.058007952
y = -406.065583902
rotate = 90
color = "#6f6f6f"
[[NOTE 61]]
text = L0\n63.3.1.11/32
x = -426.266668369
y = 443.533621334
color = "#6f6f6f"
[[NOTE 62]]
text = s0/1\n3.0.0.254/30
x = -1.82842712479
y = -179.992424049
rotate = 55
color = "#6f6f6f"
[[NOTE 63]]
text = s0/0\n61.1.0.34/30
x = -291.742207411
y = -394.95288553
rotate = 12
color = "#6f6f6f"
[[NOTE 64]]
text = L0\n63.3.1.112/32
x = 102.733331631
y = 668.533621334
color = "#6f6f6f"
[[NOTE 65]]
text = s0/0\n61.1.4.2/30\n
x = -508.531096017
y = -669.523520065
rotate = 35
color = "#6f6f6f"
[[NOTE 66]]
text = L0\n61.1.1.1/32
x = -610.674964744
y = -547.784271247
color = "#6f6f6f"
[[NOTE 67]]
text = fa2/0\n61.1.0.18/30
x = -657.023520066
y = -246.46046148
rotate = 45
color = "#6f6f6f"
[[NOTE 68]]
text = L0\n63.3.1.111/32
x = -431.266668369
y = 665.533621334
color = "#6f6f6f"
[[NOTE 69]]
text = fa0/1\n62.2.0.21/30
x = 377.595021153
y = -409.894011026
rotate = 90
color = "#6f6f6f"
[[NOTE 70]]
text = ----CONFIGURED (Company A)\n\nBGP\n-A_Edge1 - Aggregate address\n-A_Edge2 - Static to Null0\n-A_Edge1 to A_Edge2 - Next-hop-self\n-Edge Routers - allow site prefix only\nprevent transit AS\n-Direct connection between iBGP\nneighbors\n-BGP timers set to 10 30\n\n\n----CONSIDERATIONS for BGP\n\nBGP\n-BGP Path Attributes for path control?\n-Synchronization?
x = -1241.55721574
y = 8.64841174689
[[NOTE 71]]
text = L0\n62.2.1.102/32
x = 653.631960016
y = -95.4369414146
color = "#6f6f6f"
[[NOTE 72]]
text = fa2/0\n62.2.0.26/30
x = 591.141269071
y = -264.632034356
rotate = 43
color = "#6f6f6f"
[[NOTE 73]]
text = s0/0.101 p2p\n62.2.0.2/30\ns0/0.102 p2p\n62.2.0.10/30
x = 1121.31197539
y = -426.271644662
rotate = -38
color = "#6f6f6f"
[[NOTE 74]]
text = fa1/0 RIP\n63.3.0.41/30
x = 56.4680374313
y = 717.920489686
rotate = 90
color = "#6f6f6f"
[[NOTE 75]]
text = s0/2\n2.0.0.253/30
x = -235.173664917
y = -72.311183182
rotate = -2
color = "#6f6f6f"
[[NOTE 76]]
text = fa2/0\n61.1.0.21/30
x = -693.793072688
y = -362.840187157
rotate = -43
color = "#6f6f6f"
[[NOTE 77]]
text = ----CONFIGURED (Company A)\n\nEIGRP\n-A_Edge1 - Default network EIGRP\n-A_Edge2 - Default network EIGRP\n\n-Core1 - Bandwidth change to fa2/0\nfor default route EIGRP\n\n-Core2 - Bandwidth change to fa2/0\nfor default route EIGRP\n\n-A_Branch_IPsec - DHCP\n-A_Branch_IPsec - IPsec/GRE tunneling\n-A_Branch_IPsec - ACL for internet or\ntunnel traffic\n\n-A_Branch_IPsec - NAT/PAT/IPsec/GRE\n-A_Branch1-3 - Stub Routers\n\n-A_Core1 - no ip split horizon eigrp 4\n-A_Branch2 and 3 - frame-relay maps\n\n\n----CONSIDERATIONS for EIGRP\n\nEIGRP\n-Timers for convergence\n-Limit neighborship?\n-Authentication w/chains\n-EIGRP WAN Bandwidth control\n-Verify backup routes\nOffset lists\nVariance multiple paths\n-Distribute list filter \ninterconnections?\n-EIGRP Summary routes?\n
x = -1548.85577234
y = 11.0260453828
[[NOTE 78]]
text = s0/1\n1.0.0.254/30
x = -276.185858225
y = -100.59545443
rotate = -61
color = "#6f6f6f"
[[NOTE 79]]
text = fa0/0\n61.1.0.10/30
x = -709.349421874
y = -478.805699271
color = "#6f6f6f"
[[NOTE 80]]
text = fa0/0\nDHCP
x = -860.457069613
y = -704.494082814
color = "#6f6f6f"
[[NOTE 81]]
text = s0/0.111 p2p\n62.2.0.9/30\ns0/0.112 p2p\n62.2.0.13/30\ns0/0 mtp\n62.2.0.250/29
x = 782.060099992
y = -164.423881554
color = "#6f6f6f"
[[NOTE 82]]
text = fa0/1\n61.1.0.13/30
x = -892.427632361
y = -413.136651714
rotate = 90
color = "#6f6f6f"
[[NOTE 83]]
text = s0/3\n63.3.0.1/30
x = -256.386868352
y = -6.04415587729
rotate = 89
color = "#6f6f6f"
[[NOTE 84]]
text = L0\n61.1.1.112/32
x = -1516.77164466
y = -358.078643762
color = "#6f6f6f"
[[NOTE 85]]
text = fa0/0\n61.1.0.29/30
x = -872.628642487
y = -149.080735803
color = "#6f6f6f"
[[NOTE 86]]
text = s0/0\n62.2.0.46/30
x = 97.5807358033
y = -79.3700576851
rotate = -20
color = "#6f6f6f"
[[NOTE 87]]
text = COMPANY B\nBGP ASN 5\nOSPF 5\nSite Prefix: 62.2.0.0/22\nInterconn: 62.2.0.0/24\nLoopback: 62.2.1.0/24
x = 871.56349186
y = -799.176190233
font = "Sans Serif,16,-1,5,50,1,0,0,0,0"
[[NOTE 88]]
text = fa0/1 OSPF\n63.3.0.22/30
x = -80.9705627484
y = 445.433116271
color = "#6f6f6f"
[[NOTE 89]]
text = s0/0\n63.3.0.2/30
x = -273.357431101
y = 95.5782104865
rotate = 89
color = "#6f6f6f"
[[NOTE 90]]
text = s0/4\n61.1.4.1/30
x = -259.215295477
y = -465.462553521
rotate = 35
color = "#6f6f6f"
[[NOTE 91]]
text = fa2/0\n62.2.0.25/30
x = 427.092495836
y = -418.580302527
rotate = 43
color = "#6f6f6f"
[[NOTE 92]]
text = fa0/1 RIP\n63.3.0.45/30
x = -246.386868353
y = 903.312408672
color = "#6f6f6f"
[[NOTE 93]]
text = fa0/1 RIP\n63.3.0.46/30
x = -80.3847763108
y = 902.697184982
color = "#6f6f6f"
[[NOTE 94]]
text = s0/0 mtp\n61.1.0.252/29
x = -1415.33304448
y = -134.127416997
font = "Sans Serif,10,-1,5,75,0,0,0,0,0"
rotate = -35
color = "#6f6f6f"
[[NOTE 95]]
text = fa0/0\n62.2.0.18/30
x = 557.200143575
y = -477.166088965
color = "#6f6f6f"
[[NOTE 96]]
text = s0/0.111 p2p\n61.1.0.1/30\ns0/0 mtp\n61.1.0.249/29
x = -1079.65894629
y = -489.708152801
font = "Sans Serif,10,-1,5,75,0,0,0,0,0"
color = "#6f6f6f"
[[NOTE 97]]
text = ----CONFIGURED (Company B)\n\nBGP\n-A_Edge1 - Aggregate address\n-A_Edge2 - Static to Null0\n-A_Edge1 to A_Edge2 - Next-hop-self\n-Edge routers allow site prefix only\nprevent transit AS\n-Direct connection between iBGP \nneighbors\n-BGP timers set to 10 30\n\n----CONSIDERATIONS\n\nBGP\n-BGP Path Attributes for path control?\n-Synchronization?
x = 716.087804137
y = 6.48903217986
[[NOTE 98]]
text = fa0/0 OSPF\n63.3.0.13/30
x = -246.487373415
y = 264.070634536
rotate = 90
color = "#6f6f6f"
[[NOTE 99]]
text = fa0/1\n62.2.0.22/30
x = 377.595021153
y = -281.401586977
rotate = 90
color = "#6f6f6f"
[[NOTE 100]]
text = L0\n62.2.1.113/32
x = 1196.68996797
y = -159.076551721
color = "#6f6f6f"
[[NOTE 101]]
text = ----CONFIGURED (Company A)\n\nPBR and SLAs\n\n\n----CONSIDERATIONS for PBR and SLAs\n\n----CONSIDERATIONS for IPv6\n-MCT\n-GRE\n-6to4\n-ISATAP
x = -924.773377764
y = 7.03318805776
[[NOTE 102]]
text = ----CONFIGURED (Company B)\n\nPBR and SLAs\n\n\n----CONSIDERATIONS for PBR and SLAs\n\n----CONSIDERATIONS for IPv6\n-MCT\n-GRE\n-6to4\n-ISATAP
x = 1026.84133831
y = 6.832177931
[[NOTE 103]]
text = fa0/0 RIP\n63.3.0.38/30
x = -291.997041408
y = 780.873808492
rotate = 90
color = "#6f6f6f"
[[NOTE 104]]
text = fa0/0\n192.168.1.2/24
x = -726.964645564
y = -703.866665816
color = "#6f6f6f"
[[NOTE 105]]
text = s0/3\n1.0.0.253/30
x = -192.747258045
y = -209.489898732
rotate = -61
color = "#6f6f6f"
[[NOTE 106]]
text = s0/0\n63.3.0.6/30
x = 75.9533188063
y = 96.9924240485
rotate = 86
color = "#6f6f6f"
[[NOTE 107]]
text = L0\n63.3.1.1/32
x = -421.266668369
y = 209.533621334
color = "#6f6f6f"
[[NOTE 108]]
text = ----CONFIGURED (Company C)\n\nOSPF/EIGRP/RIP\n-Mutual Redistrubtion\n-Filtering on route tags\n\n\n----CONSIDERATIONS for Redistribution\n-Routing Domain loops - prevent using AD or high metrics? Not necessary thanks to Filtering on route tags\n-metric tuning using distrubte lists or route-maps that \nreference ACLs or prefix lists?\n
x = 392.842353538
y = 776.814067437
[[NOTE 109]]
text = fa1/0 RIP\n63.3.0.37/30
x = -245.239682095
y = 719.293072689
rotate = 90
color = "#6f6f6f"
[[NOTE 110]]
text = s0/2\n3.0.0.253/30
x = -58.3969696197
y = -298.585353161
rotate = 55
color = "#6f6f6f"
[[NOTE 111]]
text = s0/0\n61.1.0.33/30
x = -517.016377391
y = -467.290980646
font = "Sans Serif,10,-1,5,75,0,0,0,0,0"
rotate = 12
color = "#6f6f6f"
[[NOTE 112]]
text = fa0/0 OSPF\n63.3.0.18/30
x = 107.066017178
y = 324.894011027
rotate = 90
color = "#6f6f6f"
[[NOTE 113]]
text = fa0/1\n62.2.0.33/30
x = 726.90577106
y = -403.023953341
rotate = 90
color = "#6f6f6f"
[[NOTE 114]]
text = L0\n62.2.1.2/32
x = 314.220705046
y = -92.8095244166
color = "#6f6f6f"
[[NOTE 115]]
text = L0\n192.168.2.1/32
x = -629.059741055
y = -765.372149726
color = "#6f6f6f"
[[NOTE 116]]
text = s0/0 mtp\n62.2.0.251/29
x = 1125.82669402
y = -186.296464556
rotate = 32
color = "#6f6f6f"
[[SHAPE 1]]
type = rectangle
x = -1549.90194591
y = -807.892352261
width = 1127.12820921
height = 796.270852449
fill_color = "#ffffff"
border_color = "#999999"
border_style = 3
z = -2.0
[[SHAPE 2]]
type = rectangle
x = 200.61731573
y = -807.391918985
width = 1127.12820921
height = 796.270852449
fill_color = "#ffffff"
border_color = "#999999"
border_style = 3
z = -2.0
[[SHAPE 3]]
type = rectangle
x = -611.154328932
y = 181.100505064
width = 992.0
height = 978.554616083
fill_color = "#ffffff"
border_color = "#999999"
border_style = 3
z = -2.0
|