-
Notifications
You must be signed in to change notification settings - Fork 0
/
SDEWAN.drawio
1320 lines (1320 loc) · 140 KB
/
SDEWAN.drawio
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
<mxfile host="app.diagrams.net" modified="2022-01-12T05:24:25.928Z" agent="5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36" etag="XyVxfWpT_LnUSyAPHGjn" version="16.2.2" type="github" pages="3">
<diagram id="uPRll6M5eb0Z-0uBqnHo" name="Page-1">
<mxGraphModel dx="1550" dy="-64" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1100" pageHeight="850" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="L997ZeRYN2pQayARa3w6-19" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="740" y="900" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-20" value="K8s&nbsp;&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#ffe6cc;strokeColor=#d79b00;" parent="L997ZeRYN2pQayARa3w6-19" vertex="1">
<mxGeometry width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-21" value="ClusterIP 10.96.0.1:443" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" parent="L997ZeRYN2pQayARa3w6-19" vertex="1">
<mxGeometry x="0.0005957761525223759" y="36.088266387175736" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-104" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#FFCCCC;strokeWidth=2;" parent="1" source="L997ZeRYN2pQayARa3w6-6" target="L997ZeRYN2pQayARa3w6-21" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1270" y="1038" />
<mxPoint x="1270" y="948" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-147" value="Overlay Controller" style="rounded=1;whiteSpace=wrap;html=1;fontSize=22;verticalAlign=top;arcSize=3;dashed=1;container=0;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="70" y="852.61" width="550" height="417" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-133" value="Edge-2" style="rounded=1;whiteSpace=wrap;html=1;fontSize=22;verticalAlign=top;arcSize=3;dashed=1;container=0;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="734" y="1326.45" width="550" height="469" as="geometry" />
</mxCell>
<mxCell id="3yVlGVuV2btpdbxURkGZ-30" value="Edge-1" style="rounded=1;whiteSpace=wrap;html=1;fontSize=22;verticalAlign=top;arcSize=3;dashed=1;container=0;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="70" y="1325.45" width="550" height="469" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-245" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fontSize=10;fontColor=#67AB9F;strokeColor=#FFCCCC;strokeWidth=2;" parent="1" edge="1">
<mxGeometry x="83" y="1410" as="geometry">
<Array as="points">
<mxPoint x="470" y="1605" />
<mxPoint x="149" y="1605" />
</Array>
<mxPoint x="149.07208891445475" y="1579.999228678635" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-8" value="DNAT&nbsp; -d 192.168.0.1 -&gt; 10.96.0.1" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="_BiiGx_ub_-qpmht187N-245" vertex="1" connectable="0">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-26" y="-7" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-261" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;fontSize=10;fontColor=#67AB9F;strokeColor=#66B2FF;strokeWidth=2;" parent="1" source="L997ZeRYN2pQayARa3w6-15" target="L997ZeRYN2pQayARa3w6-130" edge="1">
<mxGeometry x="70" y="860" as="geometry">
<Array as="points">
<mxPoint x="1270" y="1158" />
<mxPoint x="1270" y="1609" />
</Array>
<mxPoint x="1193.9958139534883" y="1149.8421059795553" as="sourcePoint" />
<mxPoint x="1196.4558139534884" y="1564.346778281405" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-257" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;fontSize=10;fontColor=#67AB9F;strokeColor=#66B2FF;strokeWidth=2;exitX=0.999;exitY=0.94;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="L997ZeRYN2pQayARa3w6-23" target="L997ZeRYN2pQayARa3w6-14" edge="1">
<mxGeometry x="70" y="860" as="geometry">
<Array as="points">
<mxPoint x="650" y="1610" />
<mxPoint x="650" y="1230" />
<mxPoint x="1230" y="1230" />
<mxPoint x="1230" y="1134" />
</Array>
<mxPoint x="536.4558139534881" y="1568.0445188542699" as="sourcePoint" />
<mxPoint x="1193.9958139534883" y="1143.8643654066905" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-248" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fontSize=10;fontColor=#67AB9F;strokeColor=#FFCCCC;strokeWidth=2;" parent="1" edge="1">
<mxGeometry x="730" y="1297.5" as="geometry">
<mxPoint x="809.072088914455" y="1582.2792286786353" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-10" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;strokeWidth=2;strokeColor=#FFCCCC;" parent="1" edge="1">
<mxGeometry x="730" y="870" as="geometry">
<Array as="points">
<mxPoint x="1210" y="1126" />
<mxPoint x="1210" y="1200" />
<mxPoint x="806" y="1200" />
</Array>
<mxPoint x="806.072088914455" y="1179.9992286786355" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-185" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontSize=10;fontColor=#67AB9F;strokeWidth=2;strokeColor=#FFCCCC;entryX=1;entryY=0.25;entryDx=0;entryDy=0;" parent="1" source="_BiiGx_ub_-qpmht187N-158" target="L997ZeRYN2pQayARa3w6-129" edge="1">
<mxGeometry x="70" y="860" as="geometry">
<mxPoint x="1196.4558139534884" y="1570.32451885427" as="targetPoint" />
<Array as="points">
<mxPoint x="1180" y="1248" />
<mxPoint x="1180" y="1579" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-183" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.25;entryDx=0;entryDy=0;fontSize=10;fontColor=#67AB9F;strokeWidth=2;strokeColor=#FFCCCC;" parent="1" source="_BiiGx_ub_-qpmht187N-157" target="L997ZeRYN2pQayARa3w6-32" edge="1">
<mxGeometry x="70" y="860" as="geometry">
<mxPoint x="536.4558139534881" y="1562.0667782814048" as="targetPoint" />
<Array as="points">
<mxPoint x="530" y="1224" />
<mxPoint x="530" y="1578" />
<mxPoint x="477" y="1578" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-15" value="DNAT&nbsp; -d 192.169.0.2:80 -&gt; 172.16.70.15:80" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="1" vertex="1" connectable="0">
<mxGeometry x="1240.000004916736" y="1640" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-4" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="740" y="1000" width="540" height="177" as="geometry" />
</mxCell>
<mxCell id="3yVlGVuV2btpdbxURkGZ-27" value="<font color="#000000">Hub</font>" style="rounded=1;whiteSpace=wrap;html=1;fontSize=22;verticalAlign=top;arcSize=3;dashed=1;container=0;fillColor=none;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="-10" y="-140" width="550" height="317" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-5" value="CNF" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#b0e3e6;strokeColor=#0e8088;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry width="397" height="170" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-6" value="<span>etho:10.233.81.200/32<br></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="264.3105957761525" y="26.2682663871758" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-7" value="net0: 172.16.70.39/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="264.3128276768839" y="50.174454743853175" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-8" value="net1: 10.154.142.10/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;fillColor=#CCFF99;align=left;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="264.3128276768839" y="74.08541703531273" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-9" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="132.16984140027944" y="50.174454743853175" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-10" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="132.16984140027944" y="74.08541703531273" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-11" value="10.10.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="132.16984140027944" y="97.99637932677228" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-12" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="132.17059577615248" y="26.267304095716327" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-13" value="net2: 10.10.70.39/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="264.3128276768839" y="97.99715064813677" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-14" value="<span>vti_192.169.0.1</span><br><span>encap: UNSPEC</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;fontSize=10;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="264.85282767688386" y="121.90888426096058" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-15" value="<span style="font-size: 10px">vti_192.169.0.2<br></span><span style="font-size: 10px">encap: UNSPEC</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="264.3128276768839" y="146.08903770854022" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-16" value="192.169.0.1&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="132.16984140027944" y="121.90637932677237" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-17" value="192.169.0.2&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1">
<mxGeometry x="132.70984140027946" y="146.08637932677243" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-139" value="DNAT&nbsp; -d 10.10.70.39:6443 -&gt; 10.96.0.1:443" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1" connectable="0">
<mxGeometry x="480.0000049167361" y="30.269999999999982" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-143" value="SNAT&nbsp; -d 192.168.0.2 -&gt; 10.10.70.39" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="L997ZeRYN2pQayARa3w6-4" vertex="1" connectable="0">
<mxGeometry x="465.0000049167361" y="150" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-100" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#FFCCCC;strokeWidth=2;" parent="1" source="_BiiGx_ub_-qpmht187N-156" target="L997ZeRYN2pQayARa3w6-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-238" value="K8s&nbsp;&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#ffe6cc;strokeColor=#d79b00;" parent="1" vertex="1">
<mxGeometry x="80" y="1365" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-239" value="ClusterIP 10.96.0.1:443" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" parent="1" vertex="1">
<mxGeometry x="80.00059577615252" y="1401.0882663871757" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-39" value="APP" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="80" y="1657" width="397.43" height="133.14" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-41" value="<span style="text-align: center">etho: 10.233.70.10/32</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#b85450;container=0;fillColor=#f8cecc;align=left;" parent="1" vertex="1">
<mxGeometry x="345.28541976746715" y="1718.0007756822433" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-147" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.998;entryY=0.363;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#66B2FF;strokeWidth=2;" parent="1" source="_BiiGx_ub_-qpmht187N-42" target="L997ZeRYN2pQayARa3w6-23" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-42" value="net0: 172.16.70.15/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" parent="1" vertex="1">
<mxGeometry x="345.28541976746715" y="1742.0469252274142" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-44" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="213.14083953493423" y="1742.0469252274142" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-45" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="213.14083953493423" y="1766.0930747725852" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-49" value="net1: 10.154.142.34/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#CCFF99;" parent="1" vertex="1">
<mxGeometry x="345.28541976746715" y="1766.093850454829" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-55" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" parent="1" vertex="1">
<mxGeometry x="213.14159391990688" y="1718" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-59" value="<font style="font-size: 10px">192.168.0.0/24 via 172.16.70.19&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#bac8d3;strokeColor=#23445d;container=0;align=right;" parent="1" vertex="1">
<mxGeometry x="81" y="1742.0469252274142" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-23" value="CNF" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#b0e3e6;strokeColor=#0e8088;" parent="1" vertex="1">
<mxGeometry x="80" y="1450" width="397" height="170" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-134" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#FFCCCC;strokeWidth=2;" parent="1" source="L997ZeRYN2pQayARa3w6-24" target="_BiiGx_ub_-qpmht187N-239" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-24" value="<span>etho:10.233.79.8/32<br></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" parent="1" vertex="1">
<mxGeometry x="344.31059577615247" y="1476.2682663871758" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-25" value="net0: 172.16.70.19/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" parent="1" vertex="1">
<mxGeometry x="344.3128276768839" y="1500.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-26" value="net1: 10.154.142.10/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;fillColor=#CCFF99;align=left;" parent="1" vertex="1">
<mxGeometry x="344.3128276768839" y="1524.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-27" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="212.16984140027944" y="1500.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-28" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="212.16984140027944" y="1524.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-29" value="10.10.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="212.16984140027944" y="1547.9963793267723" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-30" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" parent="1" vertex="1">
<mxGeometry x="212.17059577615237" y="1476.2673040957163" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-31" value="net2: 10.10.70.19/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" parent="1" vertex="1">
<mxGeometry x="344.3128276768839" y="1547.9971506481368" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-32" value="<span>tunnel_192.168.0.1</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;fontSize=10;" parent="1" vertex="1">
<mxGeometry x="344.85282767688386" y="1571.9088842609606" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-33" value="<span style="font-size: 10px">tunnel</span><span style="font-size: 10px">_192.169.0.1</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" parent="1" vertex="1">
<mxGeometry x="344.3128276768839" y="1596.0890377085402" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-34" value="10.10.70.49&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="212.16984140027944" y="1571.9063793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-35" value="10.10.70.39&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="212.7098414002794" y="1596.0863793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-108" value="K8s&nbsp;&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#ffe6cc;strokeColor=#d79b00;" parent="1" vertex="1">
<mxGeometry x="744" y="1366" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-109" value="ClusterIP 10.96.0.1:443" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" parent="1" vertex="1">
<mxGeometry x="744.0005957761525" y="1402.0882663871757" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-111" value="APP" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="744" y="1658" width="397.43" height="133.14" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-112" value="<span style="text-align: center">etho: 10.233.99.10/32</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#b85450;container=0;fillColor=#f8cecc;align=left;" parent="1" vertex="1">
<mxGeometry x="1009.2854197674671" y="1719.0007756822433" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-113" value="net0: 172.16.70.15/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" parent="1" vertex="1">
<mxGeometry x="1009.2854197674671" y="1743.0469252274142" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-114" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="877.1408395349342" y="1743.0469252274142" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-115" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="877.1408395349342" y="1767.0930747725852" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-116" value="net1: 10.154.142.11/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#CCFF99;" parent="1" vertex="1">
<mxGeometry x="1009.2854197674671" y="1767.093850454829" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-117" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" parent="1" vertex="1">
<mxGeometry x="877.1415939199069" y="1719" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-118" value="<font style="font-size: 10px">10.10.70.39/32 via 172.16.70.29&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#bac8d3;strokeColor=#23445d;container=0;align=right;" parent="1" vertex="1">
<mxGeometry x="745" y="1743.0469252274142" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-120" value="CNF" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#b0e3e6;strokeColor=#0e8088;" parent="1" vertex="1">
<mxGeometry x="744" y="1451" width="397" height="170" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-135" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#FFCCCC;strokeWidth=2;" parent="1" source="L997ZeRYN2pQayARa3w6-121" target="L997ZeRYN2pQayARa3w6-109" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-121" value="<span>etho:10.233.99.8/32<br></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" parent="1" vertex="1">
<mxGeometry x="1008.3105957761525" y="1477.2682663871758" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-144" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#66B2FF;strokeWidth=2;" parent="1" source="L997ZeRYN2pQayARa3w6-122" target="L997ZeRYN2pQayARa3w6-113" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-122" value="net0: 172.16.70.29/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" parent="1" vertex="1">
<mxGeometry x="1008.3128276768839" y="1501.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-123" value="net1: 10.154.142.10/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;fillColor=#CCFF99;align=left;" parent="1" vertex="1">
<mxGeometry x="1008.3128276768839" y="1525.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-124" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="876.1698414002794" y="1501.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-125" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="876.1698414002794" y="1525.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-126" value="10.10.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="876.1698414002794" y="1548.9963793267723" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-127" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" parent="1" vertex="1">
<mxGeometry x="876.1705957761524" y="1477.2673040957163" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-128" value="net2: 10.10.70.29/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" parent="1" vertex="1">
<mxGeometry x="1008.3128276768839" y="1548.9971506481368" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-129" value="tunnel<span>_192.168.0.2</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;fontSize=10;" parent="1" vertex="1">
<mxGeometry x="1008.8528276768839" y="1572.9088842609606" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-130" value="<span style="font-size: 10px">tunnel</span><span style="font-size: 10px">_192.169.0.2</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" parent="1" vertex="1">
<mxGeometry x="1008.31" y="1597" width="131.69" height="23" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-131" value="10.10.70.49&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="876.1698414002794" y="1572.9063793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-132" value="10.10.70.39&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="876.7098414002794" y="1597.0863793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-14" value="SNAT&nbsp; -d 192.168.0.1 -&gt; 10.10.70.49" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="1" vertex="1" connectable="0">
<mxGeometry x="550.0000049167361" y="1216.91" as="geometry" />
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-44" value="net0" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=center;fillColor=#FFFF99;fontSize=10;" parent="1" vertex="1">
<mxGeometry x="565.1963636363637" y="910" width="44.80363636363636" height="13.348751156336737" as="geometry" />
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-45" value="ovn network" style="text;html=1;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=10;container=0;" parent="1" vertex="1">
<mxGeometry x="490" y="911.1100832562443" width="75.27272727272727" height="11.100832562442193" as="geometry" />
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-48" value="net1" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=center;fillColor=#B3FF66;fontSize=10;" parent="1" vertex="1">
<mxGeometry x="565.1963636363637" y="926.6512488436633" width="44.80363636363636" height="13.348751156336764" as="geometry" />
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-49" value="<font style="font-size: 10px;">provider network</font>" style="text;html=1;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=10;container=0;" parent="1" vertex="1">
<mxGeometry x="457.27272727272725" y="927.7613320999076" width="107.99999999999999" height="11.100832562442193" as="geometry" />
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-2" value="" style="endArrow=classic;html=1;strokeWidth=2;strokeColor=#FFCCCC;" parent="1" edge="1">
<mxGeometry x="520" y="880" width="50" height="50" as="geometry">
<mxPoint x="520" y="880" as="sourcePoint" />
<mxPoint x="610" y="880" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-3" value="Control Plane&nbsp;" style="edgeLabel;html=1;align=left;verticalAlign=middle;resizable=0;points=[];container=0;" parent="fcIH0-72oSz8u45Yj2zX-2" vertex="1" connectable="0">
<mxGeometry x="0.2444" y="-1" relative="1" as="geometry">
<mxPoint x="-109" y="-1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-4" value="" style="endArrow=classic;html=1;strokeWidth=2;strokeColor=#3399FF;" parent="1" edge="1">
<mxGeometry x="520" y="880" width="50" height="50" as="geometry">
<mxPoint x="520" y="900" as="sourcePoint" />
<mxPoint x="610" y="900" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-5" value="Data&nbsp;Plane&nbsp;" style="edgeLabel;html=1;align=left;verticalAlign=middle;resizable=0;points=[];container=0;" parent="fcIH0-72oSz8u45Yj2zX-4" vertex="1" connectable="0">
<mxGeometry x="0.2444" y="-1" relative="1" as="geometry">
<mxPoint x="-96" y="-1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-13" value="SNAT&nbsp; -d 192.168.0.2 -&gt; 10.10.70.49" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="1" vertex="1" connectable="0">
<mxGeometry x="634.0000049167361" y="1255" as="geometry">
<mxPoint x="-84" y="-15" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="sSm0i7QCMDcMuartEy7c-3" value="K8s&nbsp;&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#ffe6cc;strokeColor=#d79b00;" parent="1" vertex="1">
<mxGeometry x="80" y="903.31" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="sSm0i7QCMDcMuartEy7c-4" value="ClusterIP 10.96.0.1:443" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" parent="1" vertex="1">
<mxGeometry x="80.00059577615252" y="939.3982663871757" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-164" value="SCC" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#d0cee2;strokeColor=#56517e;" parent="1" vertex="1">
<mxGeometry x="80" y="990" width="320" height="83.14" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-165" value="<span style="text-align: center">etho:10.233.120.204/32</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#b85450;container=0;fillColor=#f8cecc;align=left;" parent="1" vertex="1">
<mxGeometry x="212.14541976746716" y="1049.0907756822432" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-170" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" parent="1" vertex="1">
<mxGeometry x="80.0015939199069" y="1049.09" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="fcIH0-72oSz8u45Yj2zX-12" value="SNAT&nbsp; -d 10.10.70.39 -&gt; 10.10.70.49" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="1" vertex="1" connectable="0">
<mxGeometry x="550.0000049167361" y="1190" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-148" value="CNF" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#b0e3e6;strokeColor=#0e8088;" parent="1" vertex="1">
<mxGeometry x="80" y="1090" width="397" height="170" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-137" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#FFCCCC;strokeWidth=2;" parent="1" source="_BiiGx_ub_-qpmht187N-149" target="sSm0i7QCMDcMuartEy7c-4" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="580" y="1134" />
<mxPoint x="580" y="951" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-149" value="<span>etho:10.233.120.205/32<br></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" parent="1" vertex="1">
<mxGeometry x="344.3105957761525" y="1116.2682663871758" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-150" value="net0: 172.16.70.49/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" parent="1" vertex="1">
<mxGeometry x="344.3128276768839" y="1140.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-151" value="net1: 10.154.142.15/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;fillColor=#CCFF99;align=left;" parent="1" vertex="1">
<mxGeometry x="344.3128276768839" y="1164.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-152" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="212.16984140027944" y="1140.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-153" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="212.16984140027944" y="1164.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-154" value="10.10.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="212.16984140027944" y="1187.9963793267723" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-155" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" parent="1" vertex="1">
<mxGeometry x="212.17059577615248" y="1116.2673040957163" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-156" value="net2: 10.10.70.49/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" parent="1" vertex="1">
<mxGeometry x="344.3128276768839" y="1187.9971506481368" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-157" value="<span>vti_192.168.0.1</span><br><span>encap: UNSPEC</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;fontSize=10;" parent="1" vertex="1">
<mxGeometry x="344.85282767688386" y="1211.9088842609606" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-158" value="<span style="font-size: 10px">vti_192.168.0.2<br></span><span style="font-size: 10px">encap: UNSPEC</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" parent="1" vertex="1">
<mxGeometry x="344.3128276768839" y="1236.0890377085402" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-160" value="192.168.0.1&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="212.16984140027944" y="1211.9063793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-172" value="192.168.0.2&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" parent="1" vertex="1">
<mxGeometry x="212.70984140027946" y="1236.0863793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="_BiiGx_ub_-qpmht187N-227" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.25;entryDx=0;entryDy=0;fontSize=10;fontColor=#67AB9F;strokeColor=#FFCCCC;strokeWidth=2;" parent="1" source="_BiiGx_ub_-qpmht187N-165" target="_BiiGx_ub_-qpmht187N-149" edge="1">
<mxGeometry x="70" y="860" as="geometry">
<mxPoint x="477.4300000000003" y="1027.0699999999997" as="sourcePoint" />
<Array as="points">
<mxPoint x="553" y="1061" />
<mxPoint x="553" y="1122" />
<mxPoint x="476" y="1122" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="sSm0i7QCMDcMuartEy7c-7" value="Host: default via 10.233.120.205 dev cali923c2bb432c&nbsp;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;labelBackgroundColor=none;" parent="1" vertex="1" connectable="0">
<mxGeometry x="457.27000491673607" y="1056" as="geometry">
<mxPoint x="8" y="-3" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-138" value="DNAT&nbsp; -d 10.10.70.49:6443 -&gt; 10.96.0.1:443" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="1" vertex="1" connectable="0">
<mxGeometry x="560.0000049167361" y="1140.17" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-140" value="DNAT&nbsp; -d 192.168.0.1:6443 -&gt; 10.96.0.1:443" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="1" vertex="1" connectable="0">
<mxGeometry x="411.3600049167361" y="1425" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-141" value="DNAT&nbsp; -d 192.168.0.2:6443 -&gt; 10.96.0.1:443" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="1" vertex="1" connectable="0">
<mxGeometry x="1070.000004916736" y="1425" as="geometry">
<mxPoint x="4" y="-2" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-142" value="DNAT&nbsp; -d 10.10.70.39:10001 -&gt; 192.169.0.2:80" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="1" vertex="1" connectable="0">
<mxGeometry x="1240.000004916736" y="1127.22" as="geometry" />
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-145" value="DNAT&nbsp; -d 192.169.0.2:80 -&gt; 10.10.70.39:10001" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="1" vertex="1" connectable="0">
<mxGeometry x="552.0000049167361" y="1598.09" as="geometry">
<mxPoint x="13" y="3" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="L997ZeRYN2pQayARa3w6-146" value="SNAT&nbsp; -d 10.10.70.39:10001-&gt; 192.169.0.1" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" parent="1" vertex="1" connectable="0">
<mxGeometry x="553.0000049167361" y="1616" as="geometry">
<mxPoint x="13" y="3" as="offset" />
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="Copy of Page-1" id="EYfhW6-14Jcxd1Km9sKY">
<mxGraphModel dx="2583" dy="460" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1100" pageHeight="850" math="0" shadow="0">
<root>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-0" />
<mxCell id="zDP1lCEH5pOsNmwnzGiS-1" parent="zDP1lCEH5pOsNmwnzGiS-0" />
<mxCell id="zDP1lCEH5pOsNmwnzGiS-2" value="" style="group" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="740" y="900" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-3" value="K8s&nbsp;&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#ffe6cc;strokeColor=#d79b00;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-2">
<mxGeometry width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-4" value="ClusterIP 10.96.0.1:443" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-2">
<mxGeometry x="0.0005957761525223759" y="36.088266387175736" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-5" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#FFCCCC;strokeWidth=2;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-21" target="zDP1lCEH5pOsNmwnzGiS-4">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1270" y="1038" />
<mxPoint x="1270" y="948" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-6" value="Overlay Controller" style="rounded=1;whiteSpace=wrap;html=1;fontSize=22;verticalAlign=top;arcSize=3;dashed=1;container=0;fillColor=none;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="70" y="852.61" width="550" height="417" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-7" value="Edge-2" style="rounded=1;whiteSpace=wrap;html=1;fontSize=22;verticalAlign=top;arcSize=3;dashed=1;container=0;fillColor=none;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1320" y="1325.45" width="550" height="469" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-8" value="Edge-1" style="rounded=1;whiteSpace=wrap;html=1;fontSize=22;verticalAlign=top;arcSize=3;dashed=1;container=0;fillColor=none;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="70" y="1325.45" width="550" height="469" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-9" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fontSize=10;fontColor=#67AB9F;strokeColor=#FFCCCC;strokeWidth=2;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="83" y="1410" as="geometry">
<Array as="points">
<mxPoint x="470" y="1605" />
<mxPoint x="149" y="1605" />
</Array>
<mxPoint x="149.07208891445475" y="1579.999228678635" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-10" value="DNAT&nbsp; -d 192.168.0.1 -&gt; 10.96.0.1" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-9">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-26" y="-7" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-11" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;fontSize=10;fontColor=#67AB9F;strokeColor=#66B2FF;strokeWidth=2;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-140" target="zDP1lCEH5pOsNmwnzGiS-83">
<mxGeometry x="70" y="860" as="geometry">
<Array as="points">
<mxPoint x="1790" y="1158" />
<mxPoint x="1790" y="1609" />
<mxPoint x="1726" y="1609" />
</Array>
<mxPoint x="1920" y="1210" as="sourcePoint" />
<mxPoint x="1196.4558139534884" y="1564.346778281405" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-12" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;fontSize=10;fontColor=#67AB9F;strokeColor=#66B2FF;strokeWidth=2;exitX=0.999;exitY=0.94;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-47" target="zDP1lCEH5pOsNmwnzGiS-29">
<mxGeometry x="70" y="860" as="geometry">
<Array as="points">
<mxPoint x="650" y="1610" />
<mxPoint x="650" y="1230" />
<mxPoint x="1230" y="1230" />
<mxPoint x="1230" y="1134" />
</Array>
<mxPoint x="536.4558139534881" y="1568.0445188542699" as="sourcePoint" />
<mxPoint x="1193.9958139534883" y="1143.8643654066905" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-13" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fontSize=10;fontColor=#67AB9F;strokeColor=#FFCCCC;strokeWidth=2;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="730" y="1297.5" as="geometry">
<mxPoint x="809.072088914455" y="1582.2792286786353" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-14" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;strokeWidth=2;strokeColor=#FFCCCC;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="730" y="870" as="geometry">
<Array as="points">
<mxPoint x="1210" y="1126" />
<mxPoint x="1210" y="1200" />
<mxPoint x="806" y="1200" />
</Array>
<mxPoint x="806.072088914455" y="1179.9992286786355" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-15" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontSize=10;fontColor=#67AB9F;strokeWidth=2;strokeColor=#FFCCCC;entryX=1;entryY=0.25;entryDx=0;entryDy=0;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-113" target="zDP1lCEH5pOsNmwnzGiS-82">
<mxGeometry x="70" y="860" as="geometry">
<mxPoint x="1196.4558139534884" y="1570.32451885427" as="targetPoint" />
<Array as="points">
<mxPoint x="1760" y="1248" />
<mxPoint x="1760" y="1579" />
<mxPoint x="1727" y="1579" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-16" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.25;entryDx=0;entryDy=0;fontSize=10;fontColor=#67AB9F;strokeWidth=2;strokeColor=#FFCCCC;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-112" target="zDP1lCEH5pOsNmwnzGiS-57">
<mxGeometry x="70" y="860" as="geometry">
<mxPoint x="536.4558139534881" y="1562.0667782814048" as="targetPoint" />
<Array as="points">
<mxPoint x="530" y="1224" />
<mxPoint x="530" y="1578" />
<mxPoint x="477" y="1578" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-17" value="DNAT&nbsp; -d 192.169.0.2:80 -&gt; 172.16.70.15:80" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1826.000004916736" y="1639" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-18" value="" style="group" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="740" y="1000" width="540" height="177" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-19" value="<font color="#000000">Hub-a</font>" style="rounded=1;whiteSpace=wrap;html=1;fontSize=22;verticalAlign=top;arcSize=3;dashed=1;container=0;fillColor=none;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="-10" y="-140" width="550" height="317" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-20" value="CNF" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#b0e3e6;strokeColor=#0e8088;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry width="397" height="170" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-21" value="<span>etho:10.233.81.200/32<br></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="264.3105957761525" y="26.2682663871758" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-22" value="net0: 172.16.70.39/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="264.3128276768839" y="50.174454743853175" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-23" value="net1: 10.154.142.10/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;fillColor=#CCFF99;align=left;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="264.3128276768839" y="74.08541703531273" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-24" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="132.16984140027944" y="50.174454743853175" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-25" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="132.16984140027944" y="74.08541703531273" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-26" value="10.10.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="132.16984140027944" y="97.99637932677228" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-27" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="132.17059577615248" y="26.267304095716327" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-28" value="net2: 10.10.70.39/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="264.3128276768839" y="97.99715064813677" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-29" value="<span>vti_192.169.0.1</span><br><span>encap: UNSPEC</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;fontSize=10;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="264.85282767688386" y="121.90888426096058" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-31" value="192.169.0.1&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="132.16984140027944" y="121.90637932677237" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-32" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="132.70984140027946" y="146.08637932677243" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-33" value="DNAT&nbsp; -d 10.10.70.39:6443 -&gt; 10.96.0.1:443" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-18">
<mxGeometry x="480.0000049167361" y="30.269999999999982" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-35" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#FFCCCC;strokeWidth=2;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-111" target="zDP1lCEH5pOsNmwnzGiS-28">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-36" value="K8s&nbsp;&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#ffe6cc;strokeColor=#d79b00;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="80" y="1365" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-37" value="ClusterIP 10.96.0.1:443" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="80.00059577615252" y="1401.0882663871757" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-38" value="APP" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="80" y="1657" width="397.43" height="133.14" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-39" value="<span style="text-align: center">etho: 10.233.70.10/32</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#b85450;container=0;fillColor=#f8cecc;align=left;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="345.28541976746715" y="1718.0007756822433" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-40" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.998;entryY=0.363;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#66B2FF;strokeWidth=2;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-41" target="zDP1lCEH5pOsNmwnzGiS-47">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-41" value="net0: 172.16.70.15/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="345.28541976746715" y="1742.0469252274142" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-42" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="213.14083953493423" y="1742.0469252274142" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-43" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="213.14083953493423" y="1766.0930747725852" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-44" value="net1: 10.154.142.34/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#CCFF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="345.28541976746715" y="1766.093850454829" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-45" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="213.14159391990688" y="1718" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-46" value="<font style="font-size: 10px">192.168.0.0/24 via 172.16.70.19&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#bac8d3;strokeColor=#23445d;container=0;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="81" y="1742.0469252274142" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-47" value="CNF" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#b0e3e6;strokeColor=#0e8088;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="80" y="1450" width="397" height="170" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-48" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#FFCCCC;strokeWidth=2;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-49" target="zDP1lCEH5pOsNmwnzGiS-37">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-49" value="<span>etho:10.233.79.8/32<br></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="344.31059577615247" y="1476.2682663871758" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-50" value="net0: 172.16.70.19/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="344.3128276768839" y="1500.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-51" value="net1: 10.154.142.10/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;fillColor=#CCFF99;align=left;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="344.3128276768839" y="1524.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-52" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.16984140027944" y="1500.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-53" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.16984140027944" y="1524.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-54" value="10.10.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.16984140027944" y="1547.9963793267723" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-55" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.17059577615237" y="1476.2673040957163" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-56" value="net2: 10.10.70.19/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="344.3128276768839" y="1547.9971506481368" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-57" value="<span>tunnel_192.168.0.1</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;fontSize=10;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="344.85282767688386" y="1571.9088842609606" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-58" value="<span style="font-size: 10px">tunnel</span><span style="font-size: 10px">_192.169.0.1</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="344.3128276768839" y="1596.0890377085402" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-59" value="10.10.70.49&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.16984140027944" y="1571.9063793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-60" value="10.10.70.39&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.7098414002794" y="1596.0863793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-61" value="K8s&nbsp;&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#ffe6cc;strokeColor=#d79b00;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1330" y="1365" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-62" value="ClusterIP 10.96.0.1:443" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1330.0005957761525" y="1401.0882663871757" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-63" value="APP" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1330" y="1657" width="397.43" height="133.14" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-64" value="<span style="text-align: center">etho: 10.233.99.10/32</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#b85450;container=0;fillColor=#f8cecc;align=left;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1595.2854197674671" y="1718.0007756822433" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-65" value="net0: 172.16.70.15/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1595.2854197674671" y="1742.0469252274142" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-66" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1463.1408395349342" y="1742.0469252274142" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-67" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1463.1408395349342" y="1766.0930747725852" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-68" value="net1: 10.154.142.11/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#CCFF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1595.2854197674671" y="1766.093850454829" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-69" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1463.1415939199069" y="1718" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-70" value="<font style="font-size: 10px">10.10.70.39/32 via 172.16.70.29&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#bac8d3;strokeColor=#23445d;container=0;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1331" y="1742.0469252274142" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-71" value="CNF" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#b0e3e6;strokeColor=#0e8088;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1330" y="1450" width="397" height="170" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-72" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#FFCCCC;strokeWidth=2;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-73" target="zDP1lCEH5pOsNmwnzGiS-62">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-73" value="<span>etho:10.233.99.8/32<br></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1594.3105957761525" y="1476.2682663871758" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-74" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#66B2FF;strokeWidth=2;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-75" target="zDP1lCEH5pOsNmwnzGiS-65">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-75" value="net0: 172.16.70.29/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1594.312827676884" y="1500.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-76" value="net1: 10.154.142.10/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;fillColor=#CCFF99;align=left;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1594.312827676884" y="1524.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-77" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1462.1698414002794" y="1500.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-78" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1462.1698414002794" y="1524.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-79" value="10.10.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1462.1698414002794" y="1547.9963793267723" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-80" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1462.1705957761524" y="1476.2673040957163" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-81" value="net2: 10.10.70.29/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1594.312827676884" y="1547.9971506481368" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-82" value="tunnel<span>_192.168.0.2</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;fontSize=10;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1594.8528276768839" y="1571.9088842609606" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-83" value="<span style="font-size: 10px">tunnel</span><span style="font-size: 10px">_192.169.0.2</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1594.31" y="1596" width="131.69" height="23" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-84" value="10.10.70.49&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1462.1698414002794" y="1571.9063793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-85" value="10.10.70.39&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1462.7098414002794" y="1596.0863793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-86" value="SNAT&nbsp; -d 192.168.0.1 -&gt; 10.10.70.49" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="550.0000049167361" y="1216.91" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-87" value="net0" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=center;fillColor=#FFFF99;fontSize=10;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="565.1963636363637" y="910" width="44.80363636363636" height="13.348751156336737" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-88" value="ovn network" style="text;html=1;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=10;container=0;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="490" y="911.1100832562443" width="75.27272727272727" height="11.100832562442193" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-89" value="net1" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=center;fillColor=#B3FF66;fontSize=10;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="565.1963636363637" y="926.6512488436633" width="44.80363636363636" height="13.348751156336764" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-90" value="<font style="font-size: 10px;">provider network</font>" style="text;html=1;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=10;container=0;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="457.27272727272725" y="927.7613320999076" width="107.99999999999999" height="11.100832562442193" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-91" value="" style="endArrow=classic;html=1;strokeWidth=2;strokeColor=#FFCCCC;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="520" y="880" width="50" height="50" as="geometry">
<mxPoint x="520" y="880" as="sourcePoint" />
<mxPoint x="610" y="880" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-92" value="Control Plane&nbsp;" style="edgeLabel;html=1;align=left;verticalAlign=middle;resizable=0;points=[];container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-91">
<mxGeometry x="0.2444" y="-1" relative="1" as="geometry">
<mxPoint x="-109" y="-1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-93" value="" style="endArrow=classic;html=1;strokeWidth=2;strokeColor=#3399FF;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="520" y="880" width="50" height="50" as="geometry">
<mxPoint x="520" y="900" as="sourcePoint" />
<mxPoint x="610" y="900" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-94" value="Data&nbsp;Plane&nbsp;" style="edgeLabel;html=1;align=left;verticalAlign=middle;resizable=0;points=[];container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-93">
<mxGeometry x="0.2444" y="-1" relative="1" as="geometry">
<mxPoint x="-96" y="-1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-95" value="SNAT&nbsp; -d 192.168.0.2 -&gt; 10.10.70.49" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="634.0000049167361" y="1255" as="geometry">
<mxPoint x="-84" y="-15" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-96" value="K8s&nbsp;&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#ffe6cc;strokeColor=#d79b00;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="80" y="903.31" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-97" value="ClusterIP 10.96.0.1:443" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="80.00059577615252" y="939.3982663871757" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-98" value="SCC" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#d0cee2;strokeColor=#56517e;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="80" y="990" width="320" height="83.14" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-99" value="<span style="text-align: center">etho:10.233.120.204/32</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#b85450;container=0;fillColor=#f8cecc;align=left;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.14541976746716" y="1049.0907756822432" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-100" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="80.0015939199069" y="1049.09" width="132.14458023253295" height="24.04614954517096" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-101" value="SNAT&nbsp; -d 10.10.70.39 -&gt; 10.10.70.49" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="550.0000049167361" y="1190" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-102" value="CNF" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#b0e3e6;strokeColor=#0e8088;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="80" y="1090" width="397" height="170" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-103" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#FFCCCC;strokeWidth=2;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-104" target="zDP1lCEH5pOsNmwnzGiS-97">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="580" y="1134" />
<mxPoint x="580" y="951" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-104" value="<span>etho:10.233.120.205/32<br></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="344.3105957761525" y="1116.2682663871758" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-105" value="net0: 172.16.70.49/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="344.3128276768839" y="1140.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-106" value="net1: 10.154.142.15/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;fillColor=#CCFF99;align=left;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="344.3128276768839" y="1164.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-107" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.16984140027944" y="1140.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-108" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.16984140027944" y="1164.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-109" value="10.10.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.16984140027944" y="1187.9963793267723" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-110" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.17059577615248" y="1116.2673040957163" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-111" value="net2: 10.10.70.49/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="344.3128276768839" y="1187.9971506481368" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-112" value="<span>vti_192.168.0.1</span><br><span>encap: UNSPEC</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;fontSize=10;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="344.85282767688386" y="1211.9088842609606" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-113" value="<span style="font-size: 10px">vti_192.168.0.2<br></span><span style="font-size: 10px">encap: UNSPEC</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="344.3128276768839" y="1236.0890377085402" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-114" value="192.168.0.1&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.16984140027944" y="1211.9063793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-115" value="192.168.0.2&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="212.70984140027946" y="1236.0863793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-116" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.25;entryDx=0;entryDy=0;fontSize=10;fontColor=#67AB9F;strokeColor=#FFCCCC;strokeWidth=2;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-99" target="zDP1lCEH5pOsNmwnzGiS-104">
<mxGeometry x="70" y="860" as="geometry">
<mxPoint x="477.4300000000003" y="1027.0699999999997" as="sourcePoint" />
<Array as="points">
<mxPoint x="553" y="1061" />
<mxPoint x="553" y="1122" />
<mxPoint x="476" y="1122" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-117" value="Host: default via 10.233.120.205 dev cali923c2bb432c&nbsp;" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;labelBackgroundColor=none;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="457.27000491673607" y="1056" as="geometry">
<mxPoint x="8" y="-3" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-118" value="DNAT&nbsp; -d 10.10.70.49:6443 -&gt; 10.96.0.1:443" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="560.0000049167361" y="1140.17" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-119" value="DNAT&nbsp; -d 192.168.0.1:6443 -&gt; 10.96.0.1:443" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="411.3600049167361" y="1425" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-120" value="DNAT&nbsp; -d 192.168.0.2:6443 -&gt; 10.96.0.1:443" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1656.000004916736" y="1424" as="geometry">
<mxPoint x="4" y="-2" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-121" value="DNAT&nbsp; -d 10.10.70.39:10001 -&gt; 192.169.0.2:80" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1240.000004916736" y="1127.22" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-122" value="DNAT&nbsp; -d 192.169.0.2:80 -&gt; 10.10.70.39:10001" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="552.0000049167361" y="1598.09" as="geometry">
<mxPoint x="13" y="3" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-123" value="SNAT&nbsp; -d 10.10.70.39:10001-&gt; 192.169.0.1" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="553.0000049167361" y="1616" as="geometry">
<mxPoint x="13" y="3" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-127" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#FFCCCC;strokeWidth=2;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-131" target="zDP1lCEH5pOsNmwnzGiS-126">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1900" y="1038" />
<mxPoint x="1900" y="948" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-125" value="K8s&nbsp;&nbsp;" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#ffe6cc;strokeColor=#d79b00;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1370" y="900" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-126" value="ClusterIP 10.96.0.1:443" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1370.0005957761525" y="936.0882663871757" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-129" value="<font color="#000000">Hub-b</font>" style="rounded=1;whiteSpace=wrap;html=1;fontSize=22;verticalAlign=top;arcSize=3;dashed=1;container=0;fillColor=none;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1360" y="860" width="550" height="317" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-130" value="CNF" style="rounded=0;whiteSpace=wrap;html=1;align=left;verticalAlign=top;labelBorderColor=#9AC7BF;fontSize=18;container=0;fillColor=#b0e3e6;strokeColor=#0e8088;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1370" y="1000" width="397" height="170" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-131" value="<span>etho:10.233.81.200/32<br></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;container=0;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1634.3105957761525" y="1026.2682663871758" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-132" value="net0: 172.16.70.39/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#FFFF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1634.312827676884" y="1050.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-133" value="net1: 10.154.142.10/18" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;fillColor=#CCFF99;align=left;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1634.312827676884" y="1074.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-134" value="172.16.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1502.1698414002794" y="1050.1744547438532" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-135" value="10.154.128.0/18&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1502.1698414002794" y="1074.0854170353127" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-136" value="10.10.70.0/24&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1502.1698414002794" y="1097.9963793267723" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-137" value="<font style="font-size: 10px">default via 169.254.1.1&nbsp; --&gt;</font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1502.1705957761524" y="1026.2673040957163" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-138" value="net2: 10.10.70.59/24" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1634.312827676884" y="1097.9971506481368" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-140" value="<span style="font-size: 10px">vti_192.169.0.2<br></span><span style="font-size: 10px">encap: UNSPEC</span>" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1634.312827676884" y="1146.0890377085402" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-142" value="192.169.0.2&nbsp; --&gt;" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1502.7098414002794" y="1146.0863793267724" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-143" value="DNAT&nbsp; -d 10.10.70.39:6443 -&gt; 10.96.0.1:443" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1850.000004916736" y="1030.27" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-144" value="SNAT&nbsp; -d 192.168.0.2 -&gt; 10.10.70.39" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=8;container=0;" vertex="1" connectable="0" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1835.000004916736" y="1150" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-148" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-146" target="zDP1lCEH5pOsNmwnzGiS-147">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-146" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;container=0;fontSize=10;align=right;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1502.1398414002795" y="1122.1763793267723" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-147" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#82b366;container=0;align=left;fillColor=#99FF99;" vertex="1" parent="zDP1lCEH5pOsNmwnzGiS-1">
<mxGeometry x="1634.282827676884" y="1121.9071506481368" width="132.14298627660452" height="23.91096229145962" as="geometry" />
</mxCell>
<mxCell id="zDP1lCEH5pOsNmwnzGiS-149" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#A680B8;" edge="1" parent="zDP1lCEH5pOsNmwnzGiS-1" source="zDP1lCEH5pOsNmwnzGiS-28" target="zDP1lCEH5pOsNmwnzGiS-138">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1330" y="1110" />
<mxPoint x="1330" y="980" />
<mxPoint x="1830" y="980" />
<mxPoint x="1830" y="1110" />
</Array>
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="5bWuyNMVx1Kd31vIhpog" name="Page-2">
<mxGraphModel dx="1550" dy="786" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1100" pageHeight="850" math="0" shadow="0">
<root>
<mxCell id="k9evvxkGITG99g3hpbCS-0" />
<mxCell id="k9evvxkGITG99g3hpbCS-1" parent="k9evvxkGITG99g3hpbCS-0" />
<mxCell id="k9evvxkGITG99g3hpbCS-2" value="" style="group" parent="k9evvxkGITG99g3hpbCS-1" vertex="1" connectable="0">
<mxGeometry x="230" y="560" width="620" height="378.86" as="geometry" />
</mxCell>
<mxCell id="k9evvxkGITG99g3hpbCS-3" value="SDEWAN ENV for Test" style="rounded=0;whiteSpace=wrap;html=1;verticalAlign=bottom;dashed=1;align=left;labelBorderColor=none;fontStyle=1;strokeColor=#FFD966;fontColor=#FFD966;" parent="k9evvxkGITG99g3hpbCS-2" vertex="1">
<mxGeometry y="248.86" width="620" height="130" as="geometry" />
</mxCell>
<mxCell id="k9evvxkGITG99g3hpbCS-4" value="SDEWAN Demo ENV" style="rounded=0;whiteSpace=wrap;html=1;verticalAlign=bottom;dashed=1;align=left;labelBorderColor=none;fontStyle=1;fontColor=#EA6B66;strokeColor=#EA6B66;" parent="k9evvxkGITG99g3hpbCS-2" vertex="1">
<mxGeometry y="78.86000000000001" width="620" height="150" as="geometry" />
</mxCell>