Temporary IP settings for ETM001 module in ME10.0

We know that when creating temporary IP addresses in the previous version of IC695ETM001, it was possible to create them through MAC write, but this feature was canceled after the new version of 10.0. Although the new version of ETM001 comes with a temporary IP address when it leaves the factory, there are more older versions of ETM001 in use on site, and the cancellation of this MAC write greatly reduces the customer's use experience.

Is it possible to restore or add a patch?

I don't think there is a necessary connection between using the new version of ME10.0 and ETM001 on site!

6 Replies

  • The Set Temporary IP Address feature stopped working under later revisions of Windows 7 and is presumably not working in Windows 10.

    For pre-version 7 ETMs, you can use Station Manager commands to view the IP address (SOSW) and set a temporary IP address (CHSOSW).
  • In reply to Steve Ward:

    Hi Steve, thank you for your help. However, I still don't quite understand how to use the Station Manager. Can you give me further guidance or tell me which manual to use? Sorry, maybe this question is not professional. "Because when the customer asked me today, I also checked for a long time, but I still don't know how to help the customer solve this problem!"!
  • In reply to Jack.Zhang:

    For pre-version 7 ETMs, you can either use an Ethernet version of the Station Manager client (not much use if you don't know the IP address) or you can connect a laptop via a serial cable and use terminal emulator software. See GFK-2224 and GFK-2225 on our www.emerson.com/iac-support site.
  • In reply to Steve Ward:

    Hi Jack, I ended up creating a .bat file that will do the same function as the utility. Fill in your interface/adapter name, IP address and MAC. You have to enable telnet and run the bat file as a local administrator for this to work. Of course you can also type the three bottom lines into a command prompt window (as local admin). Just replace the parameters.

    REM bat file to set temp IP
    REM on Win 10 enable Telnet first
    REM run this "as administrator"

    SET interface="Ethernet1"
    SET ip="192.168.0.100"
    SET mac="00-09-91-01-23-31"

    REM delete arp cache / set arp entry / telnet to interface to set IP
    netsh interface ip delete arpcache
    netsh interface ip add neighbors %interface% %ip% %mac%
    telnet %ip% 1

  • In reply to Mats Andersson:

    Thank you for your help. I'll try it right away.
  • In reply to Steve Ward:

    I see what you mean. Thank you. I will have the customer test it. Of course, the best way is to replace it with the latest ETM001, which will be more convenient.