Objective-C:获取默认网关信息

时间:2012-06-12 13:44:57

标签: objective-c c mac-address gateway inet

如何在Objective-C中获取默认网关IP和MAC地址?

现在,我能够创建一个函数来获取使用arpa/inet.h的IP工作正常,但我不知道如何获取默认网关IP和MAC地址。

NSString* GetMyIP(NSString* inf) {
    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!
                if([[NSString stringWithUTF8String:temp_addr->ifa_name] isEqualToString:inf])
                {
                    // 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;
        }
    }

    freeifaddrs(interfaces);
    return address;
}

我暂时使用arpnetstat,但它们并不总是按预期工作,您可能会理解风险解决方案......

还有另外一种“Apple-way”来获取此类信息吗?不使用arpa/inet.h?实例

谢谢。

1 个答案:

答案 0 :(得分:1)

This answer解释了如何在OSX上获取接口的MAC地址。

默认网关在路由表中注册 - 不直接与网络接口相关联。请注意,默认网关(即0.0.0.0的网关)可能不是您需要关注的唯一网关,可能会为更多受限制的地址范围设置路由器。 (另外,可能有多个网关,默认或其他,具有不同的优先级)

路由表记录在route(4) manpage中 - 希望能够为您提供足够的信息来检索应用中的路由表。