https://github.com/yangwao/random-mac-address-generator
https://github.com/yangwao/random-mac-address-generator
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/yangwao/random-mac-address-generator
- Owner: yangwao
- License: mit
- Created: 2017-09-03T06:44:46.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-23T12:49:17.000Z (over 7 years ago)
- Last Synced: 2024-12-29T04:28:17.806Z (5 months ago)
- Language: JavaScript
- Size: 1.25 MB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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