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
-2
votes
1 answer

Good Licensing strategy for c# application

I have developed an application using c# and I wish to apply good and strong licensing to it so that it can be protected against cracks and that my clients can renew the license even if they change their system I had few doubts in mind 1.Can…
Vivek Murli
  • 89
  • 11
-2
votes
2 answers

MAC Address valid?

I have a Network POS Printer I am using for a project and I need to give my router its MAC and it said the MAC is invalid? Any advice if there may be different forms of MAC address? Google isn't helping. MAC is 0-0-53-70-87-104 apparently.
leumas95
  • 377
  • 8
  • 22
-2
votes
3 answers

Do we have multiple MAC addresses

Here's a snapshot of ipconfig/all I found The LINK Now, it shows Local Area Connection and Wireless Connection and shows two different physical addresses for both. So are both of these my MAC addresses? How does it work?
Kraken
  • 23,393
  • 37
  • 102
  • 162
-2
votes
1 answer

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 displays the MAC address but if i try to run the client…
Lisa Collins
  • 101
  • 3
  • 13
-2
votes
3 answers

Online Voting Application. How to avoid repeated voting from same user

Possible Duplicate: Unique IPs in a voting system I am developing a small web app where it needs an online voting system using php for my college event. I was obtaining IP Address and storing it in database to prevent repeated voting from same…
aayush shrestha
  • 1,858
  • 2
  • 17
  • 33
-3
votes
2 answers

Is it possible that many ports of a switch to have the same MAC address in its MAC address table?

I found that it is possible to do so by MAC spoofing. Apart from spoofing, is it possible? If so, in what instances is this possible?
S. Tiss
  • 139
  • 1
  • 9
-3
votes
1 answer

is it possible to get the mac address using the javascript?

I need the mac addresses of system for login using the JavaScript ,is their possible to get Mac addresses using the JavaScript?
-3
votes
1 answer

How to get mac addresses of clients connected to a router through an external request

The situation is that I have to scan mac addresses of clients(portable ones) connected to multiple routers. I want to set up a server that can make an external request (or some networking tool to scan) all the routers to fetch the required…
aashu
  • 105
  • 1
  • 14
-3
votes
4 answers

How to get mac address from integrated network adapter

Many motherboards have an integrated network adapter. I need to get mac address from this device if exists. From Network adapter: private void getMacFromInetAddress(){ try { Enumeration networks =…
Saahon
  • 404
  • 1
  • 6
  • 27
-3
votes
1 answer

C# - Run my program only on selected mac address

I'm using C# on my project and I want to run only on selected Computers, we've used mac-address to check if computers mac-address are in the list and if not message show like. how to do this using C#? if (listofmacaddress == true) { //run…
Ramgy Borja
  • 2,330
  • 2
  • 19
  • 40
-3
votes
1 answer

C# get iPad/iPhone MAC/Wifi address

I am trying to find a solution to get the client's iPad unique MAC/Wifi address. I found some solutions here but it gets the MAC address of the server, but I want the client's address. Thanks.
Shehab H
  • 3
  • 1
-3
votes
1 answer

Obtain Ip and mac address of the system

I have a batch file that register DNS and cleans browser cache and after that it opens a particular URL. Now my requirement is that i want that same batch file can also be used to determine the othr system ip and mac(i mean that file also reads and…
-3
votes
1 answer

How to compare mac-addresses in Perl

I had two mac addresses 12-23-34-RT-43-23 and 12:23:34:rt:43:23. How to compare these two mac address in Perl. Are there any libraries to compare?
sam
  • 73
  • 7
-4
votes
1 answer

How to get the Mac address in k8s?

I need to restrict the user's login based on their mac address,and I have deployed the project inside k8s, but there is a problem that I cannot get the mac address of the client. I've tried these: Enumeration networkInterfaces =…
-4
votes
1 answer

C# Network Interface not woking on development server

I'm trying to get the unique machine address of the client using the c# Web API. I have used Network Interface to get the MAC address while running below code on the local server it is working great. But when I deployed it on development server I…
1 2 3
70
71