简体   繁体   中英

Changing MAC Address in Android

I am trying to change the Mac address of my rooted Note 2 android device.

I did the following:

  • busybox ifconfig wlan0 down
  • busybox ifconfig wlan0 hw ether 00:11:22:33:44:55
  • busybox ifconfig wlan0 up

The Mac address does get changed but subsequently I can't connect to my router as it is showing authentication failure.

Any idea what's wrong? Is there any other way to change the Mac address in Android?

For those who want to change wifi mac address of rooted deviced I advise you to use wifi mac changer

And fill a mac and click hard change Because I've tried terminal emu but no way Good luck

use this:

you need to use adb shell and su in terminal.

(i change wlan0) you can see all by this command "ip link show"

adb shell
su
ip link show wlan0
ifconfig wlan0 down;
ifconfig wlan0 hw ether 12:13:15:16:18:19  
ifconfig wlan0 up;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM