2020-06-18 01:34 PM
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...?
Solved! Go to Solution.
2020-06-18 01:37 PM
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.
2020-06-18 01:37 PM
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.
2020-06-18 05:45 PM
Thanks for the clarification, it was very helpful.
2020-06-19 12:09 AM
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.
2020-06-19 11:29 AM
Thanks, i'm getting information about it.
2020-06-19 01:33 PM
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
2020-06-22 02:27 PM
Thanks for the suggestions and the links, very interesting information.