linux的IP及虚IP(附加IP)获取打印

如下为C++代码

cpp 复制代码
#include <iostream>
#include <cstring>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <unistd.h> // Add this header for 'close' function
#include <stdio.h>
#define MAX_IFS_NUM      64
#define MAC_ADDR_LEN     6
#define IP_ADDR_LEN      4

struct netif_info{
    char ifname[IFNAMSIZ];
    char ifreal[IFNAMSIZ];
    unsigned char macaddr[IFHWADDRLEN];
    int ifindex;
    in_addr_t ip;
    in_addr_t mask;
    short int flags;
};

int GetNetifList(netif_info netifs[MAX_IFS_NUM], int &num) {
    int ret = 0;
    int sockfd;
    struct ifconf ifc;
    struct ifreq  ifs[MAX_IFS_NUM];
    struct ifreq  ifr;
    struct sockaddr_in *addr;
    int nsize;

    num = 0;
    sockfd = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP);
    if (sockfd == -1)
        return -1;
    ifc.ifc_len = sizeof(ifs);
    ifc.ifc_req = ifs;
    if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
        ret = -2;
        goto exit;
    }
    nsize = ifc.ifc_len / sizeof(struct ifreq);
    if (nsize > MAX_IFS_NUM) {
        ret = -3;
        goto exit;
    }
    for (int n = 0; n < nsize; ++n) {
        ifr = ifc.ifc_req[n];
        strncpy(netifs[num].ifname, ifr.ifr_name, IFNAMSIZ);
        strncpy(netifs[num].ifreal, ifr.ifr_name, IFNAMSIZ); // Assuming ifname and ifreal are the same initially

        if (ioctl(sockfd, SIOCGIFFLAGS, &ifr) < 0) {
            ret = -7;
            goto exit;
        }
        netifs[num].flags = ifr.ifr_flags;

        // Get IP address
        if (ioctl(sockfd, SIOCGIFADDR, &ifr) < 0) {
            netifs[num].ip = 0;
        } else {
            addr = (struct sockaddr_in*)&ifr.ifr_addr;
            netifs[num].ip = addr->sin_addr.s_addr;
        }

        // Get subnet mask
        if (ioctl(sockfd, SIOCGIFNETMASK, &ifr) < 0) {
            netifs[num].mask = 0;
        } else {
            addr = (struct sockaddr_in*)&ifr.ifr_netmask;
            netifs[num].mask = addr->sin_addr.s_addr;
        }

        if (ioctl(sockfd, SIOCGIFINDEX, &ifr) < 0) {
            ret = -5;
            goto exit;
        }
        netifs[num].ifindex = ifr.ifr_ifindex;

        if (ioctl(sockfd, SIOCGIFHWADDR, &ifr) < 0) {
            ret = -8;
        } else {
            memcpy(netifs[num].macaddr, ifr.ifr_hwaddr.sa_data, MAC_ADDR_LEN);
        }

        ++num;
    }

exit:
    close(sockfd);
    return ret;
}

int main() {
    int num;
    netif_info netifs[MAX_IFS_NUM];
    int ret = GetNetifList(netifs, num);
    if (ret != 0) {
        std::cerr << "Failed to get network interface list. Error code: " << ret << std::endl;
        return ret;
    }

    std::cout << "Number of network interfaces: " << num << std::endl;
    std::cout << "---------------------------------" << std::endl;

    for (int i = 0; i < num; ++i) {
        std::cout << "Interface Name: " << netifs[i].ifname << std::endl;

        std::cout << "IP Address: ";
        for (int j = 0; j < IP_ADDR_LEN; ++j) {
            std::cout << ((netifs[i].ip >> (j * 8)) & 0xFF);
            if (j < IP_ADDR_LEN - 1) {
                std::cout << ".";
            }
        }
        std::cout << std::endl;

        std::cout << "Subnet Mask: ";
        for (int j = 0; j < IP_ADDR_LEN; ++j) {
            std::cout << ((netifs[i].mask >> (j * 8)) & 0xFF);
            if (j < IP_ADDR_LEN - 1) {
                std::cout << ".";
            }
        }
        std::cout << std::endl;

        std::cout << "Interface Index: " << netifs[i].ifindex << std::endl;

        std::cout << "MAC Address: ";
        for (int j = 0; j < MAC_ADDR_LEN; ++j) {
            printf("%02X", netifs[i].macaddr[j]);
            if (j < MAC_ADDR_LEN - 1) {
                printf(":");
            }
        }
        std::cout << std::endl;

        std::cout << "Real Interface Name: " << netifs[i].ifreal << std::endl;

        std::cout << "---------------------------------" << std::endl;
    }

    return 0;
}

如下为命令操作:

查看虚IP

ip -f inet addr

删除指定虚IP

ip addr del 172.x.x.x dev ens33

新增虚IP:

ifconfig ens33:1 172.x.x.x netmask 255.255.250.0

以上注意需要加:1这些来新增一个设备,添加完后在ifconfig 能看到新加的IP。

如下的命令给加到同一个设备上,导致ifconfig看不到,ip a下看得到:

ip addr add 192.168.0.102/24 dev eth0

相关推荐
疯狂的大狗8 分钟前
docker进入正在运行的容器,exit后的比较
运维·docker·容器
XY.散人10 分钟前
初识Linux · 文件(1)
linux·运维·服务器
长天一色22 分钟前
【Docker从入门到进阶】01.介绍 & 02.基础使用
运维·docker·容器
伊玛目的门徒23 分钟前
docker 搭建minimalist-web-notepad
运维·docker·notepad
叶北辰CHINA1 小时前
nginx反向代理,负载均衡,HTTP配置简述(说人话)
linux·运维·nginx·http·云原生·https·负载均衡
不惑_2 小时前
在 Ubuntu 安装 Python3.7(没有弯路)
linux·运维·ubuntu
theo.wu3 小时前
使用Buildpacks构建Docker镜像
运维·docker·容器
玉树临风江流儿3 小时前
Linux驱动开发(速记版)--设备模型
linux·驱动开发
杰哥在此3 小时前
Python知识点:如何使用Multiprocessing进行并行任务管理
linux·开发语言·python·面试·编程
枫叶丹45 小时前
【在Linux世界中追寻伟大的One Piece】进程信号
linux·运维·服务器