我在VMware工作站上运行Cisco UCS模拟器
要进行我的项目,我需要使用Java代码通过Eclipse获取此UCS模拟器的IP地址。
我试过了

public class Ipadd
{

  public static void main(String[] args) {

    try {

        InetAddress inetAddr = InetAddress.getLocalHost();

        byte[] addr = inetAddr.getAddress();
        // Convert to dot representation
        String ipAddr = "";
        for (int i = 0; i < addr.length; i++) {

            if (i > 0) {
                ipAddr += ".";

            }
            ipAddr += addr[i] & 0xFF;
       }

       System.out.println("IP Address: " + ipAddr);

    }
}


我正在获取VMware的IP地址,但我想获取仿真器的IP地址

谁能帮我这个

最佳答案

在VM中启动UCS Emulator,使用用户名:config密码:config。
登录后,UCS将显示HTTP页面以使用UCS Manager,HTTP页面显示为UCS的IP地址。

07-26 09:34