DX Unified Infrastructure Management

  • 1.  How to update IP address in UIM

    Posted Jan 16, 2017 01:53 PM

    The IP addresses of some devices have changed over the weekend.  How do I update the IP address in UIM so that Infrastructure manager and the portal have the new IP address.



  • 2.  Re: How to update IP address in UIM

    Posted Jan 16, 2017 05:04 PM

    Assuming that you are referring to the robot IP address , try "Set specific address(es) (override)" under "Setup"->"IP" in your controller probe of that specific robot 



  • 3.  Re: How to update IP address in UIM

    Posted Jan 17, 2017 08:39 AM

    If monitored devices have been effected they use discovery wizard to run a discovery on them.



  • 4.  Re: How to update IP address in UIM
    Best Answer

    Posted Jan 24, 2017 11:36 AM

    Cycling the robot will force it to pull in the new IP or you can do the override if they're not picking the correct IP at startup. 

     

    Here's an example of a .BAT file to update the override using a provided list of server IP's:

     

    @ECHO OFF

    SET PASSWORD=blahblahblah

    FOR /F "tokens=*" %%A in (RobotList.txt) do (
    pu.exe -u administrator -p %PASSWORD% -H %%A probe_config_set controller controller robotip %%A NULL NULL
    pu.exe -u administrator -p %PASSWORD% -H %%A -R
    )

    PAUSE