欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

c/c++ 网络编程 UDP 改变网关和网卡名字

程序员文章站 2022-06-15 15:20:03
网络编程 UDP 改变网关和网卡名字 在程序里动态改变网关和网卡名字 1,改变网卡名字 "github源代码" 2,改变网关 "github源代码" c/c++ 学习互助QQ群:877684253 本人微信:xiaoshitou5854 ......

网络编程 udp 改变网关和网卡名字

在程序里动态改变网关和网卡名字

1,改变网卡名字

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

int main(){
  int fd;
  ifreq ifr;

  fd = socket(af_inet, sock_dgram, 0);

  strncpy(ifr.ifr_name, "lo", ifnamsiz - 1);
  strncpy(ifr.ifr_newname, "newloname", ifnamsiz - 1);
  if(ioctl(fd, siocsifname, &ifr) != 0){
    perror("ioctl");
    return 1;
  }
  close(fd);
  return 0;
}

2,改变网关

#include <stdio.h>
#include <string.h>
#include <unistd.h>
#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;
  ifreq ifr;
  sockaddr_in *s_in;

  fd = socket(af_inet, sock_dgram, 0);

  s_in = (sockaddr_in*)&ifr.ifr_addr;

  s_in->sin_family = af_inet;
  inet_pton(af_inet, "255.0.0.0", &s_in->sin_addr);

  strncpy(ifr.ifr_name, "enp0s3", ifnamsiz - 1);

  if(ioctl(fd, siocsifnetmask, &ifr) != 0){
    perror("ioctl");
    return 1;
  }
  close(fd);
  return 0;
}

c/c++ 学习互助qq群:877684253

c/c++  网络编程 UDP 改变网关和网卡名字

本人微信:xiaoshitou5854