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.

A MAC address is a 48 bit identifier assigned to every device connected to a network. They are normally written as 6 octets displayed as hexadecimal digits, for example 08:01:27:0E:25:B8. The first 3 octets identify the manufacturer, the last 3 are to ensure that each address for that manufacturer is unique.

MAC addresses are used for numerous network technologies and most IEEE 802 network technologies, including Ethernet. Logically, MAC addresses are used in the Media Access Control protocol sub-layer of the OSI reference model.

1056 questions
11
votes
1 answer

Get device details from MAC Address

I have used the SendArp API function to retrieve the MAC addresses that are present on my network. Now that I have a MAC address, I would like to retrieve further information about this device (name, type, manufacturer name, etc.), but I don't know…
tmighty
  • 10,734
  • 21
  • 104
  • 218
11
votes
6 answers

C++: Get MAC address of network adapters on Vista?

We are currently using the NetBios method, and it works ok under XP. Preliminary tests under Vista show that it also works, but there are caveats - NetBIOS has to be present, for instance, and from what I've been reading, the order of the adapters…
Laur
  • 821
  • 1
  • 7
  • 9
11
votes
2 answers

Is it possible to find out MAC address of directly wired connected device?

I would like to read MAC address of attached device at the other side of the wire. Suppose to have 2 device, that are directly connected by wire. The first one (DeviceX) has Ethernet interface already configured (Static IP ....). The second one…
arthur86
  • 531
  • 1
  • 3
  • 20
11
votes
5 answers

Can I fetch a unique server machine identifier with node.js?

I would like to know if there is a way of having NODE retrieve the MAC address(es) of the server on which it is running.
clayperez
  • 807
  • 1
  • 9
  • 18
11
votes
2 answers

Getting the MAC-Address of a client with a browser

I have the following problem: I have a webserver. This webserver is behind a router. The problem is, I need the MAC-Address of a client that opens a website on the server for further purposes. I tried already to get the MAC-Address via an…
chris6523
  • 530
  • 2
  • 8
  • 18
10
votes
2 answers

iOS: UDID deprecated... MAC address?

As we know Apple is deprecating developers' access to UDID. But to my knowledge it is possible to get an iDevice's MAC address. So what's the difference then? Both MAC address and UDID are unique identifier of a hardware, which is not app specific.
Xavier_Ex
  • 8,432
  • 11
  • 39
  • 55
10
votes
2 answers

Will MAC ADDRESS ever run out of combinations?

Mac addresses is made of only 12 digits containing 0-F. So, will they eventually run out of combinations, since each computer has a unique physical address?
Deepraj Chanda
  • 133
  • 1
  • 9
10
votes
1 answer

Why not use MAC addresses instead of Local IPs?

In similar questions, the question that has been answered is: why do we need both MAC and IP addresses on the internet? They are both addresses. Why can't one just be used to describe a device? The answer is along the lines of: The two…
CodyBugstein
  • 21,984
  • 61
  • 207
  • 363
10
votes
3 answers

How do I query the ARP table on iPhone?

I am new on iPhone development, and I want to integrate wake-on-lan into my application without squeezing my users to enter the computers MAC address when the IP is already known. I googled for about some hours, took the source code of an ARP tool,…
anthony vage
  • 311
  • 1
  • 2
  • 9
10
votes
2 answers

C# Get Computer's MAC address "OFFLINE"

Is there any way to get computer's mac address when there is no internet connection in c#? I'am able to get when I have connection but not able to get when I am offline. But strongly I need the mac address for my work. My online code; var macAddr = …
Mehmet Ince
  • 4,059
  • 12
  • 45
  • 65
10
votes
2 answers

Can I get an Android device ID through a mobile website?

Is it possible to get a device's telephony ID, MAC Address, serial number, and/or Android ID through a mobile website? That is, not through a downloadable app, but through a link that the user goes to in the browser on their mobile device? If so,…
Kalina
  • 5,504
  • 16
  • 64
  • 101
9
votes
1 answer

Retrieving Bluetooth MAC Address on Ionic 3 returns null

I am currently developing an Ionic 3 application where I need to get the phone's Bluetooth MAC address (or something that would identify the device inside a Bluetooth network) on an Android device and I have been trying to obtain the MAC address (or…
bolzano
  • 816
  • 2
  • 13
  • 30
9
votes
1 answer

Difference between Mac Address and Bluetooth Address

Can someone tell me the difference between Mac Address and Bluetooth Address in a BLE device? Do they both have to be unique? I've read that changing the bluetooth address affects the mac address? Is it possible to have a different bluetooth…
PictureMeAndYou
  • 533
  • 2
  • 5
  • 16
9
votes
6 answers

Message from Android to Android without Accesspoint

I have two Android-Devices, i have no IP-Addresses the Mac-Addresses are d0:e7:82:fa:90:33 (a) 8c:bf:a6:a8:77:8f (b) how to send a byte from a to b? Is it possible? EDIT: droped DatagramSocket-Sources because its packed-based. By the way:…
Grim
  • 1,938
  • 10
  • 56
  • 123
9
votes
11 answers

Formatting MAC address byte array to String

I am using this code to find the MAC address of a machine. This code prints directly the MAC address, but I want to return it as a string. I am completely confused. please help. try { InetAddress add = InetAddress.getByName("10.123.96.102"); …
rgksugan
  • 3,521
  • 12
  • 45
  • 53