Deploy Nested VCF to NSX-T Overlay

I have used VLC to deploy nested VCF for a long time and I am quite happy with how it works. VLC is usually deployed to a VLAN Trunk Port Group. This requires the VLANs used in the nested VCF to be configured on the physical switches in the environment. This does not scale well, and it is hard to automate. By following the steps below we are able to deploy VLC to an NSX-T Overlay Segment which allows each VFC instance to be isolated on their own layer 2 network. NSX-T Overlay Segments can be deployed automatically and they don’t require any changes to the physical network. This also allows us to use overlapping IP addressing between them. I have not yet tested to connect my Segment to a Tier-1 Gateway so that the nested VCF can connect to any external networks, but I plan to do this soon and update this post.

NSX-T Configuration

The following configuration needs to be done on the hosting NSX-T environment.

IP Discovery Profile

Namevcf-nested-ip-profile
Duplicate IP DetectionDisabled
ARP SnoopingEnabled
ARP Binding Limit256
ND SnoopingDisabled
ND Snooping Limit3
ARP ND Binding Limit Timeout10
Trust on First UseEnabled
DHCP SnoopingDisabled
DHCP Snooping – IPv6Disabled
VMware ToolsEnabled
VMware Tools – IPv6Disabled

MAC Discovery Profile

Namevcf-nested-mac-profile
MAC ChangeEnabled
MAC Learning Aging Time600
MAC LearningEnabled
MAC Limit4096
MAC Limit PolicyAllow
Unknown Unicast FloodingEnabled

Segment Security Profile

Namevcf-nested-security-profile
BPDU FilterDisabled
BPDU Filter Allow ListNot Set
Server BlockDisabled
Server Block – IPv6Disabled
Non-IP Traffic BlockDisabled
Rate LimitsDisabled
Receive Broadcast
0
Receive Multicast0
Client BlockDisabled
Client Block – IPv6Disabled
RA GuardEnabled
Transmit Broadcast0
Transmit Multicast0

Segments

Namevcf-nested-trunk-01
Transport Zoneoverlay-tz
Connected GatewayNone
SubnetNone
Profilesvcf-nested-ip-profile
vcf-nested-mac-profile
vcf-nested-security-profile
VLAN0-4094

Jump Host Configuration

To deploy VLC we need a jump host with two network adapters, one connected to your management network so that we can access it with RDP, and one connected to the nested environment so that we can connect to the nested appliances there. More details on this can be found in the VLC installation guide.

Jump Host 01

Namejumpy-01
OSWindows Server 2019
NIC1  Portgroup: pg-management
Driver: VMXNET3
NIC2Portgroup: vcf-nested-trunk-01
GW: None
VLAN: 10 (Tagged in Guest OS)
Driver: VMXNET3
SoftwarePowershell 5.1+
PowerCLI 12.1+
OVFTool 4.4+
.Net Framework
Static RoutesFor example: route ADD 10.50.0.0 MASK 255.255.255.0 10.0.0.221
Windows FirewallOn
Powershell PolicySet-ExecutionPolicy Unrestricted

VLC Configuration

LocationC:\VLC
Bringup ConfigurationC:\VLC\NOLIC-44-TMM-vcf-ems-public.json
ESXi Host ConfigurationC:\VLC\conf\default_mgmt_hosthw.json
LicensesMust be added to NOLIC-44-TMM-vcf-ems-public.json
Cloud BuilderC:\VLC\VMware-Cloud-Builder-4.4.0.0-19312029_OVF10.ova
MTU1700 (can probably be increased to 8800 or more)

VLCGui.ps1 Configuration

The following changes need to be done to the default VLCGui.ps1 to make it work with NSX-T.

Changed the following to be able to select NSX-T Segments:

From
If ($isSecSet.AllowPromiscuous.Value -and $isSecSet.ForgedTransmits.Value -and $isSecSet.MacChanges.Value){   
To
If(-not ($isSecSet.AllowPromiscuous.Value -and $isSecSet.ForgedTransmits.Value -and $isSecSet.MacChanges.Value)){  

Changed the following to get 1500 bytes MTU on vSwitch0:

From
$kscfg+="esxcli network vswitch standard set -v vSwitch0 -m 9000`n"
To
$kscfg+="esxcli network vswitch standard set -v vSwitch0 -m 1500`n"

Added the following to recreate vmk0 so that it gets a unique MAC address:

$kscfg+="esxcfg-vmknic --del vmk0 -p `"Management Network`"`n"
$kscfg+="esxcfg-vmknic --add vmk0 --portgroup `"Management Network`" --ip `${IPADDR} --netmask `${SUBNET} --mtu 1500`n"
$kscfg+="esxcfg-route -a default `${IPGW}`n"

Change the MAC Address of NSX-T Virtual Distributed Router

You must change the default MAC address of the NSX-T virtual distributed router in the nested VCF deployment so that it does not use the same MAC address that is used by the hosting NSX-T virtual distributed router.

Change the MAC Address of NSX-T Virtual Distributed Router

An alternative is to configure the hosting NSX-T environment’s Overlay Transport Zone with the nested_nsx property set to true, but this has to be done when creating the Transport Zone.

Thanks to Ben Sier for helping me getting this to work.

7 thoughts on “Deploy Nested VCF to NSX-T Overlay

  1. EmVee February 3, 2023 / 7:14 pm

    HI,

    One thing i could not get is that you mentioned to create a segment using Overlay. If i select Overlay as TZ, then i won’t get an option to enter the VLAN which have mentioned to enter as “0-4094”. please clarify.

    Also can i used the above mentioned to build VCF using traditional method like using excel sheet with all details populated?

    thanks
    EmVee.

    Like

    • Nils Kristiansen February 4, 2023 / 11:47 am

      Hi, not sure why you are not able to enter VLAN ID when selecting Overly TZ. I hope you have tried to expand the Additional Settings? Yes, you can use the Excel sheet with VLC. Just deselect “Do bringup”.

      Like

      • EmVee February 6, 2023 / 6:18 pm

        Hi,

        Thanks for your time to reply. I am sure you can’t enter VLAN ID when you select Overlay TZ. Because, you create a segment either with Overlay or VLAN, can’t mix both.

        When i say excel sheet, i mean the traditional way fo building cloud builder without using VLC.
        thanks
        EmVee

        Like

      • Nils Kristiansen February 6, 2023 / 8:43 pm

        If the transport zone is of type VLAN, specify a list of VLAN IDs. If the transport zone is of type Overlay, and you want to support layer 2 bridging or guest VLAN tagging, specify a list of VLAN IDs or VLAN ranges. In this case we want to use guest VLAN tagging with an Overlay Segment.

        Like

  2. EmVee February 7, 2023 / 6:06 pm

    NILS,

    You are correct!. I can now able to enter the VLAN IDs. thanks for that. Let me try to install and let you know when done.

    EmVee

    Like

  3. EmVee February 9, 2023 / 4:00 pm

    Hi NILS KRISTIANSEN,

    An question. When i choose to use different vlan for mgmt/vmotion/vsan/vxlan, where would i set the GW for each vlan? is there any method that i should follow? or it doesn’t matter as underlying NSX-T overlay will take care?

    thanks
    EmVee

    Like

    • Nils Kristiansen February 10, 2023 / 8:17 am

      I am not sure if I follow exactly what you are doing, but if you are using VLC to deploy VCF you set the GWs in the bringup Excel or json file. I suggest joining VLC Support on Slack here to get better help: https://tiny.cc/getVLCSlack

      Like

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s