-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanswerfile.yml
executable file
·1300 lines (1276 loc) · 36.1 KB
/
answerfile.yml
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
---
Valid_Pod_Config_File: true
ISOMountPoint: "{{ Target.ISOMount }}/{{ Deploy.Software.vCenter.Vendor }}_{{ Deploy.Software.vCenter.Product }}_{{ Deploy.Software.vCenter.Version }}"
LOCAL_LicenseFile: ../licenses.yml
LOCAL_IPPools_Template: "{{ Target.TemplateFolder }}/vars_NSXT_IPPools.j2"
LOCAL_UplinkProfiles_Template: "{{ Target.TemplateFolder }}/vars_NSXT_UplinkProfiles.j2"
LOCAL_TransportNodeProfiles_Template: "{{ Target.TemplateFolder }}/vars_NSXT_TransportNodeProfiles.j2"
LOCAL_EdgeTnTemplate: "{{ Target.TemplateFolder }}/vars_NSXT_EdgeTransportNodes.j2"
LOCAL_EdgeClusterTemplate: "{{ Target.TemplateFolder }}/vars_NSXT_EdgeClusters.j2"
LOCAL_Segments_Template: "{{ Target.TemplateFolder }}/vars_NSXT_Segments.j2"
LOCAL_T0Gateways_Template: "{{ Target.TemplateFolder }}/vars_NSXT_T0Gateways.j2"
LOCAL_T1Gateways_Template: "{{ Target.TemplateFolder }}/vars_NSXT_T1Gateways.j2"
#SDDCLab:
# Version: 3
DEBUG:
DisplayDelayInSeconds: 5
DisplayVariables: false
DisplayVariables_DNS: false
KeepConfigFiles: false
KeepInstallerFiles: false
Deploy:
Product:
Router: False
vRLI: False
DNSServer: False
NSXT:
GlobalManager: False
LocalManager: True
CloudServicesManager: False
Edge: True
AVI: True
Setting:
IPv4: True
IPv6: False
UseNFS: True
UseDNS: True
EnableSSH: True
Software:
Options:
UseLocalInstaller: True
KeepNewInstallers: True
UnmountISO: True
vCenter:
Vendor: "VMware"
Product: "vCenter"
Version: "7.0U3G"
Patch: False
Config: "vCenter.conf"
Installer: "Installer-vCenter"
Template:
Repl_vCenter: "vCenter_v7.0.0_embedded_vCSA_replication_on_VC.j2"
Repl_ESXi: "vCenter_v7.0.0_embedded_vCSA_replication_on_ESXi.j2"
vCenter: "vCenter_v7.0.0_embedded_vCSA_on_VC.j2"
ESXi: "vCenter_v7.0.0_embedded_vCSA_on_ESXi.j2"
Directory: "/hdd/Software/VMware/vCenter/v7.0U3G"
File: "VMware-VCSA-all-7.0.3-20150588.iso"
FileExt: "iso"
vSwitch: "7.0.0"
ESXi:
Vendor: "VMware"
Product: "ESXi"
Version: "7.0U3G"
Patch: False
Config: "KS.CFG"
Installer: "Installer-ESXi"
Template: "ESXi_v7.x.x_Kickstart.j2"
Directory: "/hdd/Software/VMware/ESXi/7.0U3G"
File: "VMware-VMvisor-Installer-7.0U3g-20328353.x86_64.iso"
FileExt: "iso"
vSwitch: "7.0.0"
NSXT:
Vendor: "VMware"
Product: "NSXT"
Version: "4.0.0"
Patch: False
Config: "NSXT.conf"
Installer: "Installer-NSXT"
Directory: "/hdd/Software/VMware/NSX-T/v4.0.0"
File: "nsx-unified-appliance-4.0.0.1.0.20159694.ova"
FileExt: "ova"
AVI:
Vendor: "VMware"
Product: "ALB"
Version: "22.1.1"
Patch: False
Config: "AVI.conf"
Installer: "Installer-AVI"
Directory: "/hdd/Software/VMware/AVI/22.1.1"
File: "controller-21.1.3-9051.ova"
FileExt: "ova"
##
## The 'Common' section are settings used by the various nested lab components, except for the Nested_Router.
## The physical real-world NTP time server that is used to obtain time for the lab is defined in the Nested_Router section.
## The DNS servers listed below MUST be able to resolve DNS names on the public Internet.
##
Common:
Annotation: "*** Auto-Deployed by Ansible Infrastrcture as a code ***"
DNS:
Domain: nsxcloud.lab
Server1:
IPv4: 198.51.100.53
Server2:
IPv4: 198.51.100.1
DiskProvisioning: thin
NFS:
Datastore: NFS-HDD
Path: /hdd/nfs-hdd
Server:
IPv4: 198.51.100.7
Type: nfs
NTP:
Server1:
IPv4: 198.51.100.1
Server2:
IPv4: 216.239.35.8
Password:
Nested: VMware1!
Physical: VMware1!
Syslog:
IPv4: 198.51.100.7
Port: 514
Protocol: udp
Motd: "This is Secure Server managed by nsxcloud"
Banner: "This is Secure Server managed by nsxcloud"
##
## Users should specify their deployment target settings in the 'TargetConfig' section
##
Target:
Cluster: "" #if Target/Deployment is vCenter put the cluster name
Physical_Cluster: "Physical-Cluster"
DataCenter: NSX-Cloud
Datastore: SSD-500GB
DatastoreSSD: SSD-1TB #This DataStore is used for vCenter, NSX Manager and EDGE Appliances VM deployments
Deployment: Host #Value should be Host (Physical ESXi Host) or vCenter for Target deployment
FQDN: vsphere.nsxcloud.lab
ISOFolder: /ISO-Storage
ISOMount: /media
PortGroup:
Management:
Name: Physical-MGMT-PG
VLAN: "0"
# RouterUplink: Lab-Routers
Trunk:
Name: Physical-TRUNK-PG
VLAN: "4095"
TempFolder: /tmp/Cloud
TemplateFolder: ../templates
User: root
Password: VMware1!
VMFolder: LAB/vm
vSwitch: vSwitch0 #vSwitch name should match with physical ESXi host
# DvSwitch: vSphere-VDS
# vSwitchVersion: ""
Nested_Clusters:
Compute-A:
DRS: true
DeployHosts: true
HA: false
NSXT_TransportNodeProfile: TNP-Compute-A-Hosts
NSXT_TNP: TNP1
Prep_NSX: true
vSAN: false
vsanDatastore: Cluster-A-vSAN-DS
Compute-B:
DRS: true
DeployHosts: true
HA: false
NSXT_TransportNodeProfile: TNP-Compute--Hosts
NSXT_TNP: TNP2
Prep_NSX: true
vSAN: false
vsanDatastore: Cluster-B-vSAN-DS
Nested_ESXi:
FirewallRules: # ESXi host firewall rules to configure on all deployed ESXi hosts
- allowed_hosts:
all_ip: true
enabled: true
name: syslog
HardwareSettings:
Compute-A:
BootDiskSize: 20
CPU: 4
CoresPerSocket: 4
Memory: 16384
vSAN:
CacheSize: 50 # CacheSize and CapacitySize MUST be different values. Normally, CacheSize is smaller than CapacitySize.
CapacitySize: 300 # CacheSize and CapacitySize MUST be different values. Normally, CacheSize is smaller than CapacitySize.
Compute-B:
BootDiskSize: 20
CPU: 4
CoresPerSocket: 4
Memory: 16384
vSAN:
CacheSize: 50 # CacheSize and CapacitySize MUST be different values. Normally, CacheSize is smaller than CapacitySize.
CapacitySize: 300 # CacheSize and CapacitySize MUST be different values. Normally, CacheSize is smaller than CapacitySize.
HostCA:
Compute-A-1:
Cluster: Compute-A
EnableSSH: true
FQDN: Compute-A-1.nsxcloud.lab
Password: VMware1!
User: root
VMName: vSphere-Compute-A-1
vmk:
vmk0:
Address:
IPv4:
Address: 10.1.0.11
Gateway: 10.1.0.1
Prefix: "24"
IPSettings: ipv4
MTU: 1500
PortGroup: Compute-A-MGMT-DPG
Stack: default
VLAN: "10"
vmk1:
Address:
IPv4:
Address: 10.1.1.11
Gateway: 10.1.1.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-A-vMotion-DPG
Stack: vmotion
VLAN: "11"
vmk2:
Address:
IPv4:
Address: 10.1.2.11
Gateway: 10.1.2.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-A-vSAN-DPG
Stack: default
VLAN: "12"
vmk3:
Address:
IPv4:
Address: 198.51.100.81
Gateway: 198.51.100.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-A-NFS-DPG
Stack: default
VLAN: "0"
Compute-A-2:
Cluster: Compute-A
EnableSSH: true
FQDN: Compute-A-2.nsxcloud.lab
Password: VMware1!
User: root
VMName: vSphere-Compute-A-2
vmk:
vmk0:
Address:
IPv4:
Address: 10.1.0.12
Gateway: 10.1.0.1
Prefix: "24"
IPSettings: ipv4
MTU: 1500
PortGroup: Compute-A-MGMT-DPG
Stack: default
VLAN: "10"
vmk1:
Address:
IPv4:
Address: 10.1.1.12
Gateway: 10.1.1.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-A-vMotion-DPG
Stack: vmotion
VLAN: "11"
vmk2:
Address:
IPv4:
Address: 10.1.2.12
Gateway: 10.1.2.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-A-vSAN-DPG
Stack: default
VLAN: "12"
vmk3:
Address:
IPv4:
Address: 198.51.100.82
Gateway: 198.51.100.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-A-NFS-DPG
Stack: default
VLAN: "0"
Compute-A-3:
Cluster: Compute-A
EnableSSH: true
FQDN: Compute-A-3.nsxcloud.lab
Password: VMware1!
User: root
VMName: vSphere-Compute-A-3
vmk:
vmk0:
Address:
IPv4:
Address: 10.1.0.13
Gateway: 10.1.0.1
Prefix: "24"
IPSettings: ipv4
MTU: 1500
PortGroup: Compute-A-MGMT-DPG
Stack: default
VLAN: "10"
vmk1:
Address:
IPv4:
Address: 10.1.1.13
Gateway: 10.1.1.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-A-vMotion-DPG
Stack: vmotion
VLAN: "11"
vmk2:
Address:
IPv4:
Address: 10.1.2.13
Gateway: 10.1.2.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-A-vSAN-DPG
Stack: default
VLAN: "12"
vmk3:
Address:
IPv4:
Address: 198.51.100.83
Gateway: 198.51.100.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-A-NFS-DPG
Stack: default
VLAN: "0"
HostCB:
Compute-B-1:
Cluster: Compute-B
EnableSSH: true
FQDN: Compute-B-1.nsxcloud.lab
Password: VMware1!
User: root
VMName: vSphere-Compute-B-1
vmk:
vmk0:
Address:
IPv4:
Address: 10.2.0.11
Gateway: 10.2.0.1
Prefix: "24"
IPSettings: ipv4
MTU: 1500
PortGroup: Compute-B-MGMT-DPG
Stack: default
VLAN: "20"
vmk1:
Address:
IPv4:
Address: 10.2.1.11
Gateway: 10.2.1.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-B-vMotion-DPG
Stack: vmotion
VLAN: "21"
vmk2:
Address:
IPv4:
Address: 10.2.2.11
Gateway: 10.2.2.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-B-vSAN-DPG
Stack: default
VLAN: "22"
vmk3:
Address:
IPv4:
Address: 198.51.100.84
Gateway: 198.51.100.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-B-NFS-DPG
Stack: default
VLAN: "0"
Compute-B-2:
Cluster: Compute-B
EnableSSH: true
FQDN: Compute-B-2.nsxcloud.lab
Password: VMware1!
User: root
VMName: vSphere-Compute-B-2
vmk:
vmk0:
Address:
IPv4:
Address: 10.2.0.12
Gateway: 10.2.0.1
Prefix: "24"
IPSettings: ipv4
MTU: 1500
PortGroup: Compute-B-MGMT-DPG
Stack: default
VLAN: "20"
vmk1:
Address:
IPv4:
Address: 10.2.1.12
Gateway: 10.2.1.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-B-vMotion-DPG
Stack: vmotion
VLAN: "21"
vmk2:
Address:
IPv4:
Address: 10.2.2.12
Gateway: 10.2.2.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-B-vSAN-DPG
Stack: default
VLAN: "22"
vmk3:
Address:
IPv4:
Address: 198.51.100.85
Gateway: 198.51.100.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-B-NFS-DPG
Stack: default
VLAN: "0"
Compute-B-3:
Cluster: Compute-B
EnableSSH: true
FQDN: Compute-B-3.nsxcloud.lab
Password: VMware1!
User: root
VMName: vSphere-Compute-B-3
vmk:
vmk0:
Address:
IPv4:
Address: 10.2.0.13
Gateway: 10.2.0.1
Prefix: "24"
IPSettings: ipv4
MTU: 1500
PortGroup: Compute-B-MGMT-DPG
Stack: default
VLAN: "20"
vmk1:
Address:
IPv4:
Address: 10.2.1.13
Gateway: 10.2.1.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-B-vMotion-DPG
Stack: vmotion
VLAN: "21"
vmk2:
Address:
IPv4:
Address: 10.2.2.13
Gateway: 10.2.2.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-B-vSAN-DPG
Stack: default
VLAN: "22"
vmk3:
Address:
IPv4:
Address: 198.51.100.86
Gateway: 198.51.100.1
Prefix: "24"
IPSettings: ipv4
MTU: 9000
PortGroup: Compute-B-NFS-DPG
Stack: default
VLAN: "0"
vCenter:
Address:
IPv4:
Address: 198.51.100.5
Gateway: 198.51.100.1
Prefix: "24"
DataCenter: NSX-Cloud
DeploymentSize: tiny
FQDN: vcsa.nsxcloud.lab
Networking:
Physical:
Clusters:
- Target.Physical_Cluster
Config:
LinkDiscoveryProtocol:
Operation: both
Type: lldp
MTU: 9000
NumberOfUplinks: 2
Name: Physical-VDS
PortGroup:
Management:
Create: true
Name: Physical-MGMT-DPG
Security:
ForgedTransmits: false
MACAddressChanges: false
PromiscuousMode: false
VLAN:
ID: "0"
Type: VLAN
Trunk:
Create: true
Name: Physical-TRUNK-DPG
Security:
ForgedTransmits: false
MACAddressChanges: false
PromiscuousMode: false
VLAN:
ID: "1-200, 205, 400-4094"
Type: TRUNK
Uplink1:
Create: true
Name: ETN-1-Trunk-DPG
Security:
ForgedTransmits: false
MACAddressChanges: false
PromiscuousMode: false
VLAN:
ID: "1-500"
Type: TRUNK
Uplink2:
Create: true
Name: ETN-2-Trunk-DPG
Security:
ForgedTransmits: false
MACAddressChanges: false
PromiscuousMode: false
VLAN:
ID: "1-500"
Type: TRUNK
vSwitchE: #This VDS is used for EDGE Cluster deployment
Clusters:
vSwitchA:
Clusters:
- Compute-A
Config:
LinkDiscoveryProtocol:
Operation: both
Type: lldp
MTU: 9000
NumberOfUplinks: 2
Name: Compute-A-VDS
PortGroup:
Management:
Create: true
Name: Compute-A-MGMT-DPG
Security:
ForgedTransmits: false
MACAddressChanges: false
PromiscuousMode: false
VLAN:
ID: "10"
Type: VLAN
vMotion:
Create: true
Name: Compute-A-vMotion-DPG
Security:
ForgedTransmits: false
MACAddressChanges: false
PromiscuousMode: false
VLAN:
ID: "11"
Type: VLAN
vSAN:
Create: true
Name: Compute-A-vSAN-DPG
Security:
ForgedTransmits: false
MACAddressChanges: false
PromiscuousMode: false
VLAN:
ID: "12"
Type: VLAN
IPStorage:
Create: true
Name: Compute-A-NFS-DPG
Security:
ForgedTransmits: false
MACAddressChanges: false
PromiscuousMode: false
VLAN:
ID: "0"
Type: VLAN
vSwitchB:
Clusters:
- Compute-B
Config:
LinkDiscoveryProtocol:
Operation: both
Type: lldp
MTU: 9000
NumberOfUplinks: 2
Name: Compute-B-VDS
PortGroup:
Management:
Create: true
Name: Compute-B-MGMT-DPG
Security:
ForgedTransmits: false
MACAddressChanges: false
PromiscuousMode: false
VLAN:
ID: "20"
Type: VLAN
vMotion:
Create: true
Name: Compute-B-vMotion-DPG
Security:
ForgedTransmits: false
MACAddressChanges: false
PromiscuousMode: false
VLAN:
ID: "21"
Type: VLAN
vSAN:
Create: true
Name: Compute-B-vSAN-DPG
Security:
ForgedTransmits: false
MACAddressChanges: false
PromiscuousMode: false
VLAN:
ID: "22"
Type: VLAN
IPStorage:
Create: true
Name: Compute-B-NFS-DPG
Security:
ForgedTransmits: false
MACAddressChanges: false
PromiscuousMode: false
VLAN:
ID: "0"
Type: VLAN
Password: VMware1!
Question:
CEIP:
Answer: true
Enabled: false
EULA:
Answer: true
Enabled: true
SSO:
Domain: nsxcloud.local
Site: NSX-Cloud-Site
User: [email protected]
VMName: vCSA
NSXT:
Components:
LocalManager:
Address:
IPv4:
Address: 198.51.100.21
Gateway: 198.51.100.1
Prefix: "24"
Deployment:
AllowRootSSH: true
EnableSSH: true
Role: NSX Manager
SiteName: NSX-Cloud
Size: small
FQDN: nsxt-1.nsxcloud.lab
VMName: NSX-LM-1
Credential:
admin:
Name: admin
Password: VMware1!VMware1!
audit:
Name: audit
Password: VMware1!VMware1!
root:
Name: root
Password: VMware1!VMware1!
Networking:
IPPools:
- Allocations:
- DNS:
Domain: nsxcloud.lab
Server: 198.51.100.1
Description: IP Pool for ETN EDGE TEPs
Gateway: 10.5.5.1
IPRanges:
- End: 10.5.5.29
Start: 10.5.5.11
Prefix: "24"
Description: IP Pool for ETN EDGE TEPs
Name: ETN-TEP-Pool
Tags:
- Scope: IP-Pool
Tag: ETN-TEP
- Allocations:
- DNS:
Domain: nsxcloud.lab
Server: 198.51.100.1
Description: IP Pool for TN Cluster-A TEPs
Gateway: 10.1.5.1
IPRanges:
- End: 10.1.5.29
Start: 10.1.5.11
Prefix: "24"
Description: IP Pool for TN Cluster-A TEPs
Name: TN-CC-A-TEP-Pool
Tags:
- Scope: IP-Pool
Tag: TN-CC-A-TEP
- Allocations:
- DNS:
Domain: nsxcloud.lab
Server: 198.51.100.1
Description: IP Pool for Cluster-B TEPs
Gateway: 10.2.5.1
IPRanges:
- End: 10.2.5.29
Start: 10.2.5.11
- End: 10.2.5.99
Start: 10.2.5.50
Prefix: "24"
Description: IP Pool for TN Cluster-B TEPs
Name: TN-CC-B-TEP-Pool
Tags:
- Scope: IP-Pool
Tag: TN-CC-B-TEP
Segments:
- AdminState: UP
Description: NSX T0-Edge Uplink 1
Name: SEG-T0-Edge-Uplink1_VLAN-100
ReplicationMode: MTEP
Tags:
- Scope: SDDC.Lab
Tag: Auto-Created
TransportZone: TZ-EDGE
VLANS:
- "100"
- AdminState: UP
Description: NSX T0-Edge Uplink 2
Name: SEG-T0-Edge-Uplink2_VLAN-200
ReplicationMode: MTEP
Tags:
- Scope: SDDC.Lab
Tag: Auto-Created
TransportZone: TZ-EDGE
VLANS:
- "200"
- AdminState: UP
ConnectedTo:
GatewayName: T1-Gateway-01
Tier: 1
Description: Web Segment
Name: SEG-Web
ReplicationMode: MTEP
Subnets:
- GatewayCIDR: 192.168.1.1/24
Tags:
- Scope: SDDC.Lab
Tag: Auto-Created
TransportZone: TZ-OVERLAY
VLANS: null
- AdminState: UP
ConnectedTo:
GatewayName: T1-Gateway-01
Tier: 1
Description: App Segment
Name: SEG-App
ReplicationMode: MTEP
Subnets:
- GatewayCIDR: 192.168.2.1/24
Tags:
- Scope: null
Tag: null
TransportZone: TZ-OVERLAY
VLANS: null
- AdminState: UP
ConnectedTo:
GatewayName: T1-Gateway-01
Tier: 1
Description: DB Segment
Name: SEG-DB
ReplicationMode: MTEP
Subnets:
- GatewayCIDR: 192.168.3.1/24
Tags:
- Scope: SDDC.Lab
Tag: Auto-Created
TransportZone: TZ-OVERLAY
VLANS: null
- AdminState: UP
Description: Example Test Segment with many VLANs and Tags
Name: SEG-Example-Complicated-VLAN-Segment
ReplicationMode: SOURCE
Tags:
- Scope: SDDC.Lab
Tag: Auto-Created
- Scope: Disney
Tag: Mickey
TransportZone: TZ-VLAN
VLANS:
- "100"
- "201"
- 100
- 101
- 102
- 103
- 104
- 105-110
- AdminState: UP
ConnectedTo:
GatewayName: T0-Gateway-01
Tier: 0
Description: Example Overlay Segment without VLAN
Name: SEG-Example-Overlay-Without-VLANS
ReplicationMode: MTEP
Subnets:
- GatewayCIDR: 192.168.4.1/24
Tags:
- Scope: SDDC.Lab
Tag: Auto-Created
- Scope: Disney
Tag: Donald
TransportZone: TZ-OVERLAY
Tier0Gateways:
- BGP:
ECMP: true
Enabled: true
GracefulRestartConfig:
Mode: HELPER_ONLY
InterSRiBGP: true
Interfaces:
- Description: ETN-01 Uplink 1
EdgeNodeInfo:
EdgeClusterName: ETN-Cluster-01
EdgeNodeName: ETN-01
Name: ETN-01-1_VLAN-100
SegmentName: SEG-T0-Edge-Uplink1_VLAN-100
Subnets:
- Address: 10.10.0.2
Prefix: "24"
Tags:
- Scope: SDDC.Lab
Tag: Auto-Created
Type: EXTERNAL
URPFMode: NONE
- Description: ETN-01 Uplink 2
EdgeNodeInfo:
EdgeClusterName: ETN-Cluster-01
EdgeNodeName: ETN-01
Name: ETN-01-2_VLAN-200
SegmentName: SEG-T0-Edge-Uplink2_VLAN-200
Subnets:
- Address: 10.20.0.2
Prefix: "24"
Tags:
- Scope: SDDC.Lab
Tag: Auto-Created
Type: EXTERNAL
URPFMode: NONE
- Description: ETN-02 Uplink 1
EdgeNodeInfo:
EdgeClusterName: ETN-Cluster-01
EdgeNodeName: ETN-02
Name: ETN-02-1_VLAN-100
SegmentName: SEG-T0-Edge-Uplink1_VLAN-100
Subnets:
- Address: 10.10.0.3
Prefix: "24"
Tags:
- Scope: SDDC.Lab
Tag: Auto-Created
Type: EXTERNAL
URPFMode: NONE
- Description: ETN-02 Uplink 2
EdgeNodeInfo:
EdgeClusterName: ETN-Cluster-01
EdgeNodeName: ETN-02
Name: ETN-02-2_VLAN-200
SegmentName: SEG-T0-Edge-Uplink2_VLAN-200
Subnets:
- Address: 10.20.0.3
Prefix: "24"
Tags:
- Scope: SDDC.Lab
Tag: Auto-Created
Type: EXTERNAL
URPFMode: NONE
LocalASN: "65201"
MultiPathRelax: true
Neighbors:
- Address: 10.10.0.1
AllowASIn: false
BFD:
Enabled: false
BGPSettings:
HoldDownTime: 180
KeepAliveTime: 60
MaxHopLimit: 1
Password: ""
GracefulRestartMode: DISABLE
Name: vSDDC-Router-Uplink-1-IPv4
RemoteASN: "65200"
SourceAddresses:
- 10.10.0.2
- 10.10.0.3
- Address: 10.20.0.1
AllowASIn: false
BFD:
Enabled: false
BGPSettings:
HoldDownTime: 180
KeepAliveTime: 60
MaxHopLimit: 1
Password: ""
GracefulRestartMode: DISABLE
Name: vSDDC-Router-Uplink-2-IPv4
RemoteASN: "65200"
SourceAddresses:
- 10.20.0.2
- 10.20.0.3
Description: Tier-0 Gateway for SDDC.Lab
FailoverMode: NON_PREEMPTIVE
HA_Mode: ACTIVE_ACTIVE
LocaleServices:
- Description: T0-Gateway-01 Locale Services Description
EdgeCluster:
Name: ETN-Cluster-01
Name: T0-Gateway-01_Locale_Services
RouteRedistributionConfig:
BGP_Enabled: true
Rules:
- Name: Redistribute Connected
Types:
- TIER0_CONNECTED
- TIER0_SEGMENT
- TIER1_CONNECTED
- TIER1_SEGMENT
Tags:
- Scope: SDDC.Lab
Tag: Auto-Created
Name: T0-Gateway-01
Tags:
- Scope: SDDC.Lab
Tag: Auto-Created
Tier1Gateways:
- Description: Tier-1 Gateway for SDDC.Lab
FailoverMode: NON_PREEMPTIVE
LocaleServices: