Skip to content

Setting the IP in VMware ESXi

Setting the IP address in the console

If the server is connected to network with a DHCP server, it will automatically get the IP address displayed in the DCUI - the hypervisor console.

To access the Hypervisor settings management via DCUI, press the F2 key and enter the login (root by default) and the password that was set during the installation of VMware vSphere.

The setting of network adapters options for managing the host is configured in the Configure Management Network section:

In this section, it is possible to specify the VLAN where the server's management interface is located:

And also configure the IPv4 and IPv6 interfaces: disable, assign dynamic or static IP. Generally, the IP address, subnet and gateway address are specified manually:

DNS Configuration - you can specify the server's DNS and set the host name here. DNS settings:

To check the correctness of the network settings, use the Test Management Network menu:

An example of testing results:

Setting the IP address using the command line

You must enable SSH for remote access to the ESXi server to configure VMware ESXi IP address using the command line.

Review of the current configuration of VMware ESXi IP address:

esxcli network ip interface ipv4 get

How to configure DHCP

Attention

Active DHCP services on external Ethernet interfaces are forbidden by the Terms and Conditions of services and the use of the site.

esxcli network ip interface ipv4 set -i vmk0 -t dhcp

How to set up a static IP address

esxcli network ip interface ipv4 set -i -I “IP” -N “Subnet” vmk0 -t static
esxcli network ip interface ipv4 get

An example of a static IP configuration:

esxcli network ip interface ipv4 set -i vmk0 -I 192.168.0.50 -N 255.255.255.0 -t static -g 192.168.0.1
esxcli network ip interface ipv4 get

Check and application of the configuration

You must exit service mode and restart the VMware ESXi server to save your changes.

esxcli system maintenanceMode set --enable false
reboot