Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can my Android app find the MAC address of the Wifi access point it is connected to?

The docs for android.net.wifi.WifiInfo getMacAddress() don't provide any details. See http://developer.android.com/reference/android/net/wifi/WifiInfo.html#getMacAddress(). I'm assuming this is the Mac address of my phone. Can I find the Mac address of the access point?

share|improve this question
Marc, can you please post that as an answer so I can accept it? You are right on target, BSSID is the AP Mac address in infrastructure mode - en.wikipedia.org/wiki/…. And Android exposes android.net.wifi.WifiInfo getBSSID() – Michael Levy May 19 '11 at 19:50
Thanks Michael, glad to hear it's working for you. – Marc Bernstein May 20 '11 at 23:26

4 Answers

up vote 5 down vote accepted

getBSSID() of WifiInfo class will return MAC address of remote access point.

BSSID explained here.

share|improve this answer
Thanks. I just figured that out after Marc commented on my question above. – Michael Levy May 19 '11 at 20:21

I'm fairly sure that getMacAddress(), is, as you suspected for the Local Device.

If you can get the IP of the router/gateway/accesspoint, then you might be able to use the code in this post: http://www.flattermann.net/2011/02/android-howto-find-the-hardware-mac-address-of-a-remote-host/ to do your bidding. Good luck!

share|improve this answer
1  
I was just about to post the same link. Funny what Google can turn up. ;-) @Michael: android.net.DhcpInfo.gateway might be what you need for the IP address of the AP – Squonk May 19 '11 at 19:50

Check out the application "Network Info II" from the Android Market. It does show the MAC address, but I'm not sure if this is still the phone's MAC. It also shows the BSSID, which has the same format as a MAC address so perhaps is what you're looking for.

share|improve this answer

The following method will return the MAC address of the access point, null if there is no network currently connected.

public String getMacId() {

    WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
    WifiInfo wifiInfo = wifiManager.getConnectionInfo();
    return wifiInfo.getBSSID();
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.