Views:

DSM now allows users to specify a preferred IP address for each guest VM through the "settings.configuration.preferredGuestVMIpAddress" parameter. DSM will always use this preferred IP address to connect to a guest VM with multiple IP addresses and NICs. This helps ensure that DSM can always connect to Deep Security Agent (DSA) even when the NIC changes as long as the specified IP address is correct.

To change the preferred IP address for a guest VM using the database management studio:

  1. Back up the database.
  2. Query the virtual machine using the command below:
    SELECT * from virtualVM

    SELECT * from virtualVM

    Alternatively, you can view the IP address from the DSM debug.xml file and agentless' VMware VM Summary:

    Check the existing IP address

    Check the existing IP address

  3. Update the virtual machine IP address by running the command below:
    UPDATE virtualVM set ipaddress='<IP_Address>' where hostid=<hostID>

    UPDATE virtualVM

    UPDATE virtualVM

    UPDATE virtualVM