Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to know the MAC and the IP address of the connect clients, how can I do this in PHP?

share|improve this question
IP address of what? Of the client that is connected? – Palantir Sep 14 '09 at 8:48
Address of the server or of a visitor? – KiNgMaR Sep 14 '09 at 8:48
yes IP address of the client – Neveen Sep 14 '09 at 8:49
4  
For what purpose do you want the MAC address? Are you aware it can be changed by the user? – EJP May 13 '12 at 23:31

7 Answers

Server IP

You can get the server IP address from $_SERVER['SERVER_ADDR'].

Server MAC address

For the MAC address, you could parse the output of netstat -ie in Linux, or ipconfig /all in Windows.

Client IP address

You can get the client IP from $_SERVER['REMOTE_ADDR']

Client MAC address

The client MAC address will not be available to you except in one special circumstance: if the client is on the same ethernet segment as the server.

So, if you are building some kind of LAN based system and your clients are on the same ethernet segment, then you could get the MAC address by parsing the output of arp -n (linux) or arp -a (windows).

Edit: you ask in comments how to get the output of an external command - one way is to use backticks, e.g.

$ipAddress=$_SERVER['REMOTE_ADDR'];
$macAddr=false;

#run the external command, break output into lines
$arp=`arp -a $ipAddress`;
$lines=explode("\n", $arp);

#look for the output line describing our IP address
foreach($lines as $line)
{
   $cols=preg_split('/\s+/', trim($line));
   if ($cols[0]==$ipAddress)
   {
       $macAddr=$cols[1];
   }
}

But what if the client isn't on a LAN?

Well, you're out of luck unless you can have the client volunteer that information and transmit via other means. See Peter G Mac's suggestion for using Javascript.

share|improve this answer
How to get output of arp -a by using php?? – Neveen Sep 14 '09 at 12:04
@paulDixon hello this is a old post, and I'm wondering is there is a new way to get the Mac Address? – jcho360 Jun 21 '12 at 12:58
@jcho360 It's still not possible to get the MAC address of a client. I don't expect to see it happen anyway because the MAC address has no communication value and so will not be preserved in het request header. – Bearwulf Jul 3 '12 at 12:18
@Bearwulf thank you so much for reply back, that's what I thought, is there any way to identify unique computers connected to a site? – jcho360 Jul 3 '12 at 14:17
1  
@jcho360 Personally I would use a combination of IP address + Request information and make a hash of it, for example md5($_SERVER['REMOTE_ADDR'] . $_SERVER['HTTP_USER_AGENT']);. It definently isn't bulletproof but its a start. Another more easier and secure way is setting a cookie with a unique hash. When using that cookie everytime you are sure which user is connecting to your website. – Bearwulf Jul 5 '12 at 11:50

The MAC address of a client (in the sense of the computer that issued the HTTP request) is overwritten by every router between the client and the server.

Client IP is conveniently provided to the script in $_SERVER['REMOTE_ADDR']. In some scenarios, particularly if your web server is behind a proxy (i.e. a caching proxy) $_SERVER['REMOTE ADDR'] will return the IP of the proxy, and there will be an extra value, often $_SERVER['HTTP_X_FORWARDED_FOR'], that contains the IP of the original request client.

Sometimes, particularly when you're dealing with an anonymizing proxy that you don't control, the proxy won't return the real IP address, and all you can hope for is the IP address of the proxy.

share|improve this answer

I don't think you can get MAC address in PHP, but you can get IP from $_SERVER['REMOTE_ADDR'] variable.

share|improve this answer

Never say never :) You can bridge client-server with javascript.

Look at this link Javascript MAC finder

By utilizing the javascript code from above and tweaking security permissions. Set the result to a variable, and send the MAC value over (with Jquery), Ajax to your PHP file `

var detected= "00:FF:AB:CC:DD";

$.post("MAC-log.php", { id: detected} );

share|improve this answer
3  
The script runs only on IE with the following limitations #fail – Petrogad Feb 26 at 15:05

All you need to do is to put arp into diferrent group.

Default:

-rwxr-xr-x 1 root root 48K 2008-11-11 18:11 /usr/sbin/arp*

With command:

sudo chown root:www-data /usr/sbin/arp

you will get:

-rwxr-xr-x 1 root www-data 48K 2008-11-11 18:11 /usr/sbin/arp*

And because apache is a daemon running under the user www-data, it's now able to execute this command.

So if you now use a PHP script, e.g.:

<?php
$mac = system('arp -an');
echo $mac;
?>

you will get the output of linux arp -an command.

share|improve this answer
That'll only give you the MAC addresses of the devices on your local network. – duskwuff Aug 17 '11 at 5:11
echo $_SERVER['REMOTE_ADDR'];

Test and Run this code snippet here http://init.me/113913/get-the-client-ip-address (right-click to open in new window)

share|improve this answer

You can't get the remote MAC address because it's not transmitted to your server

yes you can get mac address with php

this is the code:

<?php
/*
* Getting MAC Address using PHP
* Md. Nazmul Basher
*/

ob_start(); // Turn on output buffering
system('ipconfig /all'); //Execute external program to display output
$mycom=ob_get_contents(); // Capture the output into a variable
ob_clean(); // Clean (erase) the output buffer

$findme = "Physical";
$pmac = strpos($mycom, $findme); // Find the position of Physical text
$mac=substr($mycom,($pmac+36),17); // Get Physical Address

echo $mac;
?>
share|improve this answer
this code can not run on linux based server (i'm using Ubuntu server) it's just run on windws based server (tested on windows XP) – user984887 Oct 8 '11 at 0:32
6  
Congratulations, you have found the MAC address of the server. The client's MAC address is not transmitted to the server, period. Also, how often does this non-answer need to be posted? – deceze Oct 8 '11 at 0:46
on localhost its working but on remote server its not working – Arif May 24 '12 at 4:54

protected by Community Jan 11 '12 at 9:16

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.