Questions tagged [mac-address]

A Media Access Control address (MAC address) is a unique identifier assigned to network interfaces for communications on the physical network segment.

MAC addresses are most often assigned by the manufacturer of a network interface card (NIC) and are stored in its hardware, the card's read-only memory, or some other firmware mechanism. If assigned by the manufacturer, a MAC address usually encodes the manufacturer's registered identification number and may be referred to as the burned-in address. It may also be known as an Ethernet hardware address (EHA), hardware address or physical address. A network node may have multiple NICs and will then have one unique MAC address per NIC.

MAC addresses are formed according to the rules of one of three numbering name spaces managed by the Institute of Electrical and Electronics Engineers (IEEE): MAC-48, EUI-48, and EUI-64. The IEEE claims trademarks on the names EUI-48 and EUI-64, in which EUI is an acronym for Extended Unique Identifier.

185 questions
-1
votes
1 answer

Bypassing blacklisted MAC address filtering (that prevents certain MAC address to access router)

PROBLEM OVERVIEW I have a access to a large WLAN network (in a hostel); where lot of students have access to wifi password. So, to prevent sharing this password to others I used MAC address white-list filtering. At first everyone share their MAC…
-1
votes
1 answer

Is obtaining Mac Address illegal?

Just wondering, in the US, if a retailer or restaurant wants to collect user's data through obtaining mac address, is it illegal?
-1
votes
1 answer

Mac address of a laptop by ip

I lost my laptop and I do have ip address which recently accessed. Pls help anyone to trace my MAC address
-2
votes
3 answers

Is it possible to retrieve MAC address of a host using Tor?

I know that Tor is used for anonymity while browsing in the Internet. I heard that by using Tor, it is possible to hide my IP. But is it possible to hide my MAC address also?
Anandu M Das
  • 1,981
  • 14
  • 31
  • 46
-4
votes
1 answer

Get MAC address of client using PHP, Angular js, jQuery/JavaScript

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) { …
akhil
  • 1
  • 1
  • 1
1 2 3
12
13