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 used for numerous network technologies and most IEEE 802 network technologies, including Ethernet. Logically, MAC addresses are ...
-3
votes
0answers
18 views
Laptop Stolen. How to retrieve the stored MAC address of my laptop from the Network logs of my Android Phone? [closed]
Background: I lost my laptop recently and I reported to the police authorities and they said they could help track it if I could give them the MAC address. Unfortunately, I don't remember the MAC ...
0
votes
0answers
11 views
Bluetooth Audio Endpoint Address
On Windows 8, I have installed a bluetooth headset. I am able to enumerate the audio endpoints using the MSDN sample code in
...
0
votes
0answers
41 views
Android device unable to get mac address of iphone via bluetooth programatically
Hi This is a generic question, but wondering if any one can help?, My Android java class was built to get the MAC addresses of near by bluetooth devices programatically with getAddress() method. the ...
-1
votes
1answer
36 views
Retrieve remote system information using Java
I have a project requirement for which I need to store the information of a users system like OS, MAC address, etc. whenever he visits the website so that we can uniquely identify the user's machine. ...
-2
votes
1answer
64 views
Scannig the local network and get MAC, IP and Hostname in C++ or C# [closed]
I'm in trouble finding a suitable solution to my problem, and I hope you can help me with.
I wanna scan the local network in a Windows 7 environnement, and I must return:
- IP
- MAC address
- hostname
...
0
votes
1answer
42 views
Get Mac Address Using VBScript
I'm trying to put some basic level of protection to an Excel (for Windows) application I'm writing. I was thinking on generating a license file using the machine's mac address. My question is: how can ...
0
votes
1answer
67 views
Is it possible to get the SSID & MAC Address of Currently connected WiFi Network in an App
I am looking for a way to get both the MAC Adress and the SSID of the currently connected WiFi Network in my project. I have used Tony Million's Reachability to decide when the user is on a WiFi ...
-1
votes
1answer
28 views
How do I see which MAC addresses are plugged into which ports on a Dell PowerConnect 5548 (software version 4) [closed]
On a Powerconnect 5448 the command is "show bridge address-table" however this is invalid on the 5548 and for the life of me I can't figure out a valid analog. I'm remote and I am trying to work out ...
0
votes
0answers
20 views
What is the most secure authentication technique for a proxy server/captive portal?
Background: I am building a proxy server (with a captive portal login screen). My proxy server intercepts all network traffic and if a request is made from an unauthenticated user, it replaces the ...
1
vote
0answers
45 views
get the mac address of the current machine with node.js using getmac
I am working on this question.
Now I am trying to use getmac
to get the mac address of the current machine with node.js.
I followed the installation instructions. But when I run this code:
...
0
votes
1answer
15 views
Detect local machine to void updating statistics
I'm developing statistics for a website i'm developing, using PHP and MySQL.
Is there anyway to detect in PHP:
//pseudo code
If (the users machine == a certain MAC address){
don't ...
-1
votes
1answer
26 views
Restrictions on MAC Addresses [closed]
I programmed a MAC address generator quite a while ago and I've lost the source code. While I programmed it, I distinctly remember that there were certain rules that needed to be followed to generate ...
0
votes
0answers
23 views
Build network graph from CAM tables
I have a little issue I need to solve. I have some L2 switches (tens of them) connected together without loops. The goal is to construct graph of whole L2 network.
Probably best solution is to use ...
0
votes
2answers
59 views
Wireless MAC Address Patterns
I am creating an application which uses semi-random numbers to roll on a table. The random numbers are generated from wireless network MAC Addressess, so they should be consistent across multiple ...
0
votes
0answers
32 views
dev_set_mac_address is returning EOPNOTSUPP
From net/core/dev.c
dev_set_mac-addr(struct net_device *dev, struct sockaddr *sa)
{
const struct net_device_ops *ops = dev->netdev_ops;
int err
if(!ops.ndo_set_mac_addr)
...
1
vote
1answer
101 views
convert formatted mac address to an hex value
I have a mac address as a string in the following format: xx:xx:xx:xx:xx:xx (six groups of two hexadecimal digits, separated by colons).
I want to convert the string into it's respective hex value ...
0
votes
1answer
131 views
Getting all IP and MAC addresses on a network
Hi I am new on VB 2010 and trying to write simple WPF application which will detect all machines connected to local wireless network and list IP addresses and Mac addresses of this machines.
0
votes
1answer
29 views
can some one explain communication between two clients in below network?
PC1 -> switch A -> switch B -> PC2.
Ip address of PC1 -192.168.2.1
Ip address of PC2 -192.168.2.2
if i ping PC2 from PC1, how will be the packet forwarded?
what will be the packets source ip ...
0
votes
2answers
154 views
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 ...
0
votes
1answer
76 views
Getting MAC Address in Windows 8 app
I am creating a windows 8 app. I have a requirement to save MAC address of my device but I could not find a way to get the MAC Address.
Can anybody help me out??
1
vote
1answer
213 views
how to find the MAC address of another computer (client server)?
i am trying to get the MAC address of another computer using a server and client program in c++ using UDP connections. The server is on one computer (it contains 2 listboxes, 1 for the IP addresses of ...
-2
votes
1answer
68 views
program crashes when i try find MAC address
i have a client server application in MFC using UDP where the server displays the IP address of connected clients in a listbox. If i run the client and server on the same computer the program ...
0
votes
1answer
96 views
how to print the MAC address
i created a client server program that displays the MAC and ip addresses of the clients and i have a function that gets the MAC address of the computer but I'm having trouble printing the MAC address ...
1
vote
1answer
161 views
Getting client information in C#
I have an application that scans the local network for connected PC's.
I want to get the client information (IP address, MAC address, Host name...) and the connection state (download rate, upload ...
0
votes
0answers
49 views
does ieee mac address apply to both wifi and bluetooth chip
I know that both wifi and bluetooth mac address should be assigned by ieee organization.
my question is :
suppose I get address range from ieee, (e.g. 00A0C6, it's oui for qualcomm, check this site
...
3
votes
1answer
79 views
MAC Address of other wifi device in a wifi network
Is it possible to find the MAC address of all other wifi enabled device in a wifi network programmatically by using C or C++, if so then please tell me the way or direction, how can i do that Visual ...
0
votes
1answer
71 views
Arduino search network for an IP address and get the MAC address
I am looking for a way to get the MAC address of an IP address in Arduino and print that to serial. Is there a way to do that?
I know how to print the line. I just really need the function to get the ...
1
vote
0answers
41 views
Get MAC Address of other wifi device [duplicate]
Can any tell me how can i find the mac address of another wifi enabled device in a wifi range by using the c or c++.
Thanx
1
vote
3answers
453 views
Python: get MAC address of default gateway
Is there any quick way in Python to get the MAC address of the default gateway?
I can't make any ARP requests from the Linux machine I'm running my code on, so it has to come directly from the ARP ...
-5
votes
1answer
36 views
Hidding MAC Address [closed]
iam wondering is there any external device that sits in a front of router and hides MAC and IP address.And i know that this site is related to programming issues but i need help :)
code
-2
votes
1answer
395 views
Get IP from Mac-Address in c#
Is there a way to get the ip-address (or hostname) to a given mac-address?
Everything I have found was getting the host name to ip and vice versa with System.Net.Dns.
0
votes
1answer
342 views
Integer.parseInt(string, radix) in Java returns (mostly) negative decimal values
As I said above I am using Integer.parseInt to convert hex values into decimal but I keep getting returned negative integers when I put in positive hex values:
byte[] bytes2 = ...
0
votes
1answer
91 views
WlanApi: fetch MacAddress of Wireless signal without connecting
Using WlanApi.lib, I am able to get the Listof Available signal details using WlanGetAvailableNetworkList functionMSDN Link.
In order to get the Mac Address, Channel of each available signal, I need ...
-2
votes
1answer
102 views
Same MAC address but different IP on router [closed]
If a device has same mac address but different IP on home router,
is this some sort of error or hacking? What is going on?
I can't attach a pic so I've listed below. Computer name for second doesn't ...
-1
votes
2answers
212 views
Run .exe file from linux server to Windows client?
Can .exe file runs From linux server to Windows client..
take a look at this :
$command = '../views/macaddress/macaddress.exe';
exec( $command, &$output);
var_dump($output,$dir);
when i run ...
0
votes
0answers
210 views
Get MAC address of currently connected WAP in c#
I need to programmatically detect the wireless MAC for the wireless access point which the machine is currently connected to.
There are some questions already like this Get BSSID (MAC address) of ...
1
vote
1answer
1k views
How can I get a MAC address using Javascript on Windows and Linux?
How can I get the MAC address of a PC using Javascript?
It should work on Windows and Linux.
I think it should look like this:
macs.getMacAddress();
var macadd = ...
0
votes
1answer
51 views
Unique identifying information in HTTP requests?
From the perspective of a wireless router on a wall in a coffee shop, can my computer be uniquely identified via an HTTP request? I think it get's my MAC adress doesn't it?
Next question, from the ...
0
votes
2answers
96 views
Getting Mac Address in Groovy
Just want to ask if there's a way of getting your local machine's Mac address as String.
I need to save my local machine's mac address into a domain class. I tried using this code to get my Mac ...
4
votes
2answers
424 views
Finding original MAC address from Hardware itself
Os:REDHAT LINUX Linux manage: 2.6.18.8-1 #
Is this possible to read MAC address form NIC directly ? I have below code but it just read from above layer but not the card itself !!!
I'm trying to ...
0
votes
1answer
387 views
Getting the MAC address of the device- when wifi is off
I am finding the MAC address of the Android Device using the following code:
WifiManager manager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo info = manager.getConnectionInfo();
...
0
votes
3answers
816 views
Java get uuid or mac address from client
I'm looking for a solution for a java based webapplication to uniquely identify the client. the server is in the same network as the clients and I thought that using the MAC address would be a good ...
0
votes
0answers
68 views
How to get iOS device MAC address programmatically
How do I get an iOS device's MAC code programmatically in my app?
-1
votes
2answers
211 views
Wake On LAN does not work whatsoever on DELL Poweredge 840 Server
I have spent 2 days trying to get my home server to work with WAKE ON LAN.
It's a DELL PowerEdge 840 Server with Windows 2008 Server 64 bit.
I have enabled WOL, setup static LAN IP, MAC, subnet and ...
0
votes
0answers
209 views
Java - getting MAC address unsuccessful when Wireless Network Connection in Windows disabled
I use the following code to get the MAC address from a PC. This MAC address is used for my licensing schema. If the following code is ran on a laptop and the Wireless Network Connection is disabled in ...
0
votes
0answers
84 views
Do you get Hardware macAddress when on VPN on Mac OS?
I am trying to write a program which stores history of an event based on which network is being used. I am using hardware MacAddress to distinguish between each network interface.
I am able to get ...
1
vote
1answer
170 views
Reserved MAC-addresses (some are assigned anyway?)
I'm trying to make a list of all MAC addresses that are reserved, do not exist, should not be used, should only be used locally etc. (Just like the list of reserved IP-addresses on Wikipedia, but for ...
-1
votes
1answer
90 views
Is the mac address specification of wireless NIC conforming to that of wireless NIC?
By using OID_802_3_PERMANENT_ADDRESS, I can query the mac address of an ethernet card. Intuitively, I think there should exist corresponding OID_802_11_PERMANENT_ADDRESS. However, I find none.
If I ...
0
votes
1answer
139 views
How to know if MAC address is attached to wireless card or ethernet card?
I'm performing network monitoring with a software developed by my company.
For each machine, I have the mac address of the card used to connect to the network.
I'm looking for a way to know, from the ...
0
votes
2answers
210 views
how to get mac address in android with python
I am trying to code an addon in XBMC linux environment within Android.
I can see Mac address inside XBMC. But I'd like to grab the mac address for the addon and I can't figure out how.
...




