我正在尝试使用C代码读取ubuntu系统中的IP地址
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <netdb.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
int main(int argc, char **argv) {
int status;
struct addrinfo hints, *p;
struct addrinfo *servinfo;
char ipstr[INET_ADDRSTRLEN];
char hostname[128];
memset(&hints, 0, sizeof hints);
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
hints.ai_flags = AI_PASSIVE;
gethostname(hostname, 128);
if ((status = getaddrinfo(hostname, NULL, &hints, &servinfo)) == -1) {
fprintf(stderr, "getaddrinfo error: %s\n", gai_strerror(status));
exit(1);
}
for (p=servinfo; p!=NULL; p=p->ai_next) {
struct in_addr *addr;
if (p->ai_family == AF_INET) {
struct sockaddr_in *ipv = (struct sockaddr_in *)p->ai_addr;
addr = &(ipv->sin_addr);
}
else {
struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)p->ai_addr;
addr = (struct in_addr *) &(ipv6->sin6_addr);
}
inet_ntop(p->ai_family, addr, ipstr, sizeof ipstr);
}
printf("Address: %s\n", ipstr);
freeaddrinfo(servinfo);
return 0;
}
我没有得到实际的客户端 IP,而是得到 127.0.1.1,而我期待的是 192.168.xx 当我在 /etc/hosts 文件中注释 127.0.1.1 时,我得到了实际的 IP,但此解决方案不可行
答案1
这个问题更多的是程序员的问题,可能属于 StackOverflow。碰巧它已经在这里得到了回答:https://stackoverflow.com/a/265978/453851
结果是你需要使用获取地址
为了解释为什么你的代码不起作用...你的代码所做的是查找本地计算机的主机名,然后询问该主机名的 IP 地址。你会发现你的主机名记录在/etc/hosts
as127.0.0.1
和中::1
。这是linux中常见的配置。当程序尝试与本地计算机上的某些内容进行通信时,它会拨出到网络。