怎么用C语言去设置本地IP地址

怎么用C语言去设置本地IP地址,第1张

#include <iostream>

using namespace std

#include <stdio.h>

#include <sys/socket.h>

#include <arpa/inet.h>

#include <netinet/in.h>

#include <errno.h>

#include <string.h>

#include <stdlib.h>

void setIPv4(char * ip,char * gw,char * netmask){

char cmd[128]

//network interface

char nwkInf[5]="eth0"

//link down command in Linux

sprintf(cmd,"ip link set %s down",nwkInf)

system(cmd) 

memset(cmd,0x00,64)

//command to set ip address, netmask

sprintf(cmd,"ifconfig %s %s netmask %s",nwkInf,ip,netmask)

system(cmd)  

printf("\ncmd : %s",cmd) fflush(stdout)

memset(cmd,0X00,64)

//command to set gateway

sprintf(cmd,"route add default gw %s %s",gw,nwkInf)

system(cmd) 

memset(cmd,0X00,64)

//link up command

sprintf(cmd,"ip link set %s up",nwkInf)

system(cmd) 

}

int main(){

//calling function to set network settings

setIPv4("192.168.10.267","192.168.10.1","255.255.255.0")

return 0

}

#include <stdlib.h>int system(const char *string)例:在~/myprogram/目录下有shell脚本test.sh,内容为#!bin/bash#test.shecho $HOME在该目录下新建一个c文件systemtest.c,内容为:#include<stdlib.h>main(){

system("~/myprogram/test.sh")}执行结果如下:xiakeyou@ubuntu:~/myprogram$ gcc systemtest.c -o

systemtestxiakeyou@ubuntu:~/myprogram$ ./systemtest/home/d/e/xiakeyouxiakeyou@ubuntu:~/myprogram$2)popen(char *command,char *type)执行过程:popen()会调用fork()产生子进程,然后从子进程中调用/bin/sh

-c来执行参数command的指令。参数

type可使用“r”代表读取,“w”代表写入。依照此type值,popen()会建立管道连到子进程的标准输出设备或标准输入设备,然后返回一个文件

指针。随后进程便可利用此文件指针来读取子进程的输出设备或是写入到子进程的标准输入设备中。此外,所有使用文件指针(FILE*) *** 作的函数也都可以使

用,除了fclose()以外。返回值:若成功则返回文件指针,否则返回NULL,错误原因存于errno中。

注意:在编写具SUID/SGID权限的程序时请尽量避免使用popen(),popen()会继承环境变量,通过环境变量可能会造成系统安全的问题。例:C程序popentest.c内容如下:#include<stdio.h>main(){FILE * fpcharbuffer[80]fp=popen(“~/myprogram/test.sh”,”r”)fgets(buffer,sizeof(buffer),fp)printf(“%s”,buffer)pclose(fp)}执行结果如下:xiakeyou@ubuntu:~/myprogram$ vim popentest.cxiakeyou@ubuntu:~/myprogram$ gcc popentest.c -o popentestxiakeyou@ubuntu:~/myprogram$ ./popentest/home/d/e/xiakeyouxiakeyou@ubuntu:~/myprogram$

只是偶能力可能有点有限,没有太看懂。直接用system()倒是脚本可是执行,只是返回值却是一塌糊涂,试了多次也没有找到什么规律。不免又看了一下上面的那篇博文,得到一些启发,可以这样来实现:先将脚本的返回值利用 echo >XXXXX 输出到一个本地文件中当需要这个返回值是,可是通过C语言的文件 *** 作函数来直接从文件中读取后来一想,这应该就是上文中POPEN的实现方法!C程序调用shell脚本共有三种法子 :system()、popen()、exec系列函数 system()

不用你自己去产生进程,它已经封装了,直接加入自己的命令exec 需要你自己 fork 进程,然后exec 自己的命令popen() 也可以实现执行你的命令,比system 开销小1)system(shell命令或shell脚本路径)system()会调用fork()产生 子历程,由子历程来调用/bin/sh-c string来履行

参数string字符串所代表的命令,此命令履行 完后随即返回原调用的历程。在调用system()期间SIGCHLD

信号会被暂时搁置,SIGINT和SIGQUIT 信号则会被漠视 。

返回值:如果system()在调用/bin/sh时失败则返回127,其他失败原因返回-1。若参数string为空指针(NULL),则返回非零值。

如果 system()调用成功 则最后会返回履行

shell命令后的返回值,但是此返回值也有可能为system()调用/bin/sh失败所返回的127,因 此最好能再反省 errno

来确认履行 成功 。system命令以其简略 高效的作用得到很很广泛 的利用 ,下面是一个例子例:在~/test/目录下有shell脚本test.sh,内容为#!bin/bash#test.shecho hello在同层目录下新建一个c文件system_test.c,内容为:#include<stdlib.h>int main(){system("~/test/test.sh")}履行 效果 如下:[root@localhost test]$gcc system_test.c -o system_test[root@localhost test]$./system_testhello[root@localhost test]$2)popen(char *command,char *type)popen()会调用fork()产生 子历程,然后从子历程中调用/bin/sh -c来履行

参数command的指令。参数type可应用 “r”代表读取,“w”代表写入。遵循此type值,popen()会建立

管道连到子历程的标准 输出设备 或标准 输入设备 ,然后返回一个文件指针。随后历程便可利用 此文件指针来读取子历程的输出设备

或是写入到子历程的标准 输入设备 中。此外,所有应用 文 件指针(FILE*) *** 作的函数也都可以应用

,除了fclose()以外。返回值:若成功 则返回文件指针,否则返回NULL,差错

原因存于errno中。注意:在编写具SUID/SGID权限的程序时请尽量避免应用popen(),popen()会继承环境变量,通过环境变量可能会造成系统安全的问题。例:C程序popentest.c内容如下:#include<stdio.h>main{FILE * fpcharbuffer[80]fp=popen(“~/myprogram/test.sh”,”r”)fgets(buffer,sizeof(buffer),fp)printf(“%s”,buffer)pclose(fp)}履行 效果 如下:[root@localhost test]$ vim popentest.c[root@localhost test]$ gcc popentest.c -o popentest[root@localhost test]$ ./popentest/root/test[root@localhost test]$


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8441947.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-16
下一篇 2023-04-16

发表评论

登录后才能评论

评论列表(0条)

保存