HowTo Install and Configure an NSX-T with NVIDIA Network Fabric

HowTo Change Port Type of NVIDIA ConnectX VPI Adapter on VMware ESXi 6.x and above - Latest Release

Created on Feb 12, 2021

Updated on Jun 26, 2022

Introduction

This post describes how to install and configure NSX-T Data Center components, such as setting up the Transport Nodes, Edge VMs, configure Layer 2 Segments, Tier-0 uplinks and the routing required in preparation for vSphere with Tanzu.

This guide assumes the following hardware and software are installed:

Note

VMware ESXi, vSphere Cluster and vCenter install and configuration is out of the scope of this post.

Abbreviations and Acronyms

Term

Definition

Term

Definition

TEP

Tunnel End Point

VM

Virtual Machine

VDS

NSX-managed Virtual Distributed Switch

VTEP

Virtual Tunnel End Point

VLAN

Virtual LAN

References

VMware vSphere Distributed Switch

VMware vSphere Distributed Switch (VDS) provides a centralized interface from which you can configure, monitor and administer virtual machine access switching for the entire data center. The VDS provides simplified Virtual Machine network configuration, enhanced network monitoring and troubleshooting capabilities.

VMware NSX-T Data Center

VMware NSX-T™ Data Center provides an agile software-defined infrastructure to build cloud-native application environments.

NSX-T Data Center focuses on providing networking, security, automation, and operational simplicity for emerging application frameworks and architectures that have heterogeneous endpoint environments and technology stacks. NSX-T Data Center supports cloud-native applications, bare metal workloads, multi-hypervisor environments, public clouds, and multiple clouds.

NSX-T Data Center is designed for management, operation, and consumption by development organizations. NSX-T Data Center allows IT teams and development teams to select the technologies best suited for their applications.

Solution Architecture

Logical Design

The simplest setup is used here: 4 ESXi servers connected to NVIDIA® Spectrum® SN2010 Ethernet switch.

image2022-2-13_9-34-39.png

Network Physical Connection

image2022-2-28_10-42-47.png

Warning

In our case, port 0 and 1 on ConnectX-6 Lx card on ESXi are presented as vmnic6 and vmnic7.

Network Configuration and Connection

image2022-3-15_8-55-37.png

vSphere Switches Design

image2022-6-30_8-54-13.png

Procedure

Network

Prerequisites

  • Switch Operating System
    NVIDIA Cumulus 5 .1

  • Management Network

    DHCP and DNS services are required.

Warning

The components' installation and configuration are not covered in this guide.

Network Switch Configuration

ESXi to Leaf's connection

Switches01.png

Port Channel and VLAN Configuration

Run the following commands on both Leaf NVIDIA SN2010 switches in the Supervisor Cluster to configure port channel and VLAN.
Sample for clx-swx-033 switch:

Switch console

Copy
Copied!
            

cumulus@clx-swx-033:mgmt:~$sudo nv set interface swp7 link speed 1G cumulus@clx-swx-033:mgmt:~$sudo nv set interface swp7 link mtu 1500 cumulus@clx-swx-033:mgmt:~$sudo nv set interface swp1-4 bridge domain br_default cumulus@clx-swx-033:mgmt:~$sudo nv set interface swp7 bridge domain br_default cumulus@clx-swx-033:mgmt:~$sudo nv set bridge domain br_default vlan 1611 cumulus@clx-swx-033:mgmt:~$sudo nv set bridge domain br_default vlan 1624-1625 cumulus@clx-swx-033:mgmt:~$sudo nv set interface vlan1 ip address 192.168.1.254/24 cumulus@clx-swx-033:mgmt:~$sudo nv set interface vlan1624 ip address 192.168.24.1/24 cumulus@clx-swx-033:mgmt:~$sudo nv set interface vlan1625 ip address 192.168.25.1/24 cumulus@clx-swx-033:mgmt:~$sudo nv set interface vlan1 link mtu 1500 cumulus@clx-swx-033:mgmt:~$sudo nv set vrf default router static 0.0.0.0/0 via 192.168.1.21 cumulus@clx-swx-033:mgmt:~$sudo nv config apply cumulus@clx-swx-033:mgmt:~$sudo nv config save

The following configuration is on both Leaf NVIDIA SN2010 switches in the Supervisor Cluster to configure port channel and VLAN .

Sample for clx-swx-033 switch:

Switch console

Copy
Copied!
            

#!/bin/bash set -x ## Hostname: clx-swx-033   ## ## Interface Ethernet configuration ## nv set interface swp7 link speed 1G nv set interface swp7 link mtu 1500 nv set interface swp1-4 bridge domain br_default nv set interface swp7 bridge domain br_default   ## ## VLAN configuration ## nv set bridge domain br_default vlan 1611 nv set bridge domain br_default vlan 1624-1625   ## ## L3 configuration ## nv set interface vlan1 ip address 192.168.1.254/24 nv set interface vlan1624 ip address 192.168.24.1/24 nv set interface vlan1625 ip address 192.168.25.1/24 nv set interface vlan1 link mtu 1500 nv set vrf default router static 0.0.0.0/0 via 192.168.1.21

Hosts Preparation

Hosts in the Workload Cluster must be configured before an intensive data plane workload can be attached to the VDS switch.

To ensure optimal performance, do the following:

  • Configure BIOS for optimal performance

  • Enable CPU hyperthreading

  • Enable Turbo Boost

  • Disable NUMA node interleaving

  1. Power Management: Set this setting to "High" or "Maximum Performance" (verbiage depending on vendor) to ensure that the CPUs always run at least at the base frequency and

    use the shallowest idle.

  2. Enable Hyperthreading on the ESXi server: Enable this setting on systems that support it. Hyperthreading allows a single processor core to run two independent threads simultaneously. On processors with Hyperthreading, each core can have two logical threads that share the core's resources such as memory caches and functional units. BIOS providers might refer to the hyperthreaded core as a Logical Processor.

  3. Turbo Boost: Enable this setting in the BIOS. It allows the processor to operate faster than the rated frequency for peak loads. For more information about Turbo Boost, see Frequently Asked Questions on the Intel Turbo Boost Technology page (posted on Intel's website).

  4. NUMA Node Interleaving: Ensure that this setting is disabled. With the NUMA node interleaving setting enabled, the hypervisor sees the available memory as one contiguous

    area. Therefore, the ability to place memory pages local to the CPU is lost and the hypervisor sees all resources on the host as local.

Network Adapter Driver and Firmware Update

To update firmware to version 26.33.1048 and driver to version 4.21.71.101, please refer to the following links:

Hosts Network Configuration

Prerequisites

  • vSphere WL01-Cluster01 clusters with VMware vSphere ESXi 7.0.3d is installed and configured. The cluster will be used for all workloads.

  • vCenter 7.0.3d or above

  • The installation requires administrator privileges on the target machine

  • Connection to ESXi host management interface

  • High speed network connectivity

    image2022-2-13_22-0-5.png

Warning

Installation of vCenter, ESXi hosts, configuration of virtual DC, Clusters, and adding hosts to clusters are out of the scope of this document.

SL-WL01-Cluster01

Networking

In the document I will going to use following networks.

  • Management Network (VLAN 1 – 192.168.1.0/24) – This is where the ESXi VMkernel interfaces and the management VMs will reside such as the NSX-T Manager and vCenter.

  • vMotion Network (VLAN 16 – 192.168.11.0/24) – This is where the ESXi vMotion VMkernel interfaces will reside.

  • NSX-T Geneve Overlay Network for ESXi Hosts (VLAN 1624 - 192.168.24.0/24) – This network will be used by the Geneve Overlay Tunnel endpoints VMkernel interfaces on the ESXi Hosts aka vmk10.

  • NSX-T Geneve Overlay Network for Edge VMs (VLAN 1625 – 192.168.25.0/24) – This network will be used by the Geneve Overlay Tunnel endpoints interfaces running in the Edge VMs.

This table provides details on the ESXi servers and switches in the SL-WL01-Cluster01, system names, and their network configurations.

Server

Server Name

IP and NICs

Networks

Management Network 192.168.1.0/24 (VLAN 1)

ESXi-01

sl01w01esx11

vmk1: 192.168.11.111(vMotion - VLAN )

vmk10: From IP Pool 192.168.24.0/24 (NSX Host TEP)

vmk0: 192.168.1.111

From DHCP (reserved)

ESXi-02

sl01w01esx12

vmk1: 192.168.11.112(vMotion)

vmk10: From IP Pool 192.168.24.0/24 (NSX Host TEP)

vmk0: 192.168.1.112

From DHCP (reserved)

ESXi-03

sl01w01esx13

vmk1: 192.168.11.113(vMotion)

vmk10: From IP Pool 192.168.24.0/24 (NSX Host TEP)

vmk0: 192.168.1.113

From DHCP (reserved)

ESXi-04

sl01w01esx14

vmk1: 192.168.11.114(vMotion)

vmk10: From IP Pool 192.168.24.0/24 (NSX Host TEP)

vmk0: 192.168.1.114

From DHCP (reserved)

Leaf-01

clx-swx-033

10.7.215.233

Leaf-02

clx-swx-034

10.7.215.234

vCenter (VM)

sl01w01vc01

192.168.1.25

NSX-T Manager 01 (VM)

sl01w01nsx01

192.168.1.26

NSX-T Edge 01 (VM)

sl01w01nsxedge01

From IP Pool 192.168.25.0/24 (NSX Edge TEP)

192.168.1.28

NSX-T Edge 02 (VM)

sl01w01nsxedge02

From IP Pool 192.168.25.0/24 (NSX Edge TEP)

192.168.1.29

NSX-T Edge Cluster

EdgeCluster1

DNS/DHCP/AD/NTP/Bridge VM

10.7.215.24

192.168.1.21

Configure a VDS

To configure a new VDS (sample - SL-WL01-DS01) , with 2 Distributed Port Group ( sample - SL-WL01-MGMT-VLAN1 and SL-WL01-vMotion-VLAN611 ) use the following document.

Warning

MTU size has been increased to 1600 or more than 1600. The recommended MTU is 9000.

VMware NSX-T Manager Installation and Configuration

Prerequisites

Below are the prerequisites for deploying NSX Manager.

  • Necessary resources exist on the cluster to deploy NSX-Manager appliance

  • Port group for Management network (it is preferable to keep on the same network as vCenter)

  • 4 free IPs from management network for NSX Managers (in this guide only one appliance is deployed)

  • NSX Licenses and media OVA file downloaded from VMware website

  • Create DNS A rerecords for NSX-Manager Hostnames

Network Latency Requirements

  • The maximum network latency between NSX Managers in a NSX Manager cluster is 10ms

  • The maximum network latency between NSX Managers and Transport Nodes is 150ms

Storage Requirements

  • The maximum disk access latency is under 10ms

  • It is recommended that NSX Managers are placed on shared storage

  • Storage should be highly available to avoid a storage outage causing all NSX Manager file systems to be placed into read-only mode upon a storage failure event

    Please see the documentation for your storage technology on how to optimally design a highly available storage solution.

Deployment

  1. Download the NSX manager OVA from my.vmware.com.

    NSX321_download.PNG

  2. Login to the vCenter.

  3. Click VMs and Templatesright click on the Datacenter folder (SL-Datacenter) → click New Folder → click New VM and Template Folder...

    NSX_T_manager_install_01.PNG

  4. Assign Folder Name

    NSX_T_manager_install_02.PNG

  5. Click VMs and Templatesright click on the folder (NSX-T) where you would like the NSX-T Manager to be deployed → click Deploy OVF Template.

    NSX_T_manager_install_03.PNG

  6. Select Local file → browse the OVA file for NSX Unified appliance → NEXT .

    NSXt_depl_02.PNG

    NSX321_install.PNG

  7. Assign Virtual machine name → select the folder in which you want to place the NSX manager → click NEXT.

    NSX_T_manager_install_06.PNG

  8. Select the compute resource whe re you want to place your NSX manager ( i.e., the cluster, resource pool, or the host) → check compatibility has succeeded → c lick NEXT.

    NSX_T_manager_install_07.PNG

  9. Review the details → c lick NEXT.

    NSX321_OVF_Deploy.PNG

  10. Select deployment size (Medium) → click NEXT .

    Warning

    When selecting "Small" as the deployment configuration, some of the services do not work. Always use "Medium" or "Large".

    NSX_T_manager_install_09.PNG

  11. Select the Storage/datastore where NSX-T manager should be placed → c lick NEXT.

    NSX_T_manager_install_10.PNG

  12. Select the Management network → click NEXT to move to the "Customize Template" screen.

    NSX_T_manager_install_11.PNG

  13. Specify the root , admin, and audit account’s password → scroll down .

    Warning

    Strong password is required.

    NSXt_depl_10a.PNG

  14. Provide the Hostname, Rolename (NSX Manager has 3 roles, as seen below), and networking details → scroll down .

    NSX321_OVF_Deploy_02.PNG

  15. Assign the DNS and NTP details and choose whether SSH needs to be enabled on the NSX-T Manager → click NEXT.

    NSX_T_manager_install_14.PNG

  16. Finish the wizard. Review the details and click FINISH. Wait for the NSX manager appliance to be successfully deployed.

    NSX321_OVF_Deploy_03.PNG

    As seen below, the NSX Manager will be deployed in a maximum of 5-10 minutes.

    NSX321_OVF_Deploy_04.PNG

  17. Once the appliance is successfully deployed, Power on and wait at least 15 minutes for all the services to come up.

    NSX_T_manager_install_17.PNG

  18. Once the services are up, a login prompt is shown. At this point, wait 10 more minutes as backend services need to start the web-portal-related services.

    NSXt_depl_15.PNG

Post-Deployment Health Checks

Once done, do the following post-deployment steps:

  1. Open the console and try to log in with admin credentials using putty. You will see the version number and the role.

    NSX_T_manager_install_19.PNG

  2. Verify the network configuration by using the command below.

    NSX-T Manager Console

    Copy
    Copied!
                

    get interface eth0

    NSX_T_manager_install_20.PNG

  3. Check the services status by running the following command.

    NSX-T Manager Console

    Copy
    Copied!
                

    get services

    NSX_T_manager_install_21.PNG

Warning

Liagent, migration-coordinator and SNMP services are not started by default.

Configuration

  1. Log in to NSX manager UI login page by using the URL "https://".

    image.png

  2. Accept the EULA on the first login to the NSX manager with dark theme.

    NSX321_EULA.PNG

  3. Decide whether to join the Customer Experience Improvement Program.

    image_(1).png

  4. Take a quick tour, in case you need.

  5. Finally, the NSX-T manager is presented.

  6. Navigate to Licenses and the NSX-T license (SystemLicenses and click on +ADD LICENSE).

  7. Add a license and click ADD.

    image2021-8-16_17-0-32.png

Adding a Compute Manager

  1. To add a compute manager, navigate to SystemFabricCompute Managers → c lick ADD COMPUTE MANAGER to add vCenter as compute manager.

    Add_compute_manager_01.PNG

  2. Fill in the vCenter details → click ADD .

    Add_compute_manager_02.PNG

  3. Click ADD , when presented with the vCenter server thumbprint window.

    Add_compute_manager_03.PNG

  4. Wait for registration to complete. T he status will be changed to registered and connection status to "Up".

    Add_compute_manager_04.PNG

Optional

  1. To deploy additional NSX-T manager nodes, navigate to SystemAppliances → click ADD NSX APPLIANCE.

    NSXt_Deploy_additional_manager_nodes_10.PNG

  2. Fill in the details for the additional manager such as Hostname, Management IP/Netmask, Gateway, DNS, or NTP and select the Node Size of the manager ( should be identical to first manager ) → click NEXT.

    NSXt_Deploy_additional_manager_nodes_11.PNG

  3. Select the appliance placement configuration → click NEXT.

    NSXt_Deploy_additional_manager_nodes_12.PNG

  4. Complete NSX manager passwords for access (use the same password as in the first manager ) and enable SSH access → click on INSTALL APPLIANCE.

    NSXt_Deploy_additional_manager_nodes_13.PNG

  5. Repeat same steps for deploying third NSX-T manager node, wait for both the nodes to be deployed and joined cluster.

  6. Assign the cluster VIP for ease of management. Be sure that cluster IP does not do load balancing and only provides ease of management.

    NSXt_Deploy_additional_manager_nodes_14.PNG

The deployment of NSX-T manager and controller cluster is complete.

NSX-T Configuration

Network administrators must prepare the network with the supported NIC cards and drivers before creating VDS enabled transport zone.

Uplink Profiles

An uplink profile defines the policies for links from a hypervisor hosts to the NSX-T logical switches or from NSX Edge nodes to top-of-rack switches. The settings defined by these profiles may include teaming policies, active/standby links, transport VLAN ID, and MTU settings.

Uplink profiles enables consistent configuration of identical capabilities for network adapters across multiple hosts and nodes. By default, there are two uplink profiles that are provided with NSX-T and cannot be edited, that's why new profiles for the Edge uplink should be created (for hosts’ uplinks as well).

See Create an Uplink Profile, for more detailed information.

Create Host Uplink Profile

To create a Host uplink profile i n NSX-T Manager , do the following:

  1. Navigate to System → Fabric → Profiles → Uplink Profiles → +ADD.

    image2021-8-30_15-44-18.png

  2. Assign a name to the profile and fill the description.

  3. Under "Teamings", set the Teaming Policy to "Failover Order".

  4. Set the Active Uplinks to uplink-1 and the Standby Uplinks to uplink-2.

The Transport VLAN will be an Overlay VLAN ID (in the example provided, 1624) since these uplinks are connected directly to the hosts and need to be tagged accordingly.

The default MTU is set to 1600. You can set it to a higher value which is supported by your Jumbo Frames configuration and then click ADD.

MTU not fill.

Add_ESXi_Uplink_profile_01.PNG

Create Uplink Profile for Edge VMs Transport Nodes.

To create a Host uplink profile in NSX-T Manager, do the following:

  1. Navigate to System → Fabric → Profiles → Uplink Profiles → +ADD.

    Add_Edge_VM_Uplink_profile_01.PNG

  2. Assign a name to the profile and fill the description.

  3. Under "Teamings", set the Teaming Policy to "Failover Order".

  4. Set the Active Uplinks to uplink-2.

  5. The Transport VLAN will be an Overlay VLAN ID (in the example provided, 1625) since these uplinks are connected directly to the hosts and need to be tagged accordingly.
    The default MTU is set to 1600. You can set it to a higher value which is supported by your Jumbo Frames configuration and then click ADD.
    In this setup, we will set the MTU to 9000.

Add_Edge_VM_Uplink_profile_02.PNG

image2022-6-30_10-54-42.png

image2022-6-30_14-15-59.png

It will look like the following with the 2 new uplink profiles being created successfully.

Transport Zones

Transport Zones dictate which hosts (and consequently which VMs) can participate in the use of a particular network. There are two types of transport zones: an overlay and a VLAN.

  1. The overlay transport zone is used by both host transport nodes and NSX Edges and is responsible for communication over the overlay network.

  2. The VLAN transport zone is used by the NSX Edge for its VLAN uplinks.

Both types create an N-VDS on the host or Edge to allow for virtual-to-physical packet flow by binding logical router uplinks and downlinks to physical NICs. For more information, please see the Transport Zones and Profiles.

Create Transport Zone

To create a Transport Zone i n the NSX-T Manager , navigate to System → Fabric → Transport Zones → +ADD.

Create_Transport_Zone_01.PNG

Transport Zone with Overlay Traffic Type

Provide a Name and select the Traffic Type as Overlay (Geneve) and then click ADD.

Create_Transport_Zone_02.PNG

Transport Zone with VLAN Traffic Type

Provide a Name and select the Traffic Type as VLAN and then click ADD.

Add_VLAN_TZ.PNG

Create NSX-T TEPs IP Pools

Each transport node (i.e., hypervisors) is assigned with an IP address for the TEP interface. DHCP, Static IP List, and IP address Pool can all be used for assigning IP addresses for the TEP (Tunnel Endpoint) interfaces.
To configure the ESXi hosts as Transport nodes, NSX-T IP Pool will be created to assign IP addresses for the TEP interfaces.

To create an IP Pool, in the NSX-T Manager , do the following"

  1. Navigate to Networking → IP Address Pools → ADD IP ADDRESS POOL .

    Create_IP_Pool_01.PNG

  2. Specify the name and description of the IP address pool → click Set.

    Create_IP_Pool_02.PNG

  3. Click ADD SUBNET → select IP Ranges.

    Create_IP_Pool_03.PNG

  4. Specify the IP Address Ranges, along with CIDR and Gateway IP, address for the specified IP ranges → click ADD .

    Create_IP_Pool_04.PNG

  5. Click Apply.

    Create_IP_Pool_05.PNG

  6. Click SAVE to create the IP Pool.

    Create_IP_Pool_06.PNG

  7. Once the IP Pool is created, the status will be changed to Success.

    Create_IP_Pool_07.PNG

Create NSX-T Edge VM TEPs IP Pools

Each NSX Edge VM is assigned with an IP address for the TEP interface. DHCP, Static IP List, and IP address Pool can all be used for assigning IP addresses for the TEP (Tunnel Endpoint) interfaces.
To configure the ESXi hosts as Transport nodes, NSX-T IP Pool will be created to assign IP addresses for the Edge VM TEP interfaces.

To create an IP Pool, in the NSX-T Manager , do the following"

  1. Navigate to Networking → IP Address Pools → ADD IP ADDRESS POOL .

    Create_IP_Pool_01.PNG

  2. Specify the name and description of the IP address pool → click Set.

    Add_Edge_IPpool_01.PNG

  3. Click ADD SUBNET → select IP Ranges.

    Create_IP_Pool_03.PNG

  4. Specify the IP Address Ranges, along with CIDR and Gateway IP, address for the specified IP ranges → click ADD .

    Add_Edge_IPpool_03.PNG

  5. Click Apply.

    Add_Edge_IPpool_04.PNG

  6. Click SAVE to create the IP Pool.

    Add_Edge_IPpool_05.PNG

  7. Once the IP Pool is created, the status will be changed to Success.

    Add_Edge_IPpool_06.PNG

Create Transport Nodes Profiles for ESXi Hosts.

To c reate Transport Nodes Profile.

  1. Navigate to SystemFabric Profiles → Transport Node Profiles → c lick Add.

    NSX321_Create_Transport_Nodes_Profiles_for_ESXi_Hosts.PNG

  2. In the opened window:

    1. Specify the NameSL-WL01-TNP-VDSSTD and description of the Transport Nodes Profile.

    2. Select Type VDS.

    3. Select Mode Standard.

    4. Select Names of vCenter sl01wl01vc01 and VDS SL-WL01-DS01.

    5. Select Transport Zones were created before → SL-WL01-Overlay-TZ and SL-WL01-VLAN-TZ.

    6. Scroll down .

      Add_Host_Transport_Node_02.PNG

    7. Select the Uplink Profile ESXi-TN-Uplink-profile.

    8. Select the IP Assignment (TEP) Use IP Pool.

    9. Select the IP Pool SL-WL01-TEP-IPpool.

    10. In Team Policy Uplink Mapping Select uplink-1 Uplink 1 and uplink-2 Uplink 2.

    11. Click Add.

      NSX321_Create_Transport_Nodes_Profiles_for_ESXi_Hosts_02.PNG

Enabling ESXi as NSX Transport Nodes

To e nable ESXi as NSX Transport Nodes .

  1. Navigate to SystemFabric Nodes → Host Transport Nodes

  2. Select Managed by → sl01wl01vc01.

  3. Select SL-WL01-Cluster01(4)

  4. Click Configure NSX.

    Add_Host_Transport_Node_01.PNG

  5. In a open window select the Transport Nodes Profile Name we created → SL-WL01-TNP-VDSSTD and click Apply .

Add_Host_Transport_Node_03.PNG

You can see the installation is progressing.

Add_Host_Transport_Node_04.PNG

Wait to the following the hosts are successfully installed with NSX.

Add_Host_Transport_Node_05.PNG

Deploy Edges

To deploy Edges.

  1. Navigate to System -> Fabric -> Nodes -> Edge Transport Nodes. Click ADD EDGE VM.

    Deploying_Edge_01.PNG

  2. In the opened window fill in the Name → sl01wl01nsxedge01, Host name/FQDNsl01wl01nsxedge01.vwd.clx and choose the size.

    Warning

    For vSphere with Kubernetes, you will need to deploy a minimum of Large Edge VM appliance.

    Click on NEXT.

    Deploying_Edge_02.PNG

  3. Fill in the credentials. Click NEXT.

    Deploying_Edge_03.PNG

  4. Select the Compute Manager -> sl01wl01vc01, Cluster-> SL-WL01-Cluster01 and Datastore-> vsanDatastore.

    Deploying_Edge_04.PNG

  5. Configure the Management IP -> 192.168.1.28/24 and Default Gateway -> 192.168.1.21.

    NSX321_add_Edge_node_5.PNG

  6. Select the Management Interface by click Select Interface.

  7. Choose the Portgroup for the Management InterfaceSL-WL01-MGMT-VLAN1.

  8. Click SAVE.

    image2022-2-19_10-44-27.png

  9. Specify Search Domain Names, DNS Servers and NTP Servers.

  10. Click NEXT.

    NSX321_add_Edge_node_10.PNG

  11. Specify the Edge Switch Namenvds1, s elect the Transport Zone → SL-WL01-Overlay-TZ , Uplink Profile → Edge-VM-Uplink-profile.

    Scroll Down.

    Warning

    We are keeping the naming convention of nvds1 for Overlay T ransport Zone and nvds2 for VLAN Transport Zone.

    NSX321_add_first_switch_Edge_node_11.PNG

  12. In Team Policy Uplink Mapping uplink-2 click Select Interface.

    Select the VDS PortgroupSL-WL01-Trunk-PG which we created before.

  13. Click SAVE.

    Deploying_Edge_10.PNG

    It will look like the following with all the required fields being selected and filled out.

    NSX321_add_Edge_node_13.PNG


  14. Add another switch by clicking on ADD SWITCH. **You might need to scroll up to the page to see the button.

    NSX321_add_Edge_node_14.PNG

  15. Again, specify Edge Switch Namenvds2, s elect the Transport Zone → SL-WL01-VLAN-TZ , Uplink Profile → Edge-VM-Uplink-profile, for the TEPs for the Edge VM.

    In Team Policy Uplink Mapping uplink-2 click on Select Interface. Select the VDS PortgroupSL-WL01-Trunk-PG which we created before.

    NSX321_add_Edge_node_15.PNG

  16. Click FINISH.

Repeat the above steps for Edge VM02 with Name → sl01wl01nsxedge02, Host name/FQDNsl01wl01nsxedge02.vwd.clx and Management IP -> 192.168.1.29/24

It will look like the following once both the Edge VMs are deployed successfully. The installation can take several minutes.

Deploying_Edge_14.PNG

Testing Edge VMs

Deploying_Edge_15.PNG

Deploying_Edge_16.PNG

Configure the Edge Cluster

To configure the Edge Cluster.

  1. Navigate to SystemFabric Nodes → Host Transport Nodes.

  2. Click ADD EDGE CLUSTER.

    Configure_the_Edge_Cluster_01.PNG

  3. Fill the Edge Cluster Name → EdgeCluster1. Select the Edge Cluster Profile.

    Configure_the_Edge_Cluster_02.PNG

  4. Select the two edge nodes that we just created in the previous step.

    Configure_the_Edge_Cluster_03.PNG

The following shows the Edge Cluster EdgeCluster1 has been successfully created.

Configure_the_Edge_Cluster_04.PNG

Done !

Authors

image2020-11-17_6-50-16.png

Boris Kovalev

Boris Kovalev has worked for the past several years as a Solutions Architect, focusing on NVIDIA Networking/Mellanox technology, and is responsible for complex machine learning, Big Data and advanced VMware-based cloud research and design. Boris previously spent more than 20 years as a senior consultant and solutions architect at multiple companies, most recently at VMware. He has written multiple reference designs covering VMware, machine learning, Kubernetes, and container solutions which are available at the Mellanox Documents website.

Last updated on Sep 12, 2023.