Does anyone know how to programmatically get an iPhone's MAC address and IP address?

link|improve this question
i want to get MAC address and IP address programmatically in an iPhone application. – abc Mar 24 '09 at 14:05
1  
using objective-C? – TStamper Mar 24 '09 at 14:13
feedback

6 Answers

up vote 51 down vote accepted

Somthing I stumbled across a while ago. Originally from here I modified it a bit and cleaned things up.

IPAddress.h
IPAddress.c

And to use it

InitAddresses();
GetIPAddresses();
GetHWAddresses();

int i;
NSString *deviceIP = nil;
for (i=0; i<MAXADDRS; ++i)
{
	static unsigned long localHost = 0x7F000001;		// 127.0.0.1
	unsigned long theAddr;

	theAddr = ip_addrs[i];

	if (theAddr == 0) break;
	if (theAddr == localHost) continue;

	NSLog(@"Name: %s MAC: %s IP: %s\n", if_names[i], hw_addrs[i], ip_names[i]);

        //decided what adapter you want details for
	if (strncmp(if_names[i], "en", 2) == 0)
	{
		NSLog(@"Adapter en has a IP of %@", [NSString stringWithFormat:@"%s", ip_names[i]]);
	}
}

Adapter names vary depending on the simulator/device as well as wifi or cell on the device.

Hope that helps.

chris.

link|improve this answer
i just wonder if this is any different from a generic OS X approach (i'm asking because i'm a mac n00b) – DrJokepu Mar 24 '09 at 14:59
@DrJokepu I think its basic OSX stuff. Actually its basic BSD stuff. The same approach would most likely work on linux as well (even possibly windows with a little tweaking) – PyjamaSam Mar 24 '09 at 15:19
1  
@abc: I recommend you post another question about that. Be better then burying it in comments for a different question. – PyjamaSam Mar 24 '09 at 15:21
1  
but what about the call to ether_ntoa ? this is private API isn't it? – stigi Nov 4 '09 at 13:12
1  
@NicTesla I can't comment for sure, but since its just doing basic networking calls I can't see a problem. Though that being said with the removal of the UDID from iOS5 getting the mac address and using it to develop some kind of alternate unique identifier might come under scrutiny by apple at some point in the future. – PyjamaSam Sep 22 '11 at 19:15
show 5 more comments
feedback

I wanted something to return the address regardless of whether or not wifi was enabled, so the chosen solution didn't work for me. I used another call I found on some forum after some tweaking. I ended up with the following (excuse my rusty C ) :

#include <sys/types.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <net/if_dl.h>
#include <ifaddrs.h>


char*  getMacAddress(char* macAddress, char* ifName) {

int  success;
struct ifaddrs * addrs;
struct ifaddrs * cursor;
const struct sockaddr_dl * dlAddr;
const unsigned char* base;
int i;

success = getifaddrs(&addrs) == 0;
if (success) {
    cursor = addrs;
    while (cursor != 0) {
        if ( (cursor->ifa_addr->sa_family == AF_LINK)
            && (((const struct sockaddr_dl *) cursor->ifa_addr)->sdl_type == IFT_ETHER) && strcmp(ifName,  cursor->ifa_name)==0 ) {
            dlAddr = (const struct sockaddr_dl *) cursor->ifa_addr;
            base = (const unsigned char*) &dlAddr->sdl_data[dlAddr->sdl_nlen];
            strcpy(macAddress, ""); 
            for (i = 0; i < dlAddr->sdl_alen; i++) {
                if (i != 0) {
                    strcat(macAddress, ":");
                }
                char partialAddr[3];
                sprintf(partialAddr, "%02X", base[i]);
                strcat(macAddress, partialAddr);

            }
        }
        cursor = cursor->ifa_next;
    }

    freeifaddrs(addrs);
}    
return macAddress;
}

And then I would call it asking for en0, as follows:

char* macAddressString= (char*)malloc(18);
NSString* macAddress= [[NSString alloc] initWithCString:getMacAddress(macAddressString,"en0")
                                              encoding:NSMacOSRomanStringEncoding];
link|improve this answer
2  
I had to add #define IFT_ETHER 0x6 – teedyay Aug 9 '11 at 12:32
This one doesn't work for me... says ifName is not declared as well as the macaddress variable. – bugfixr Aug 29 '11 at 13:53
The above calling code will leak. free(macAddressString); before returning from the above calling method. Also, macAddress should be autoreleased if the above calling code is in another method. – Veera.s.Vasan Oct 10 '11 at 22:29
@Veera.s.Vasan, you are correct. The snippet was not meant as complete code, just to show you how to use the above function. – shipmaster Oct 11 '11 at 19:33
1  
to be clear, the code itself will not leak, the commenter was talking about the calling snippet at the end, where I allocate two string without freeing them. – shipmaster Dec 20 '11 at 21:25
feedback

More clean solution on iPhoneDeveloperTips website:

#include <sys/socket.h>
#include <sys/sysctl.h>
#include <net/if.h>
#include <net/if_dl.h>

...

- (NSString *)getMacAddress
{
  int                 mgmtInfoBase[6];
  char                *msgBuffer = NULL;
  size_t              length;
  unsigned char       macAddress[6];
  struct if_msghdr    *interfaceMsgStruct;
  struct sockaddr_dl  *socketStruct;
  NSString            *errorFlag = NULL;

  // Setup the management Information Base (mib)
  mgmtInfoBase[0] = CTL_NET;        // Request network subsystem
  mgmtInfoBase[1] = AF_ROUTE;       // Routing table info
  mgmtInfoBase[2] = 0;              
  mgmtInfoBase[3] = AF_LINK;        // Request link layer information
  mgmtInfoBase[4] = NET_RT_IFLIST;  // Request all configured interfaces

  // With all configured interfaces requested, get handle index
  if ((mgmtInfoBase[5] = if_nametoindex("en0")) == 0) 
    errorFlag = @"if_nametoindex failure";
  else
  {
    // Get the size of the data available (store in len)
    if (sysctl(mgmtInfoBase, 6, NULL, &length, NULL, 0) < 0) 
      errorFlag = @"sysctl mgmtInfoBase failure";
    else
    {
      // Alloc memory based on above call
      if ((msgBuffer = malloc(length)) == NULL)
        errorFlag = @"buffer allocation failure";
      else
      {
        // Get system information, store in buffer
        if (sysctl(mgmtInfoBase, 6, msgBuffer, &length, NULL, 0) < 0)
          errorFlag = @"sysctl msgBuffer failure";
      }
    }
  }

  // Befor going any further...
  if (errorFlag != NULL)
  {
    NSLog(@"Error: %@", errorFlag);
    return errorFlag;
  }

  // Map msgbuffer to interface message structure
  interfaceMsgStruct = (struct if_msghdr *) msgBuffer;

  // Map to link-level socket structure
  socketStruct = (struct sockaddr_dl *) (interfaceMsgStruct + 1);

  // Copy link layer address data in socket structure to an array
  memcpy(&macAddress, socketStruct->sdl_data + socketStruct->sdl_nlen, 6);

  // Read from char array into a string object, into traditional Mac address format
  NSString *macAddressString = [NSString stringWithFormat:@"%02X:%02X:%02X:%02X:%02X:%02X", 
                                macAddress[0], macAddress[1], macAddress[2], 
                                macAddress[3], macAddress[4], macAddress[5]];
  NSLog(@"Mac Address: %@", macAddressString);

  // Release the buffer memory
  free(msgBuffer);

  return macAddressString;
}
link|improve this answer
The link is invalid – wuf810 Jan 24 at 11:25
all works fine for me – ArtFeel Jan 24 at 20:23
change the link to mobiledevelopertips instead of iphonedevelopertips – SEG May 10 at 12:09
feedback

There are vary solutions about this, but I couldn't find a whole thing. So I made my own solution for :

https://bitbucket.org/kenial/nicinfo

How to use :

NICInfoSummary* summary = [[[NICInfoSummary alloc] init] autorelease];

// en0 is for WiFi 
NICInfo* wifi_info = [summary findNICInfo:@"en0"];

// you can get mac address in 'XX-XX-XX-XX-XX-XX' form
NSString* mac_address = [wifi_info getMacAddressWithSeparator:@"-"];

// ip can be multiple
if(wifi_info.nicIPInfos.count > 0)
{
    NICIPInfo* ip_info = [wifi_info.nicIPInfos objectAtIndex:0];
    NSString* ip = ip_info.ip;
    NSString* netmask = ip_info.netmask;
    NSString* broadcast_ip = ip_info.broadcastIP;
}
else
{
    NSLog(@"WiFi not connected!");
}
link|improve this answer
Very nice & useful class! Good work! However, you missed out [super dealloc] on both classes & forgot to include a library, which leads to warnings in xCode. Patched version can be found here: raptor.hk/download/NICInfo_raptor_patched.zip – Shivan Raptor Dec 30 '11 at 10:09
1  
Thanks, I'll apply this right now :) – Kenial Dec 31 '11 at 5:31
feedback

This looks like a pretty clean solution: https://github.com/gekitz/UIDevice-with-UniqueIdentifier-for-iOS-5/blob/master/Classes/UIDevice%2BIdentifierAddition.m#L32

// Return the local MAC addy
// Courtesy of FreeBSD hackers email list
// Accidentally munged during previous update. Fixed thanks to erica sadun & mlamb.
- (NSString *) macaddress{

    int                 mib[6];
    size_t              len;
    char                *buf;
    unsigned char       *ptr;
    struct if_msghdr    *ifm;
    struct sockaddr_dl  *sdl;

    mib[0] = CTL_NET;
    mib[1] = AF_ROUTE;
    mib[2] = 0;
    mib[3] = AF_LINK;
    mib[4] = NET_RT_IFLIST;

    if ((mib[5] = if_nametoindex("en0")) == 0) {
        printf("Error: if_nametoindex error\n");
        return NULL;
    }

    if (sysctl(mib, 6, NULL, &len, NULL, 0) < 0) {
        printf("Error: sysctl, take 1\n");
        return NULL;
    }

    if ((buf = malloc(len)) == NULL) {
        printf("Could not allocate memory. error!\n");
        return NULL;
    }

    if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) {
        printf("Error: sysctl, take 2");
        free(buf);
        return NULL;
    }

    ifm = (struct if_msghdr *)buf;
    sdl = (struct sockaddr_dl *)(ifm + 1);
    ptr = (unsigned char *)LLADDR(sdl);
    NSString *outstring = [NSString stringWithFormat:@"%02X:%02X:%02X:%02X:%02X:%02X", 
                           *ptr, *(ptr+1), *(ptr+2), *(ptr+3), *(ptr+4), *(ptr+5)];
    free(buf);

    return outstring;
}
link|improve this answer
feedback

@Grantland This "pretty clean solution" looks similar to my own improvement over iPhoneDeveloperTips solution.

You can see my step here: https://gist.github.com/1409855/

link|improve this answer
and I don't understand why I can add comments for my own answers but not for other's answers? :/ – Cœur Mar 27 at 18:16
1  
Because your reputation isn't high enough. – honus May 11 at 0:58
feedback

protected by Community Oct 11 '11 at 16:20

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.