免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1695 | 回复: 4
打印 上一主题 下一主题

这个改ip的程序怎么不能用? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-08-14 10:32 |只看该作者 |倒序浏览
写了个改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.        
复制代码

大家帮忙看看呀

论坛徽章:
0
2 [报告]
发表于 2005-08-14 12:56 |只看该作者

这个改ip的程序怎么不能用?

建议你看看ifconfig的源代码,至少man ifconfig

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
3 [报告]
发表于 2005-08-14 12:59 |只看该作者

这个改ip的程序怎么不能用?

http://cmpp.linuxforum.net/cman-html/man7/netdevice.7.html

论坛徽章:
0
4 [报告]
发表于 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

论坛徽章:
0
5 [报告]
发表于 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
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP