使用ioctl添加多个ip地址

时间:2017-12-22 05:43:10

标签: c linux

通过使用strace和ifconfig,我发现我可以这样设置IP地址:

 #include <sys/ioctl.h>
 #include <arpa/inet.h>
 #include <net/if.h>
 #include <string.h>

 int main(int argc, const char *argv[]) {
     struct ifreq ifr;
     const char * name = "eth1:0";
     int fd = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);

     strncpy(ifr.ifr_name, name, IFNAMSIZ);

     ifr.ifr_addr.sa_family = AF_INET;
     inet_pton(AF_INET, "10.12.0.1", ifr.ifr_addr.sa_data + 2);
     ioctl(fd, SIOCSIFADDR, &ifr);

     inet_pton(AF_INET, "255.255.0.0", ifr.ifr_addr.sa_data + 2);
     ioctl(fd, SIOCSIFNETMASK, &ifr);

     ioctl(fd, SIOCGIFFLAGS, &ifr);
     strncpy(ifr.ifr_name, name, IFNAMSIZ);
     ifr.ifr_flags |= (IFF_UP | IFF_RUNNING);

     ioctl(fd, SIOCSIFFLAGS, &ifr);

     return 0; 
}

现在我想在eth1:0上添加多个ip地址。 eth1:0是&#39;假的&#39;创建的接口用于添加更多地址。 ioctl的man页面显示设置并获取ip地址但是可以使用ioctl添加多个ip地址吗?如果是这样,我该如何添加?

0 个答案:

没有答案