【问题标题】:List device's names in the local network列出本地网络中的设备名称
【发布时间】:2015-09-22 13:17:36
【问题描述】:

我能够获取连接的设备 IP 和它们的 MAC 地址,并且还想获取设备的名称和服务(开放端口)。

有人可以帮我解决这个问题吗?

【问题讨论】:

  • 我知道这篇文章太老了,但你能帮我获取设备 IP 和它们的 MAC 地址吗?

标签: ios objective-c iphone network-programming netbios


【解决方案1】:

这里是可以提供帮助的示例项目An iOS Local Area Network / wifi Scanner

你也可以尝试使用Bonjour

这里 - even more 关于局域网中设备的名称


我发现了几个变种:​​

1.

struct hostent *he;
struct in_addr ipv4addr;
inet_pton(AF_INET, [address UTF8String], &ipv4addr);
he = gethostbyaddr(&ipv4addr, sizeof ipv4addr, AF_INET);
if (he) {
    printf("Host name: %s\n", he->h_name);
}

where [address UTF8String] - 比如 127.0.0.1 (ip)

2.

- (NSArray *)hostnamesForAddress:(NSString *)address {
    // Get the host reference for the given address.
    struct addrinfo      hints;
    struct addrinfo      *result = NULL;
    memset(&hints, 0, sizeof(hints));
    hints.ai_flags    = AI_NUMERICHOST;
    hints.ai_family   = PF_UNSPEC; /* Allow IPv4 or IPv6 */
    hints.ai_socktype = SOCK_STREAM;
    hints.ai_protocol = 0;
    hints.ai_canonname = NULL;
    hints.ai_addr = NULL;
    hints.ai_next = NULL;

    int errorStatus = getaddrinfo([address cStringUsingEncoding:NSASCIIStringEncoding], NULL, &hints, &result);
    if (errorStatus != 0) return @[[self getErrorDescription:errorStatus]];

    CFDataRef addressRef = CFDataCreate(NULL, (UInt8 *)result->ai_addr, result->ai_addrlen);
    if (addressRef == nil) return nil;

    freeaddrinfo(result);
    CFHostRef hostRef = CFHostCreateWithAddress(kCFAllocatorDefault, addressRef);
    if (hostRef == nil) return nil;
    CFRelease(addressRef);
    BOOL isSuccess = CFHostStartInfoResolution(hostRef, kCFHostNames, NULL);
    if (!isSuccess) return nil;

    // Get the hostnames for the host reference.
    CFArrayRef hostnamesRef = CFHostGetNames(hostRef, NULL);
    NSMutableArray *hostnames = [NSMutableArray array];
    for (int currentIndex = 0; currentIndex < [(__bridge NSArray *)hostnamesRef count]; currentIndex++) {
        [hostnames addObject:[(__bridge NSArray *)hostnamesRef objectAtIndex:currentIndex]];
    }

    return hostnames;
}

- (NSString *)getErrorDescription:(NSInteger)errorCode
{
    NSString *errorDescription = @"";;
    switch (errorCode) {
        case EAI_ADDRFAMILY: {
            errorDescription = @" address family for hostname not supported";
            break;
        }
        case EAI_AGAIN: {
            errorDescription = @" temporary failure in name resolution";
            break;
        }
        case EAI_BADFLAGS: {
            errorDescription = @" invalid value for ai_flags";
            break;
        }
        case EAI_FAIL: {
            errorDescription = @" non-recoverable failure in name resolution";
            break;
        }
        case EAI_FAMILY: {
            errorDescription = @" ai_family not supported";
            break;
        }
        case EAI_MEMORY: {
            errorDescription = @" memory allocation failure";
            break;
        }
        case EAI_NODATA: {
            errorDescription = @" no address associated with hostname";
            break;
        }
        case EAI_NONAME: {
            errorDescription = @" hostname nor servname provided, or not known";
            break;
        }
        case EAI_SERVICE: {
            errorDescription = @" servname not supported for ai_socktype";
            break;
        }
        case EAI_SOCKTYPE: {
            errorDescription = @" ai_socktype not supported";
            break;
        }
        case EAI_SYSTEM: {
            errorDescription = @" system error returned in errno";
            break;
        }
        case EAI_BADHINTS: {
            errorDescription = @" invalid value for hints";
            break;
        }
        case EAI_PROTOCOL: {
            errorDescription = @" resolved protocol is unknown";
            break;
        }
        case EAI_OVERFLOW: {
            errorDescription = @" argument buffer overflow";
            break;
        }
    }
    return errorDescription;
}
    3.

您可以从getifaddrs(&amp;interfaces) 获得更多信息,struct ifaddrs* interfaces 喜欢

    unsigned char *ptr;
    ptr = (unsigned char *)LLADDR((struct sockaddr_dl *)(temp_addr)->ifa_addr);

    NSString *ip = [NSString stringWithUTF8String: inet_ntoa(((struct sockaddr_in *)temp_addr->ifa_addr)->sin_addr)];
    NSArray *hostsNames = [self hostnamesForAddress:ip];
    NSMutableDictionary *info = [NSMutableDictionary dictionaryWithDictionary:
                                     @{
                                       @"name": @(temp_addr->ifa_name),
                                       @"flags": @(temp_addr->ifa_flags),
                                       @"ip" : ip,
                                       @"family": @(temp_addr->ifa_addr->sa_family),
                                       @"mac" :  [NSString stringWithFormat:@"MAC[%02x:%02x:%02x:%02x:%02x:%02x]", *ptr, *(ptr+1), *(ptr+2), *(ptr+3), *(ptr+4), *(ptr+5)],
                                       @"hostName" : hostsNames.count ? hostsNames : @""
                                       }
                                     ];

结果你会得到类似的东西:

{
    family = 2;
    flags = 32841;
    hostName =     (
        localhost
    );
    ip = "127.0.0.1";
    mac = "MAC[00:00:00:00:00:00]";
    name = lo0;
}
{
    family = 18;
    flags = 34915;
    hostName = ""; //here empty due to one of the following problem or due to CFHostStartInfoResolution return NO - o this point required a little bit more works to be done
    ip = "6.3.6.0";
    mac = "MAC[02:00:00:00:00:00]";
    name = en1;
}

还有this post very interesting,可能有用(我稍后会调查)

关于ifa_name(接口)的一些有用信息

    //            pdp_ip -  interfaces are those that are used for 3G and cellular data
    //            lo = localhost
    //            en = ether
    //            eth - ethernet
    //            wlan, ww, wl - Wifi - Wireless LAN
    //            awdl - ???
    //            utun - ???
    //            ap - is used to represent currently active data connection, Wi-Fi, cellular data or bluetooth or for access point
    //            bridge - Active hotSpot connection
    //            sl -- serial line IP (slip)

【讨论】:

  • 感谢您的回复,使用“wifi 扫描仪”我可以获取设备 ip 和 mac,但不能获取设备名称。使用“Bonjour”我无法获取非苹果设备信息。
  • 这就像一个起点,您可以更深入地使用 wifiScanner 的作者提供的代码并进行调查 - 您可以从包含 mac ip 等的结构中获取设备名称。正如我所提到的 - 这是开始观点。另请参阅我的更新
  • 嘿@Kirill,我无法从“wifiScanner”获取设备名称,我浏览了代码并找到了下面的结构并尝试了可能性。结构 addrinfo { int ai_flags; /* AI_PASSIVE, AI_CANONNAME, AI_NUMERICHOST / int ai_family; / PF_xxx / int ai_socktype; / SOCK_xxx / int ai_protocol; / 0 或 IPPROTO_xxx 用于 IPv4 和 IPv6 / socklen_t ai_addrlen; //i> ai_addr的长度/ char *ai_canonname; / 主机名的规范名称 / struct sockaddr *ai_addr; / 二进制地址 */ struct addrinfo *ai_next; };你能提供任何sn-p(bonjour或任何)
  • 感谢@kirill 的努力,我已经尝试了您提供的所有解决方案,但没有运气,我一直在尝试使用 bonjour,它能够获取台式机和笔记本电脑的名称,但不能获取手机的名称和其他设备。
猜你喜欢
  • 2017-08-11
  • 2023-02-17
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-08-08
  • 2015-07-23
相关资源
最近更新 更多