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

I would like to obtain my iPad's IP address programmatically. How can I query the networking subsystem to find out what my IPv4 (and IPv6) addresses are?

Thanks. PS: Can I disable IPv6 somehow?

share|improve this question
IPv6 is not natively supported in iOS, yet. – Shivan Raptor Aug 16 '11 at 2:28
3  
In regards to your 'PS' above, please do not programmatically disable IPv6 on somebody's device. It's just plain rude. – Jeremy Visser Aug 16 '11 at 13:15

3 Answers

In your implementation file .m ,

#import <ifaddrs.h>
#import <arpa/inet.h>



// Get IP Address
- (NSString *)getIPAddress {    
    NSString *address = @"error";
    struct ifaddrs *interfaces = NULL;
    struct ifaddrs *temp_addr = NULL;
    int success = 0;
    // retrieve the current interfaces - returns 0 on success
    success = getifaddrs(&interfaces);
    if (success == 0) {
        // Loop through linked list of interfaces
        temp_addr = interfaces;
        while(temp_addr != NULL) {
            if(temp_addr->ifa_addr->sa_family == AF_INET) {
                // Check if interface is en0 which is the wifi connection on the iPhone
                if([[NSString stringWithUTF8String:temp_addr->ifa_name] isEqualToString:@"en0"]) {
                    // Get NSString from C String
                    address = [NSString stringWithUTF8String:inet_ntoa(((struct sockaddr_in *)temp_addr->ifa_addr)->sin_addr)];               
                }
            }
            temp_addr = temp_addr->ifa_next;
        }
    }
    // Free memory
    freeifaddrs(interfaces);
    return address;

} 
share|improve this answer
No en0 interface appears in the interfaces list, so just returns error. Not sure if something has changed but definitely not working for me on iOS 5.x – wuf810 Mar 25 '12 at 18:36
May I ask which device are you working on? The codes run well on iPhone 3GS , iPhone 4, iPad 2 with iOS5.0 to iOS5.1 . – Shivan Raptor Mar 26 '12 at 3:29
The above code only works for devices. Is it possible to extend it to the iPad simulator? – user1120008 Apr 16 '12 at 19:18
um... actually the IP of iOS Simulator is the same as your Mac. – Shivan Raptor Apr 17 '12 at 1:48
4  
If you look below you will find some slightly modified code that returns the cell (3G) address if WIFI is off. – David H May 29 '12 at 17:03
show 4 more comments

The revision to the above code returns the wifi address (if there), the cell address (if there), or 0.0.0.0 if no address found. It also addresses a (probably never happens) issue that freeifaddr() was called even on failure:

CODE UPDATED FOR IPV6 (per other "answer" in this post)

- (NSString *)getIPAddress
{    
    struct ifaddrs *interfaces = NULL;
    struct ifaddrs *temp_addr = NULL;
    NSString *wifiAddress = nil;
    NSString *cellAddress = nil;

    // retrieve the current interfaces - returns 0 on success
    if(!getifaddrs(&interfaces)) {
        // Loop through linked list of interfaces
        temp_addr = interfaces;
        while(temp_addr != NULL) {
            sa_family_t sa_type = temp_addr->ifa_addr->sa_family;
            if(sa_type == AF_INET || sa_type == AF_INET6) {
                NSString *name = [NSString stringWithUTF8String:temp_addr->ifa_name];
                NSString *addr = [NSString stringWithUTF8String:inet_ntoa(((struct sockaddr_in *)temp_addr->ifa_addr)->sin_addr)]; // pdp_ip0     
                NSLog(@"NAME: \"%@\" addr: %@", name, addr); // see for yourself

                if([name isEqualToString:@"en0"]) {
                    // Interface is the wifi connection on the iPhone
                    wifiAddress = addr;    
                } else
                if([name isEqualToString:@"pdp_ip0"]) {
                    // Interface is the cell connection on the iPhone
                    cellAddress = addr;    
                }
            }
            temp_addr = temp_addr->ifa_next;
        }
        // Free memory
        freeifaddrs(interfaces);
    }
    NSString *addr = wifiAddress ? wifiAddress : cellAddress;
    return addr ? addr : @"0.0.0.0";
} 
share|improve this answer
how often addr gets NULL? my users occasionally get NULL. do you know whats possible reasons? – HelmiB Nov 6 '12 at 2:43
I'm using only AF_INET to check. could be this? – HelmiB Nov 6 '12 at 2:57
I don't know, but it is for sure possible your users could be on an IPV6 network. – David H Nov 6 '12 at 14:38

Try using the MIDINetworkHost class's static method hostWithName:address:port:.

Use to creates a representation of a MIDI network host based on IP address and UDP port.

share|improve this answer
2  
I think the OP wants to find out their own IP address. I think MIDI hosts are for sending MIDI data over the network. – Arlen Jun 6 '12 at 5:34

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.