Pregunta

En un cuadro de Linux, los nombres de interfaz comunes se ven como eth0, eth1, etc. Sé cómo encontrar al menos una dirección IP usando gethostbyname o funciones similares, pero no conozco ninguna. forma de especificar de qué interfaz nombrada quiero la dirección IP. Podría usar ifconfig y analizar la salida, pero la búsqueda de esta información parece ... poco elegante.

¿Hay alguna forma de, por ejemplo, enumerar todas las interfaces y sus direcciones IP (y tal vez las direcciones MAC) en una colección? ¿O al menos algo similar a gethostbyinterface (" eth0 ") ?

¿Fue útil?

Solución

// Originally from http://www.tlug.org.za/wiki/index.php/Obtaining_your_own_IP_address

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

/**
 * getIPv4()
 *
 * This function takes a network identifier such as "eth0" or "eth0:0" and
 * a pointer to a buffer of at least 16 bytes and then stores the IP of that
 * device gets stored in that buffer.
 *
 * it return 0 on success or -1 on failure.
 *
 * Author:  Jaco Kroon <jaco@kroon.co.za>
 */
int getIPv4(const char * dev, char * ipv4) {
    struct ifreq ifc;
    int res;
    int sockfd = socket(AF_INET, SOCK_DGRAM, 0);

    if(sockfd < 0)
        return -1;
    strcpy(ifc.ifr_name, dev);
    res = ioctl(sockfd, SIOCGIFADDR, &ifc);
    close(sockfd);
    if(res < 0)
        return -1;     
    strcpy(ipv4, inet_ntoa(((struct sockaddr_in*)&ifc.ifr_addr)->sin_addr));
    return 0;
}


int main() {
    char ip[16];
    if(getIPv4("eth0", ip) == 0)
        printf("IPv4: %s\n", ip);
    else
        printf("No IP\n");
    return 0;
 }

Actualización : Se movió el enlace muerto a un comentario (para la posteridad) (gracias @obayhan), y se agregó resaltado de sintaxis.

Otros consejos

editar: vi que no te gusta el bombardeo. Luego puede ver cómo ifconfig hace su trabajo (extrae al menos algo de información de / proc).

Cuando tiene el nombre de la interfaz, puede hacer esto (en su shell):

ifconfig eth0 | grep 'inet addr' | sed -e 's/:/ /' | awk '{print $3}'

Para enumerar interfaces puede usar esto:

ifconfig | egrep '^[^ ]' | awk '{print $1}'

Combinado:

for x in `ifconfig | egrep '^[^ ]' | awk '{print $1}'`; do
  echo -n "${x}"
  echo -n "    "
  ifconfig "${x}" | grep 'inet addr' | sed -e 's/:/ /' | awk '{print $3}'
done
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top