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.
When you check the network information for the linked virtual L-Server, the IP address is not contained in the displayed information
You have not created the "Definition File for Loading the IP Addresses of Virtual PCs to Virtual L-Servers"
Procedure
Create the XML file that becomes necessary for specifying the network resources and IP addresses corresponding to the NICs for the virtual L-Server.
Execute the following command to output the base XML file for changing the network.
> rcxadm lserver show -name L-Server_name -format xml <RETURN>
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>
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>
Refer to "Confirmation of Results" and confirm that the changes you made in step 2 have been reflected.
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
For details on the XML definitions for network resources (file.xml), refer to "Table A.1 Excerpt from Definition Information for Virtual L-Servers (XML)".
For details on the rcxadm lserver command, refer to "4.3 rcxadm lserver".