分享
 
 
 

PHP中如何得到网卡MAC地址

王朝php·作者佚名  2005-11-28
窄屏简体版  字體: |||超大  

此文章资料完全从由互联网英文站点得到,当初为了回答网友问题,写得和引用的英文。都很简单,希望大家有耐心看下去。

first i will share some basic thing of MAC address on internet.what happens?

look :

Because of the way that the internet was designed and the way that the IP protocol works, you wouldn't be able to find a mac address of someone unless you were local to them. The post earlier about using ping and arp is correct. The mac address is put into the IP packet at the 2nd level of the OSI model, its a physical address... once you go out through a router the mac address of the reported packet is changed, and is changed each and every time.. think of the mac as a "Return" address. You send out a packet and it goes across the country, and goes through 5 routers, the mac address on the packet will change each and every time it goes through a router, where the IP address won't. It's a type of routing code that the routers use to identify where the packet came from and where to send a response to.

example

Machine A sends a packet to Machine B, and it passes through Firewall C and D. The packet does this:

Machine A sends the packet to firewall C, firwall C repackages the packet with its mac address and looks for the quickest route to machine B, it determines that firewall D is the closest to it, so it repackages the packet with its own mac address (since that is where D will send a response to if it cant get to machine

and sends it on to D.. D does the exact same thing and sends the packet to B. Once Machine B receives the packet the entire process starts over again, the last mac address that is reported is for firewall D, but the IP points to Machine A, thats how it knows where to go.

but there is still a function!!

function returnMacAddress() {

// This code is under the GNU Public Licence

// Written by michael_stankiewicz {don't spam} at yahoo {no spam} dot com

// Tested only on linux, please report bugs

// WARNING: the commands 'which' and 'arp' should be executable

// by the apache user; on most linux boxes the default configuration

// should work fine

// Get the arp executable path

$location = `which arp`;

// Execute the arp command and store the output in $arpTable

$arpTable = `$location`;

// Split the output so every line is an entry of the $arpSplitted array

$arpSplitted = split("\n",$arpTable);

// Get the remote ip address (the ip address of the client, the browser)

$remoteIp = $GLOBALS['REMOTE_ADDR'];

// Cicle the array to find the match with the remote ip address

foreach ($arpSplitted as $value) {

// Split every arp line, this is done in case the format of the arp

// command output is a bit different than expected

$valueSplitted = split(" ",$value);

foreach ($valueSplitted as $spLine) {

if (preg_match("/$remoteIp/",$spLine)) {

$ipFound = true;

}

// The ip address has been found, now rescan all the string

// to get the mac address

if ($ipFound) {

// Rescan all the string, in case the mac address, in the string

// returned by arp, comes before the ip address

// (you know, Murphy's laws)

reset($valueSplitted);

foreach ($valueSplitted as $spLine) {

if (preg_match("/[0-9a-f][0-9a-f][:-]".

"[0-9a-f][0-9a-f][:-]".

"[0-9a-f][0-9a-f][:-]".

"[0-9a-f][0-9a-f][:-]".

"[0-9a-f][0-9a-f][:-]".

"[0-9a-f][0-9a-f]/i",$spLine)) {

return $spLine;

}

}

}

$ipFound = false;

}

}

return false;

}

as mentioned before, be sure to understand the basics of the arp table since you can be sure that the obtained mac address is the right one only if the client is connected DIRECTLY to the php server,

if there are routers or gateways that NAT the traffic, the returned mac address will be that of the gateway, not the client beside it

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有