linux如何得到本机地址,Linux下如何得到本机所有IP地址及MAC地址

已知:

gethost and gethostbyname,测试只能得到一个IP地址。

---------------------------------------------------------------

原文:http://www.chinaunix.net/jh/23/161236.html

---------------------------------------------------------------

整理后的代码(在fc6下经过本人编译测试通过):

/*

cc getmac.c -o getmac

*/

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include //for close()

#define MAXINTERFACES      16

int main(int argc, char** argv)

{

int fd, intrface, retn = 0;

struct ifreq buf[MAXINTERFACES];

struct arpreq arp;

struct ifconf ifc;

/*

if (!(ioctl(fd, SIOCGIFHWADDR, (char *) &buf[intrface])))

*/

if((fd = socket(AF_INET,SOCK_DGRAM,0)) >= 0)

{

ifc.ifc_len = sizeof(buf);

ifc.ifc_buf = (caddr_t) buf;

if (!ioctl(fd, SIOCGIFCONF, (char *) &ifc))

{

intrface = ifc.ifc_len / sizeof(struct ifreq);

printf("interface num is intrface=%d\n\n\n", intrface);

while (intrface-- > 0)

{

printf("====================interface:%d====================\n",intrface);

printf("net device %s\n", buf[intrface].ifr_name);

/*Jugde whether the net card status is promisc    */

if (!(ioctl(fd, SIOCGIFFLAGS, (char *) &buf[intrface])))

{

if (buf[intrface].ifr_flags & IFF_PROMISC)

{

puts("the interface is PROMISC");

retn++;

}

}

else

{

char str[256];

sprintf(str, "cpm: ioctl device %s",

buf[intrface].ifr_name);

perror(str);

}

/*Jugde whether the net card status is up                  */

if (buf[intrface].ifr_flags & IFF_UP)

{

puts("the interface status is UP");

}

else

{

puts("the interface status is DOWN");

}

/*Get IP of the net card */

if (!(ioctl(fd, SIOCGIFADDR, (char *) &buf[intrface])))

{

puts("IP address is:");

puts(inet_ntoa(((struct sockaddr_in *)

(&buf[intrface].ifr_addr))->sin_addr));

puts("");

//puts (buf[intrface].ifr_addr.sa_data);

}

else

{

char str[256];

sprintf(str, "cpm: ioctl device %s",

buf[intrface].ifr_name);

perror(str);

}

/*Get HW ADDRESS of the net card */

if (!(ioctl(fd, SIOCGIFHWADDR, (char *) &buf[intrface])))

{

puts("HW address is:");

printf("%02x:%02x:%02x:%02x:%02x:%02x\n",

(unsigned char) buf[intrface].ifr_hwaddr.sa_data[0],

(unsigned char) buf[intrface].ifr_hwaddr.sa_data[1],

(unsigned char) buf[intrface].ifr_hwaddr.sa_data[2],

(unsigned char) buf[intrface].ifr_hwaddr.sa_data[3],

(unsigned char) buf[intrface].ifr_hwaddr.sa_data[4],

(unsigned char) buf[intrface].ifr_hwaddr.sa_data[5]);

puts("");

puts("");

}

else

{

char str[256];

sprintf(str, "cpm: ioctl device %s", buf[intrface].ifr_name);

perror(str);

}

}

}

else

perror("cpm: ioctl");

}

else

perror("cpm: socket");

close(fd);

return retn;

}

另外一个整理好的:

/*

cc getmac.c -o getmac1

*/

#include ;

#include ;

#include ;

#include ;

#include ;

#include ;

#include ;

#include ;

#include ;

#include ;

#include ;

#include ;

#include ;

struct in_addr myself,mymask;

int fd_arp;

struct ifreq ifr;

main(int argc,char* argv[]) {

char device[32];

struct sockaddr from,to;

int fromlen;

struct sockaddr_in *sin_ptr;

u_char *ptr;

int n;

strcpy(device,"lo");

if((fd_arp=socket(AF_INET,SOCK_PACKET,htons(0x0806)))<0) {

perror("arp socket error");

exit(-1);

}

strcpy(ifr.ifr_name,device);

if(ioctl(fd_arp,SIOCGIFADDR,&ifr)<0) {

perror("ioctl SIOCGIFADDR error");

exit(-1);

}

sin_ptr=(struct sockaddr_in *)&ifr.ifr_addr;

myself=sin_ptr->sin_addr;

// get network mask

if(ioctl(fd_arp,SIOCGIFNETMASK,&ifr)<0) {

perror("ioctl SIOCGIFNETMASK error");

exit(-1);

}

sin_ptr=(struct sockaddr_in *)&ifr.ifr_addr;

mymask=sin_ptr->sin_addr;

//if (!(ioctl(fd, SIOCGIFHWADDR, (char *) &buf[intrface])))

// get mac address

if(ioctl(fd_arp,SIOCGIFHWADDR,&ifr)<0) {

perror("ioctl SIOCGIFHWADDR error");

exit(-1);

}

ptr=(u_char *)&ifr.ifr_ifru.ifru_hwaddr.sa_data[0];

printf("\nrequest mac %02x:%02x:%02x:%02x:%02x:%02x,",*ptr,*(ptr+1),*(ptr+2),*(ptr+3),*(ptr+4),*(ptr+5));

printf("\nrequest netmask %s",inet_ntoa(mymask));

printf("\nrequest IP %s\n",inet_ntoa(myself));

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/574871.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

secure连不上远程地址_[笔记]Mariadb安装并配置远程访问

引言熟悉的小伙伴都知道我自用有一台NAS&#xff0c;并为此折腾了不少内容&#xff1a;西蒙宫&#xff1a;折腾&#xff0c;用J3455搭建家庭nas西蒙宫&#xff1a;让家庭NAS走向世界&#xff0c;兼谈Zerotier西蒙宫&#xff1a;折腾——组装NAS编译安装ffmpeg在NAS上部署了Next…

从Wireshark看TCP连接的建立与关闭

TCP是一种面向连接、可靠的协议。TCP连接的建立与断开&#xff0c;都是需要经过通信双方的协商。用一句话概括就是&#xff1a;三次握手say hello&#xff08;建立连接&#xff09;&#xff1b;四次握手say goodbye&#xff08;断开连接&#xff09;。要了解TCP连接的建立与断开…

linux管道通信机制有哪两种,linux的管道通信机制

弹性云服务器 ECS弹性云服务器(Elastic Cloud Server)是一种可随时自助获取、可弹性伸缩的云服务器&#xff0c;帮助用户打造可靠、安全、灵活、高效的应用环境&#xff0c;确保服务持久稳定运行&#xff0c;提升运维效率三年低至5折&#xff0c;多种配置可选了解详情什么是弹性…

python批量ping脚本_Python多线程批量Ping主机IP的脚本

Python 编写多线程 Ping 主机IP的脚本1. 先编写一个 Ping 主机IP的脚本ping_ip.pyimport subprocessimport time# 记录开始执行的时间start_time time.time()# 定义用来 ping 的254 个 ipip_list [10.3.1.str(i) for i in range(1,255)]for ip in ip_list:res subprocess.ca…

用Visual C#来清空回收站(2)

四.程序的源代码&#xff08;recycled.cs&#xff09;、编译方法及运行后的界面&#xff1a;  &#xff08;1&#xff09;.程序的源代码&#xff1a;recycled.cs&#xff1a; using System.IO ; using System.Windows.Forms ; //导入程序中用到的名称空间 class Recycle { pu…

Linux6.8 ssh开启,CentOS 6.8升级 ssh到最新版SSH-8.2p1

查看当前版本ssh -VOpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013有漏洞需要升级编译所需工具包yum install gcc pam-devel zlib-devel安装telnet服务 //防止远程ssh升级失败yum -y install telnet-server* telnetvim /etc/xinetd.d/telnet将disable字段的yes改为no以启用te…

jq苹果手机全屏下点击无效果_苹果系统自带外挂?无需越狱也可录制动作脚本...

网络游戏开始流行起来之后&#xff0c;随之而来的是外挂的兴起&#xff0c;各式各样的外挂中有两种最为致命&#xff1a;物理外挂和系统自带外挂。随着国内电竞行业和电竞直播的兴起&#xff0c;“物理外挂”出现在我们周围的频率也越来越高&#xff0c;比如扩大视角的显示器、…

利用cors,实现js跨域访问Tomcat下资源

第一步&#xff1a;页面js代码&#xff1a; function createCORSRequest(method, url){var xhr new XMLHttpRequest();if ("withCredentials" in xhr){xhr.open(method, url, true);} else if (typeof XDomainRequest ! "undefined"){xhr new XDomainReq…

c语言不同类型变量用什么表示什么作用,C语言数据类型及变量整理

数据类型获取int的字节数大小方法printf("int bytes:%d",sizeof(int));列表整理Int 与 long int的区别早期的C平台是16位int系统&#xff0c;int用二字节表示&#xff0c;范围是-32768~32767&#xff1b;long是long int的简写&#xff0c;用4字节表示&#xff0c;范围…

python求第n个质数_找到第n个质数:麻木

我试图用埃拉霍斯特内斯的筛子找到第n个质数。是的&#xff0c;我看到了类似的帖子&#xff0c;但是我对这段代码有一个问题。一旦找到第n个素数&#xff0c;我就停止算法。我写的是&#xff1a;def nth_prime(n):limit 10**2pn 1 #keeps track of how many prime numbers we…

python中浮点数能用乘法吗_简单讲解Python中的数字类型及基本的数学计算

Python有四种类型的数字:1.整型 a = 2 print a 2.长整型 b = 123456789 print b 3.浮点数 c = 3.2E2 print c 4.复数 复数为实数的推广,它使任一多项式都有根。复数当中有个“虚数单位”j,它是-1的一个平方根。任一复数都可表达为x+yj,其中x及y皆为实数,分别称为复数之“实…

c语言设计通讯录管理程序,C语言程序的设计学生通讯录管理系统方案.docx

include ustdio.hH include "stdlib.h” include "string.h" include "conio.h” include Mstdlib.hu ^define null 0 struct record{char namc[20];char phone[20J;char adress[40J;char postcodeflO];char c_mail[30];}sludcnt[500];struct LinkList{str…

*在通配符及正则表达式中的差别

*在通配符和正则表达式中有其不一样的地方&#xff0c;在通配符中*可以匹配任意的0个或多个字符&#xff0c;而在正则表达式中他是重复之前的一个或者多个字符&#xff0c;不能独立使用的。比如通配符可以用*来匹配任意字符&#xff0c;而正则表达式不行&#xff0c;他只匹配任…

python主成分分析实验报告_python进行主成分分析

数据&#xff1a;序号x1x2x3x414025202101.553031203135042504.518051203.59506101.512507401194082704136092803.51160101703960111803.514401213023050132201.51720141601.53560152202.514301614022020172202141018401100192011260201202200数据标准化&#xff1a;x1x2x3x40-…

c语言可以编制出功能复杂的程序,2018级《C语言程序设计》复习题及答案(5页)-原创力文档...

2014 C2014 C级《 语言程序设计》复习题及答案级《 语言程序设计》复习题及答案一、单项选择题一、单项选择题1 C (B )1、以下不是 C 语言的特点的是 (B )、以下不是 语言的特点的是A CA C、 语言简洁、紧凑、 语言简洁、紧凑BB、 能够编制出功能复杂的程序、 能够编制出功能复…

通知:即日起本博客暂停更新,请移步至yanxin8.com获取最新文章

通知&#xff1a;即日起本博客暂停更新&#xff0c;请移步至yanxin8.com与博主交流及获取最新文章 转载于:https://www.cnblogs.com/iplus/p/4467089.html

python修饰器原理_Python修饰器的函数式编程

Python的修饰器的英文名叫Decorator&#xff0c;当你看到这个英文名的时候&#xff0c;你可能会把其跟Design Pattern里的Decorator搞混了&#xff0c;其实这是完全不同的两个东西。虽然好像&#xff0c;他们要干的事都很相似——都是想要对一个已有的模块做一些“修饰工作”&a…

电影俱乐部c语言程序,C语言课程设计___电影俱乐部程序设计

《C语言课程设计___电影俱乐部程序设计》由会员分享&#xff0c;可在线阅读&#xff0c;更多相关《C语言课程设计___电影俱乐部程序设计(22页珍藏版)》请在人人文库网上搜索。1、学 院: 专 业&#xff1a; 姓 名&#xff1a; 学 号&#xff1a;指导老师&#xff1a; 前 言 C语言…

[JavaScript] 函数同名问题

存在同名函数时&#xff0c;最后的函数会覆盖掉以前的同名函数。 1 var x 1,2 y z 0;3 function add(n) {4 return n n 1;5 }6 y add(x);7 function add(n) {8 return n n 3;9 } 10 z add(x); 11 console.log(x);//x值未变1 12 console.log(y…

湖北汽车工业学院c语言程序设计 汽车零部件采购管理程序,湖北汽车工业学院c语言课程设计实验报告(采购信息管理系统).docx...

湖北汽车工业学院c语言课程设计实验报告(采购信息管理系统)C语言课程设计  商品销售信息管理系统  #include  #include  #include  #include  structproduct//定义商品数据结构  {  intnum;//商品编号  charproductname[20];//商品名称  floatprice;//商品…