1. ホーム
  2. c

LinuxでインターフェースのIPアドレスを取得する

2024-01-10 11:44:32

質問

どうすれば IPv4 のアドレスを得るにはどうしたらよいでしょうか?

例えば、私はeth0に割り当てられたIPアドレス(もしあれば)を取得したいと思います。

どのように解決するのですか?

これを試してみてください。

#include <stdio.h>
#include <unistd.h>
#include <string.h> /* for strncpy */

#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <net/if.h>
#include <arpa/inet.h>

int
main()
{
 int fd;
 struct ifreq ifr;

 fd = socket(AF_INET, SOCK_DGRAM, 0);

 /* I want to get an IPv4 IP address */
 ifr.ifr_addr.sa_family = AF_INET;

 /* I want IP address attached to "eth0" */
 strncpy(ifr.ifr_name, "eth0", IFNAMSIZ-1);

 ioctl(fd, SIOCGIFADDR, &ifr);

 close(fd);

 /* display result */
 printf("%s\n", inet_ntoa(((struct sockaddr_in *)&ifr.ifr_addr)->sin_addr));

 return 0;
}

コードサンプルは ここから .