so we cannot generally find the MAC id's of a machine connected to net as one of the problems will be permission!
getting mac address of client machines
Collapse
X
-
-
Comment
-
-
like suppose if that system is accessing ma website its should be identified by unique thing specific to that comp! bcos we need to lock our website for a few ips' of outside internet!Comment
-
-
its like the website will be accessed at only 2 places say 2 hospitals so need to lock them to those places!Comment
-
IS there no solution for this problem . like i am using all linux machines . cant i uniquely identify the system accessing it .something like system ID / CPU ID.Comment
-
-
missinglink
This functionality will work on a local network, but not the internet as the MAC is hidden by the clients router.
In short, the MAC is not present in the IP packet header.
You can retrieve the client IP address via <?php echo $_SERVER['REMOTE_ADDR']; ?> however this is not 100% accurate because of IP address spoofing.Comment
Comment