Chinaunix

标题: 这个改ip的程序怎么不能用? [打印本页]

作者: rootclown    时间: 2005-08-14 10:32
标题: 这个改ip的程序怎么不能用?
写了个改ip的程序,却不能用。
改完后发现路由表里的默认网关不见了,这是为什么?
clown:/home/clown/prog/tools# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
localnet        *               255.255.255.0   U     0      0        0 eth0


正常的
clown:/home/clown/prog/tools# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
localnet        *               255.255.255.0   U     0      0        0 eth0
default         202.4.147.1     0.0.0.0         UG    0      0        0 eth0


the code

  1. /*       
  2. *        changeIP.c : simple change ip address tool.
  3. *        author     : r00tclown  <rootclown@163.com>;
  4. *        creation   : 05/8/14
  5. *        compile    : gcc changeIP.c -o changeIP
  6. *        gcc 3.3.5               
  7. *        kernel 2.6.8-2-686
  8. */
  9. #include<unistd.h>;
  10. #include<sys/types.h>;
  11. #include<sys/socket.h>;
  12. #include<sys/ioctl.h>;
  13. #include<netinet/in.h>;
  14. #include<arpa/inet.h>;
  15. #include<linux/if.h>;

  16. void change_ip(char *);
  17. void err_quit(char *);
  18. void usage(void);

  19. main(int argc,char *argv[])
  20. {
  21.         if(argc!=2)
  22.         {
  23.                 usage();
  24.                 exit(0);
  25.         }
  26.         change_ip(argv[1]);
  27. }
  28. void change_ip(char *newip)
  29. {
  30.         int sock;
  31.         struct ifreq ifr,sifr;
  32.         struct sockaddr_in *sin;
  33.         char *dev="eth0";

  34.         if((sock=socket(AF_INET,SOCK_DGRAM,0))<0)
  35.                 err_quit("socket");
  36.        
  37.         memset(&ifr,0,sizeof(struct ifreq));
  38.         strcpy(ifr.ifr_name,dev);
  39.         if(ioctl(sock,SIOCGIFADDR,&ifr)<0)        /*get original ip address*/
  40.                 err_quit("ioctl");
  41.         sin=(struct sockaddr_in *)&ifr.ifr_addr;
  42.         printf("the original ip address:%s\n",inet_ntoa(sin->;sin_addr));
  43.        
  44. //        memset(&ifr,0,sizeof(ifr));
  45.         if(!inet_aton(newip,&sin->;sin_addr)<0)
  46.                 err_quit("inet_aton");
  47. //        sin->;sin_family=AF_INET;
  48. //        sin->;sin_port=0;
  49.         if(ioctl(sock,SIOCSIFADDR,&ifr)<0)        /*set new ip address*/
  50.                 err_quit("3 ioctl");               
  51.         if(ioctl(sock,SIOCGIFFLAGS,&ifr)<0)
  52.                 err_quit("ioctl");
  53.         ifr.ifr_flags|=IFF_UP;
  54.         if(ioctl(sock,SIOCSIFFLAGS,&ifr)<0)
  55.                 err_quit("4 iotcl");
  56.         if(ioctl(sock,SIOCGIFADDR,&ifr)<0)        /*check that we are right*/
  57.                 err_quit("5 ioctl");
  58.         printf("current ip address     :%s\n",inet_ntoa(sin->;sin_addr));
  59.         close(sock);
  60. }
  61. void err_quit(char *msg)
  62. {
  63.         perror(msg);
  64.         exit(1);
  65. }
  66. void usage(void)
  67. {
  68.         printf("changeIP : change ip address \n\
  69.                 usage : changeIP <IP you wanted>;\n");
  70. }
  71.        
复制代码

大家帮忙看看呀
作者: zhumao    时间: 2005-08-14 12:56
标题: 这个改ip的程序怎么不能用?
建议你看看ifconfig的源代码,至少man ifconfig
作者: mq110    时间: 2005-08-14 12:59
标题: 这个改ip的程序怎么不能用?
http://cmpp.linuxforum.net/cman-html/man7/netdevice.7.html
作者: rootclown    时间: 2005-08-14 13:26
标题: 这个改ip的程序怎么不能用?
strace ifconfig found this
socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 4
......
ioctl(4, SIOCSIFADDR, 0xbffff860)       = 0
ioctl(4, SIOCGIFFLAGS, 0xbffff780)      = 0
ioctl(4, SIOCSIFFLAGS, 0xbffff780)      = 0

if run ifup eth0,then everything is OK
作者: rootclown    时间: 2005-08-14 14:58
标题: 这个改ip的程序怎么不能用?
I think the code is correct
because when use ifconfig to set a new ip address,the interface should be brought up by ifup manually
my code can archive the function




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2