vote up 0 vote down star

I want to get the MAC and IP address of the connected client using php.

flag

32% accept rate
IP address of what? Of the client that is connected? – Palantir Sep 14 at 8:48
Address of the server or of a visitor? – KiNgMaR Sep 14 at 8:48
yes IP address of the client – Neveen Sep 14 at 8:49

3 Answers

vote up 5 vote down

You can get the server IP address from $_SERVER['SERVER_ADDR']. For the MAC address, you could parse the output of netstat -ie in Linux, or ipconfig /all in Windows.

You can get the client IP from $_SERVER['REMOTE_ADDR'], but the client MAC address will not be available (unless the client is on the same ethernet segment as the server!)

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 ($col[0]==$ipAddress)
   {
       $macAddr=$col[1];
   }
}
link|flag
How to get output of arp -a by using php?? – Neveen Sep 14 at 12:04
vote up 4 vote down

IP

echo $_SERVER['REMOTE_ADDR'];

MAC

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

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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