Skip to main content
Visitor II
June 18, 2020
Solved

How to change the "STMicroelectronics" string in a network scan?

  • June 18, 2020
  • 6 replies
  • 1238 views

Hi, i'm using a nucleo-144 board with LwIP stack v2.0.3 in a network communication hardware project, most specific a STM32F207ZG. I would like to change the "STMicroelectronics" string that appear in a scan network for a custom string.

Someone have an idea of how to...?

0693W000001r1T9QAI.png

    This topic has been closed for replies.
    Best answer by TDK

    The "STMicroelectronics" is not a string that is send by the chip, it's retrieved by whatever software is sending you the MAC address info. The 00:80:E1 block of MAC addresses is reserved by ST.

    https://hwaddress.com/oui-iab/00-80-E1/

    Want something different? Change the MAC to something else.

    6 replies

    TDKAnswer
    Super User
    June 18, 2020

    The "STMicroelectronics" is not a string that is send by the chip, it's retrieved by whatever software is sending you the MAC address info. The 00:80:E1 block of MAC addresses is reserved by ST.

    https://hwaddress.com/oui-iab/00-80-E1/

    Want something different? Change the MAC to something else.

    JGAuthor
    Visitor II
    June 19, 2020

    Thanks for the clarification, it was very helpful.

    Visitor II
    June 19, 2020

    You can obtain a block of MAC addresses from the IEEE Registration Authority (for a lot of $$$) then the name you registered with will eventually turn up in future versions of network scanning tools.

    JGAuthor
    Visitor II
    June 19, 2020

    Thanks, i'm getting information about it.

    Graduate II
    June 19, 2020

    For a globally unique address alternatively you can also use these:

    https://www.microchip.com/paramchartsearch/chart.aspx?branchID=7044

    For a locally unique address, just respect the simple rules and generate your own addresses:

    https://en.wikipedia.org/wiki/MAC_address#Universal_vs._local

    JGAuthor
    Visitor II
    June 22, 2020

    Thanks for the suggestions and the links, very interesting information.