Top
ServerView Resource Orchestrator Cloud Edition V3.3.0 Automatic Quarantining FunctionUser's Guide
FUJITSU Software

B.2 When the IP Address of a Linked Virtual L-Server Is Not Displayed in the Network Information for the Virtual L-Server

This section explains the corrective action to take when the IP address of a linked virtual L-Server is not displayed in the information for the network of the virtual L-Server when you check that information.

If either of the following conditions is satisfied, perform the procedure that follows.

Procedure

  1. Create the XML file that becomes necessary for specifying the network resources and IP addresses corresponding to the NICs for the virtual L-Server.

    1. Execute the following command to output the base XML file for changing the network.

      > rcxadm lserver show -name L-Server_name -format xml <RETURN>
    2. Delete any unnecessary information from the output XML file and edit the content as shown below.

      The Resources, LServer, and NICs elements must be included.

      Depending on the details of the operation network of the virtual PC, specify the values for "name" in the NetworkLink element and "address" in the IpAddress element.

      <?xml version="1.0" encoding="utf-8"?>
      <Resources>
        <LServer name="L-Server_name">
          <NICs>
            <NIC>
              <NICIndex>NIC_index</NICIndex>
              <MacAddress>MAC_address</MacAddress>
              <NetworkLinks>
                <NetworkLink name="Network_name" index="0">
                  <IpAddress auto="Automatic_IP_configuration" address="IP_address"/>
                </NetworkLink>
              </NetworkLinks>
            </NIC>
          </NICs>
        </LServer>
      </Resources>
  2. Execute the following command using the XML file that was created in step 1 to specify the network resources and IP addresses corresponding to the NICs for the virtual L-Server.

    > rcxadm lserver modify -name L-Server_name -file file.xml [-nowait] <RETURN>
  3. Refer to "Confirmation of Results" and confirm that the changes you made in step 2 have been reflected.

  4. If the XML files for changing the network have not been created, create them.

    Perform the procedure explained in "B.3 When the XML Files for Changing the Network Have Not Been Created".


Confirmation of Results

Execute the following command and confirm that the changes you made in step 2 have been reflected.

> rcxadm lserver show -name L-Server_name -format xml <RETURN>

See