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
6
votes
2 answers

How Java WebStart application Obtain the MAC address for accessing my webpage

I am writing a java webstart application to deploy from website so users can click and run my software. I need to have a kind of unique machine identification to avoid abusing the accessing of the files. I would like to use the client's MAC…
Hai Bi
  • 1,173
  • 1
  • 11
  • 21
6
votes
1 answer

Detecting another nearby android device via Bluetooth

Alright, I've got a bit of a weird question here. I'm working on an Android game where I'd like to be able to have Android phones detect the presence of each other. The device searching for other players will know the bluetooth mac addresses of the…
ebarch
  • 89
  • 1
  • 7
6
votes
4 answers

How to get MAC address from an Android device?

I have an Android application that works on a single phone. In order to work on a single device, I need to get the MAC address or Android ID. I decided to get the MAC address because the app needs to connect on a specified WiFi network. How to get…
MicKSmith
  • 71
  • 1
  • 1
  • 2
6
votes
1 answer

iOS Bluetooth mac address of nearby devices

I want to get the mac address of the nearby devices using bluetooh Thats the format I want to get. FE:4F:AD:37:67:5D I have completely different format of mac address inside the delegate 5962C58F-BAD1-65D4-DCAC-06BBB06307C6 These are the…
Taimur Ajmal
  • 2,778
  • 6
  • 39
  • 57
6
votes
0 answers

Nodejs os.networkInterfaces returning empty object

I am trying to get the mac address from the client's machine. I did some seaching and found some npm packages. But many seem to use the included os module to do a os.networkInterfaces() and go further from there. But when I try to get all the…
Bas Pauw
  • 262
  • 1
  • 12
6
votes
4 answers

Python get list of mac addresses and compare them with list from file

I am a beginner in Python and I hope you can help me solve this problem. I have a list of mac addresses written in a file. I need to get the list of mac addresses on the network, compare them with the addresses from the file and then print in stdout…
schmimona
  • 849
  • 3
  • 20
  • 40
6
votes
1 answer

iOS - Get ARP table

I am trying to build a network scanner. I know the procedure so I want to ping all available hosts in the network and then get the ARP table so I can map the MAC address for each IP. I Googled for ARP table but I didn't find any guide how to…
BlackM
  • 3,927
  • 8
  • 39
  • 69
6
votes
3 answers

How can I programmatically get the Bluetooth MAC address of an iPhone?

I'm trying to do some proximity detection of iPhones but I need to get their Bluetooth MAC address programmatically. Does anyone knows how ? I assume Bluetooth is activated but no device is paired with the iPhone.
drkbrd
  • 63
  • 1
  • 1
  • 3
6
votes
1 answer

How to get MAC-address in Rust?

How to obtain hwaddr of first ethernet card? And how to list all interfaces?
Alex Raeder
  • 661
  • 6
  • 10
6
votes
0 answers

Can get MAC Address of peripheral after pairing in Core Bluetooth iOS

I'm a newbie in Core Bluetooth LE. Now I want to get MAC Address of peripheral after pairing successfully. As far as I know, after pairing will return a UUID, name and RSSI, i dont see MAC Address.So Can I do that? Any help or answer will be…
6
votes
1 answer

Bluetooth LE : Address Type

I am working on the iBeacon technology and I can't find any answer to a particular point concerning the address type. I found the documenation (bluetooth specification) explaining what are the address types but I can't seem to find how to chose…
ySiggen
  • 503
  • 1
  • 8
  • 23
6
votes
7 answers

Get remote MAC address using Python and Linux

How do I get the MAC address of a remote host on my LAN? I'm using Python and Linux.
myk_raniu
  • 150
  • 1
  • 1
  • 7
6
votes
3 answers

How do I find the original MAC addresses on linux interface-bounding process in Java?

interface-bounding:The Linux bonding driver provides a method for aggregating multiple network interfaces into a single logical bonded interface. The logical bounded interface will have only one MAC address,which is bounded from one of the original…
BlackJoker
  • 3,099
  • 2
  • 20
  • 27
6
votes
1 answer

Android: Advertising ID vs. unique Android ID

Google is replacing the unique Android ID (similar to Apple’s old UDID) with a new Advertising ID. Users will be able to reset the Advertising ID. “Beginning August 1st 2014, all updates and new apps uploaded to the Play Store must use the…
Oli
  • 1,407
  • 3
  • 30
  • 47
6
votes
4 answers

What's a unique, persistent alternative to MAC address?

I need to be able to repeatably, non-randomly, uniquely identify a server host, which may be arbitrarily virtualized and over which I have no control. A MAC address doesn't work because in some virtualized environments, network interfaces don't…
user898699