An open API service indexing awesome lists of open source software.

https://github.com/yangwao/random-mac-address-generator


https://github.com/yangwao/random-mac-address-generator

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# random-mac-address-generator

I've just been bored in Flixbus going from Vienna, so I made another random mac generator.
They have limits 150M/day/mac address. Let's fix it.

```

write down your real(own) mac address
⫸ ifconfig en0 | grep ether
=> your current mac address is 00:1e:d5:02:4a:8e
Set new random mac with real vendor
⫸ sudo ifconfig en0 ether 58:e8:76:06:6c:8e
Turn Off & On wifi
⫸ networksetup -setairportpower en0 off
⫸ networksetup -setairportpower en0 on

```

Source of IEEE mac address
* [http://standards.ieee.org/develop/regauth/oui/oui.txt](http://standards.ieee.org/develop/regauth/oui/oui.txt)

```sh
awk '$0 ~ "(hex)"{$2="";gsub("-","");print}' \
oui.txt > oui-mac.txt
```

### credits

* https://github.com/Boruch-Baum/mac_changer_choice
* search github for random mac generator