forked from MicrosoftDocs/azure-stack-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.openpublishing.redirection.json
1334 lines (1333 loc) · 53.8 KB
/
.openpublishing.redirection.json
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
{
"redirections": [
{
"source_path":"azure-stack/hci/manage/preview-channel.md",
"redirect_url":"/azure-stack/hci/deploy/download-azure-stack-hci-23h2-software",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/manage/faqs-arc-enabled-vms.md",
"redirect_url":"/azure-stack/hci/manage/azure-arc-vms-faq",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/deploy/deployment-checklist.md",
"redirect_url":"/azure-stack/hci/deploy/deployment-prerequisites",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/manage/sdn-express-23h2.md",
"redirect_url":"/azure-stack/hci/deploy/sdn-express-23h2",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/concepts/other-security-features.md",
"redirect_url":"/azure-stack/hci/concepts/security-features",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/concepts/security-windows-defender-application-control.md",
"redirect_url":"/azure-stack/hci/manage/manage-wdac",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/concepts/secure-baseline.md",
"redirect_url":"/azure-stack/hci/manage/manage-secure-baseline",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/concepts/security-bitlocker.md",
"redirect_url":"/azure-stack/hci/manage/manage-bitlocker",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/manage/create-virtual-networks.md",
"redirect_url":"/azure-stack/hci/manage/create-logical-networks",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/manage/azure-arc-vm-management-networking.md",
"redirect_url":"/azure-stack/hci/manage/azure-arc-vm-management-overview",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/manage/manage-virtual-machines-in-azure-portal.md",
"redirect_url":"/azure-stack/hci/manage/create-arc-virtual-machines",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/manage/uninstall-arc-resource-bridge.md",
"redirect_url":"/azure-stack/hci/manage/azure-arc-vm-management-overview/",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/manage/deploy-arc-resource-bridge-using-command-line.md",
"redirect_url":"/azure-stack/hci/manage/azure-arc-vm-management-overview/",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/manage/deploy-arc-resource-bridge-using-wac.md",
"redirect_url":"/azure-stack/hci/manage/deploy-arc-resource-bridge-using-command-line/",
"redirect_document_id": false
},
{
"source_path":"azure-stack/hci/plan/two-node-decision-matrix.md",
"redirect_url":"/azure-stack/hci/plan/two-node-components",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/iot-hub-rp-install.md",
"redirect_url": "/azure/iot-hub/",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/iot-hub-rp-manage.md",
"redirect_url": "/azure/iot-hub/",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/iot-hub-rp-overview.md",
"redirect_url": "/azure/iot-hub/",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/iot-hub-rp-prerequisites.md",
"redirect_url": "/azure/iot-hub/",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/iot-hub-rp-rotate-secrets.md",
"redirect_url": "/azure/iot-hub/",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/iot-hub-connect-iot-edge-device.md",
"redirect_url": "/azure/iot-hub/",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/iot-hub-overview.md",
"redirect_url": "/azure/iot-hub/",
"redirect_document_id": false
},
{
"source_path": "azure-stack/mdc/operator/container-registry-template-install-tzl.md",
"redirect_url": "/azure-stack/mdc/mdc-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/mdc/operator/container-registry-template-update-tzl.md",
"redirect_url": "/azure-stack/mdc/mdc-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/mdc/operator/container-registry-template-rotate-secrets-tzl.md",
"redirect_url": "/azure-stack/mdc/mdc-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/ruggedized/operator/container-registry-template-install-tzl.md",
"redirect_url": "/azure-stack/ruggedized/ruggedized-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/ruggedized/operator/container-registry-template-update-tzl.md",
"redirect_url": "/azure-stack/ruggedized/ruggedized-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/ruggedized/operator/container-registry-template-rotate-secrets-tzl.md",
"redirect_url": "/azure-stack/ruggedized/ruggedized-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-create-service-principals.md",
"redirect_url": "/azure/active-directory/develop/howto-create-service-principal-portal",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/app-service-known-issues-v0.md",
"redirect_url": "/azure-stack/operator/app-service-release-notes-2021-q1#known-issues-update",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/app-service-known-issues-v1.md",
"redirect_url": "/azure-stack/operator/app-service-release-notes-2020-q3#known-issues-update",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/app-service-known-issues-v2.md",
"redirect_url": "/azure-stack/operator/app-service-release-notes-2020-q2#known-issues-update",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/known-issues-vn.md",
"redirect_url": "/azure-stack/operator/known-issues",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/known-issues-v0.md",
"redirect_url": "/azure-stack/operator/known-issues?view=azs-2206",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/known-issues-v1.md",
"redirect_url": "/azure-stack/operator/known-issues?view=azs-2108",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/known-issues-v2.md",
"redirect_url": "/azure-stack/operator/known-issues?view=azs-2102",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/known-issues-v3.md",
"redirect_url": "/azure-stack/operator/relnotearchive/known-issues?view=azs-2008",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/hotfix-v0.md",
"redirect_url": "/azure-stack/operator/hotfix-1-2206-1-25",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/hotfix-1-2102-30-111.md",
"redirect_url": "/azure-stack/operator",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/hotfix-1-2102-30-122.md",
"redirect_url": "/azure-stack/operator",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/hotfix-1-2108-2-71.md",
"redirect_url": "/azure-stack/operator/hotfix-1-2108-2-83",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/hotfix-1-2108-2-73.md",
"redirect_url": "/azure-stack/operator/hotfix-1-2108-2-83",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/hotfix-1-2108-2-81.md",
"redirect_url": "/azure-stack/operator/hotfix-1-2108-2-83",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-known-issues-1802.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1802",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-known-issues-1803.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1803",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-known-issues-1804.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1804",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-known-issues-1805.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1805",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-known-issues-1807.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1807",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-known-issues-1808.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1808",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-known-issues-1809.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1809",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-known-issues-1811.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1811",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-known-issues-1901.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1901",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-known-issues-1902.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1902",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-known-issues-1903.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1903",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/known-issues-1904.md",
"redirect_url": "/azure-stack/operator/relnotearchive/known-issues?view=azs-1904",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/known-issues-1905.md",
"redirect_url": "/azure-stack/operator/relnotearchive/known-issues?view=azs-1905",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/known-issues-1906.md",
"redirect_url": "/azure-stack/operator/relnotearchive/known-issues?view=azs-1906",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/known-issues-1907.md",
"redirect_url": "/azure-stack/operator/relnotearchive/known-issues?view=azs-1907",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/known-issues-1908.md",
"redirect_url": "/azure-stack/operator/relnotearchive/known-issues?view=azs-1908",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/known-issues-1910.md",
"redirect_url": "/azure-stack/operator/relnotearchive/known-issues?view=azs-1910",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-1904.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1904",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-1905.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1905",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-1906.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1906",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-1907.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1907",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-1908.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1908",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/relnotearchive/release-notes-1910.md",
"redirect_url": "/azure-stack/operator/relnotearchive/release-notes?view=azs-1910",
"redirect_document_id": false
},
{
"source_path": "azure-stack/mdc/customer-journey.md",
"redirect_url": "/azure-stack/mdc/integration-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/ruggedized/customer-journey.md",
"redirect_url": "/azure-stack/ruggedized/integration-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-diagnostic-log-collection-overview.md",
"redirect_url": "/azure-stack/operator/diagnostic-log-collection",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-configure-automatic-diagnostic-log-collection.md",
"redirect_url": "/azure-stack/operator/diagnostic-log-collection",
"redirect_document_id": false
},
{
"source_path": "azure-stack/mdc/extended-storage-firmware-updates.md",
"redirect_url": "/azure-stack/mdc/extended-storage-health-checks",
"redirect_document_id": false
},
{
"source_path": "azure-stack/ruggedized/customer-replaceable-unit/install-firmware-using-idrac.md",
"redirect_url": "/azure-stack/ruggedized/customer-replaceable-unit/required-knowledge-scale-unit-nodes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-configure-on-demand-diagnostic-log-collection-portal.md",
"redirect_url": "/azure-stack/operator/diagnostic-log-collection",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-configure-on-demand-diagnostic-log-collection-powershell.md",
"redirect_url": "/azure-stack/operator/diagnostic-log-collection",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/app-service-deploy-ha.md",
"redirect_url": "/azure-stack/operator/azure-stack-app-service-deploy",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/index.yml",
"redirect_url": "/hybrid/app-solutions/",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/overview-app-design-considerations.md",
"redirect_url": "/hybrid/app-solutions/overview-app-design-considerations",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/overview-patterns-solution-examples.md",
"redirect_url": "/hybrid/app-solutions/overview-patterns-solution-examples",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-configure-on-demand-diagnostic-log-collection.md",
"redirect_url": "azure-stack-configure-on-demand-diagnostic-log-collection-portal",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/pattern-cicd-pipeline.md",
"redirect_url": "/hybrid/app-solutions/pattern-cicd-pipeline",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/pattern-cross-cloud-scale-onprem-data.md",
"redirect_url": "/hybrid/app-solutions/pattern-cross-cloud-scale-onprem-data",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/pattern-cross-cloud-scale.md",
"redirect_url": "/hybrid/app-solutions/pattern-cross-cloud-scale",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/pattern-geo-distributed.md",
"redirect_url": "/hybrid/app-solutions/pattern-geo-distributed",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/pattern-hybrid-relay.md",
"redirect_url": "/hybrid/app-solutions/pattern-hybrid-relay",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/pattern-out-of-stock-at-edge.md",
"redirect_url": "/hybrid/app-solutions/pattern-out-of-stock-at-edge",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/pattern-retail-footfall-detection.md",
"redirect_url": "/hybrid/app-solutions/pattern-retail-footfall-detection",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/pattern-tiered-data-analytics.md",
"redirect_url": "/hybrid/app-solutions/pattern-tiered-data-analytics",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/pattern-train-ml-model-at-edge.md",
"redirect_url": "/hybrid/app-solutions/pattern-train-ml-model-at-edge",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/solution-deployment-guide-connectivity.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-connectivity",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/solution-deployment-guide-cross-cloud-scaling-onprem-data.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-cross-cloud-scaling-onprem-data",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/solution-deployment-guide-cross-cloud-scaling.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-cross-cloud-scaling",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/solution-deployment-guide-geo-distributed.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-geo-distributed",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/solution-deployment-guide-identity.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-identity",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/solution-deployment-guide-mongodb-ha.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-mongodb-ha",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/solution-deployment-guide-retail-footfall-detection.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-retail-footfall-detection",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hybrid/solution-deployment-guide-sql-ha.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-sql-ha",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-app-service-deploy-offline.md",
"redirect_url": "/azure-stack/operator/azure-stack-app-service-deploy?pivots=state-disconnected",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-app-service-update-offline.md",
"redirect_url": "/azure-stack/operator/azure-stack-app-service-update?pivots=state-disconnected",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-create-vpn-connection-one-node.md",
"redirect_url": "/azure-stack/user/azure-stack-vpn-gateway-about-vpn-gateways",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-solution-sql-ha.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-sql-ha",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-best-practices-automatic-diagnostic-log-collection.md",
"redirect_url": "/azure-stack/operator/azure-stack-overview",
"redirect_document_id": true
},
{
"source_path": "azure-stack/user/azure-stack-solution-mongodb-ha.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-mongodb-ha",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-solution-staged-data.md",
"redirect_url": "https://aka.ms/tiereddatadeploy",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-solution-hybrid-cloud.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-cross-cloud-scaling-onprem-data",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-solution-geo-distributed.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-geo-distributed",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-solution-cloud-burst.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-cross-cloud-scaling",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-solution-hybrid-connectivity.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-connectivity",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-solution-hybrid-identity.md",
"redirect_url": "/hybrid/app-solutions/solution-deployment-guide-identity",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-solution-pipeline.md",
"redirect_url": "https://aka.ms/hybriddevopsdeploy",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-hybrid-cloud-patterns.md",
"redirect_url": "/hybrid/app-solutions/overview-patterns-solution-examples",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-edge-pattern-geo-distribution.md",
"redirect_url": "/hybrid/app-solutions/pattern-geo-distributed",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/hybrid-solution-retail-footfall-detection.md",
"redirect_url": "/hybrid/app-solutions/pattern-retail-footfall-detection",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-edge-pattern-hybrid-ci-cd.md",
"redirect_url": "/hybrid/app-solutions/pattern-cicd-pipeline",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-edge-pattern-cross-cloud-scaling.md",
"redirect_url": "/hybrid/app-solutions/pattern-cross-cloud-scale",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-edge-pattern-overview.md",
"redirect_url": "/hybrid/app-solutions/overview-app-design-considerations",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-plan-offer-quota-overview.md",
"redirect_url": "/azure-stack/operator/service-plan-offer-subscription-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-operations-checklist.md",
"redirect_url": "/azure-stack/operator/azure-stack-manage-basics",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-offer-services-overview.md",
"redirect_url": "/azure-stack/operator/service-plan-offer-subscription-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-tutorial-tenant-vm.md",
"redirect_url": "/azure-stack/operator/tutorial-offer-services",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-tutorial-sql-server.md",
"redirect_url": "/azure-stack/operator/azure-stack-sql-resource-provider",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-tutorial-app-service.md",
"redirect_url": "/azure-stack/operator/azure-stack-app-service-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/capacity-planning.md",
"redirect_url": "/azure-stack/operator/azure-stack-capacity-planning-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/capacity-planning-storage.md",
"redirect_url": "/azure-stack/operator/capacity-planning",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-diagnostics.md",
"redirect_url": "/azure-stack/operator/azure-stack-configure-on-demand-diagnostic-log-collection",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-help-and-support.md",
"redirect_url": "/azure-stack/operator/azure-stack-help-and-support-overview",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/capacity-planning-compute.md",
"redirect_url": "/azure-stack/operator/capacity-planning",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/capacity-planning-spreadsheet.md",
"redirect_url": "/azure-stack/operator/capacity-planning",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-version-profiles-powershell.md",
"redirect_url": "/azure-stack/operator/azure-stack-powershell-install",
"redirect_document_id": true
},
{
"source_path": "azure-stack/operator/azure-stack-update-1710.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1711.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1712.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1802.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1803.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1804.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1805.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1807.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1808.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1809.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1811.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1901.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1902.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-1903.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-1904.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-1905.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-1906.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-1907.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-1908.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-1910.md",
"redirect_url": "/azure-stack/operator/release-notes",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-known-issues-1904.md",
"redirect_url": "/azure-stack/operator/known-issues",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-known-issues-1905.md",
"redirect_url": "/azure-stack/operator/known-issues",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-known-issues-1906.md",
"redirect_url": "/azure-stack/operator/known-issues",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-known-issues-1907.md",
"redirect_url": "/azure-stack/operator/known-issues",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-known-issues-1908.md",
"redirect_url": "/azure-stack/operator/known-issues",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-security-updates-1904.md",
"redirect_url": "/azure-stack/operator/release-notes-security-updates",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-security-updates-1905.md",
"redirect_url": "/azure-stack/operator/release-notes-security-updates",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-security-updates-1906.md",
"redirect_url": "/azure-stack/operator/release-notes-security-updates",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-security-updates-1907.md",
"redirect_url": "/azure-stack/operator/release-notes-security-updates",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-security-updates.md",
"redirect_url": "/azure-stack/operator/release-notes-security-updates",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-release-notes-checklist.md",
"redirect_url": "/azure-stack/operator/release-notes-checklist",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-solution-staged-data-analytics.md",
"redirect_url": "/azure-stack/user/azure-stack-solution-staged-data",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-create-service-principals.md",
"redirect_url": "/azure/active-directory/develop/howto-create-service-principal-portal",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-kubernetes-ask-engine-support.md",
"redirect_url": "/azure-stack/operator/azure-stack-kubernetes-aks-engine-support",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-update-plan.md",
"redirect_url": "/azure-stack/operator/release-notes-checklist",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-hci-overview.md",
"redirect_url": "/azure-stack/hci/overview",
"redirect_document_id": true
},
{
"source_path": "azure-stack/operator/azure-stack-updates-troubleshoot.md",
"redirect_url": "/azure-stack/operator/azure-stack-troubleshooting",
"redirect_document_id": false
},
{
"source_path": "azure-stack/operator/azure-stack-diagnostic-log-collection-overview-tzl.md",
"redirect_url": "/azure-stack/operator/diagnostic-log-collection",
"redirect_document_id": true
},
{
"source_path": "azure-stack/operator/azure-stack-help-and-support-overview-tzl.md",
"redirect_url": "/azure-stack/operator/azure-stack-help-and-support-overview",
"redirect_document_id": true
},
{
"source_path": "azure-stack/operator/azure-stack-azsreadiness-cmdlet.md",
"redirect_url": "/azure-stack/operator/azure-stack-validate-identity",
"redirect_document_id": true
},
{
"source_path": "azure-stack/operator/azure-stack-update-servicing-policy.md",
"redirect_url": "/azure-stack/operator/azure-stack-servicing-policy",
"redirect_document_id": true
},
{
"source_path": "azure-stack/ruggedized/customer-replaceable-unit/emc-poweredge-tactical-indicators-and-codes.md",
"redirect_url": "/azure-stack/ruggedized/customer-replaceable-unit/indicators-and-codes",
"redirect_document_id": true
},
{
"source_path": "azure-stack/ruggedized/customer-replaceable-unit/emc-poweredge-tactical-r640-server-overview.md",
"redirect_url": "/azure-stack/ruggedized/customer-replaceable-unit/r640-server-overview",
"redirect_document_id": true
},
{
"source_path": "azure-stack/hci/deploy/before-you-start.md",
"redirect_url": "/azure-stack/hci/concepts/system-requirements",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/concepts/plan-host-networking.md",
"redirect_url": "/azure-stack/hci/concepts/host-network-requirements",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/deploy/network-controller-powershell.md",
"redirect_url": "/azure-stack/hci/manage/sdn-express",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/release-notes.md",
"redirect_url": "https://support.microsoft.com/help/4595086",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/deploy/deploy-vdi.md",
"redirect_url": "/azure-stack/hci/deploy/virtual-desktop-infrastructure",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/deploy/deploy-sql-server-workload.md",
"redirect_url": "/azure-stack/hci/deploy/sql-server",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/deploy/deploy-trusted-enterprise-virtualization.md",
"redirect_url": "/azure-stack/hci/deploy/trusted-enterprise-virtualization",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/known-issues.md",
"redirect_url": "/azure-stack/hci/hci-known-issues",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/deploy/witness.md",
"redirect_url": "/azure-stack/hci/manage/witness",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/manage/use-datacenter-firewall.md",
"redirect_url": "/azure-stack/hci/manage/use-datacenter-firewall-powershell",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/concepts/configure-firewalls.md",
"redirect_url": "/azure-stack/hci/manage/configure-firewalls",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/deploy/sdn-express.md",
"redirect_url": "/azure-stack/hci/manage/sdn-express",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/concepts/persistent-memory-direct-access.md",
"redirect_url": "/windows-server/storage/storage-spaces/persistent-memory-direct-access",
"redirect_document_id": false
},
{
"source_path": "windows-server/failover-clustering/health-service-overview.md",
"redirect_url": "/azure-stack/hci/manage/health-service-overview",
"redirect_document_id": false
},
{
"source_path": "windows-server/failover-clustering/health-service-actions.md",
"redirect_url": "/azure-stack/hci/manage/health-service-actions",
"redirect_document_id": false
},
{
"source_path": "windows-server/failover-clustering/health-service-settings.md",
"redirect_url": "/azure-stack/hci/manage/health-service-settings",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/deploy/deployment-overview.md",
"redirect_url": "/azure-stack/hci/deploy/operating-system",
"redirect_document_id": true
},
{
"source_path": "azure-stack/hci/manage/azure-monitor.md",
"redirect_url": "/azure-stack/hci/manage/monitor-hci-single",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/manage/monitor-azure-portal.md",
"redirect_url": "/azure-stack/hci/manage/monitor-hci-single",
"redirect_document_id": true
},
{
"source_path": "azure-stack/hci/manage/azure-stack-hci-insights.md",
"redirect_url": "/azure-stack/hci/manage/monitor-hci-multi",
"redirect_document_id": true
},
{
"source_path": "azure-stack/hci/manage/manage-azure-registration.md",
"redirect_url": "/azure-stack/hci/deploy/register-with-azure",
"redirect_document_id": true
},
{
"source_path": "azure-stack/hci/manage/use-azure-backup.md",
"redirect_url": "/azure/backup/back-up-azure-stack-hyperconverged-infrastructure-virtual-machines",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/manage/use-azure-network-adapter.md",
"redirect_url": "/windows-server/manage/windows-admin-center/azure/use-azure-network-adapter",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-network-howto-vnet-peering.md",
"redirect_url": "/azure-stack/user/deploy-foundational-patterns/",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/network-howto-vpn-tunnel.md",
"redirect_url": "/azure-stack/user/deploy-foundational-patterns/",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/network-howto-vpn-tunnel-gre.md",
"redirect_url": "/azure-stack/user/deploy-foundational-patterns/",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/network-howto-vpn-tunnel-ipsec.md",
"redirect_url": "/azure-stack/user/deploy-foundational-patterns/",
"redirect_document_id": false
},
{
"source_path": "azure-stack/hci/manage/configure-firewalls.md",
"redirect_url": "/azure-stack/hci/concepts/firewall-requirements",
"redirect_document_id": false
},
{
"source_path": "azure-stack/user/azure-stack-solution-template-cognitive-services.md",