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

Can two hosts at different networks have same mac address

can there be two different hosts at two different networks with same MAC address. is it possible?
-1
votes
1 answer

Do I want a new MAC address if my VirtualBox clones will never run at the same time?

I work as a tech seller of a server side container-based app. I run the app on an Ubuntu VM and then access it through the browser on a different machine in the same network. I need multiple versions and multiple data setups. So I have created a…
Mark Chassy
  • 159
  • 3
  • 13
-1
votes
1 answer

Determine which host(Physical machine) hosting virtual machine(Vmware) based mac address

I've a mac address which belongs to VMware virtual machine in my network(about 4k devices). The virtual machine is used by VMware workstation on some host in my network. All i got is a mac address of the virtual machine. Is there any way to find…
-1
votes
1 answer

I dont know why it doesnt read my Mac adress

I'm starting to learn coding in python. I'm making an udemy course, where i have to make a program that reads the Mac Address in kali-linux with python2 and 3. The only problem that I have is that my re.search command doesn't read my old Mac Address…
-1
votes
2 answers

How to fetch ip and mac addresses of all the devices connected to another LAN using nodejs?

How to fetch ip and mac addresses of all the devices connected to different LAN in the same organization using nodejs or any powershell script ?
-1
votes
1 answer

Angular and .Net Core API - TV control for viewing dashboard which is assigned by MAC address

I have a requirement as to create a TV control in my existing Angular based dashboard application which is driven by .Net Core API. More specifically, I need a feature for assigning MAC address to a dashboard for viewing the dashboard in the TV…
Salahuddin Ahmed
  • 4,854
  • 4
  • 14
  • 35
-1
votes
1 answer

How format mac address inside json array

Need help in getting below the mac address inside the json file to re-reformatted using sed cat 251.json cat /tmp/251.json [ "08:f1:ea:6d:03:3c", "08:f1:ea:6d:03:3d", "08:f1:ea:6d:03:3e", "08:f1:ea:6d:03:3f", "b8:83:03:81:4b:20", …
Bharat Gupta
  • 127
  • 1
  • 10
-1
votes
3 answers

Can a VPN bypass LAN access restrictions that are based on MAC address

My router can apply MAC-address based restrictions, e.g. to limit access hours for a specific device on the network. (Not to be confused with IP address restrictions to block facebook, youtube etc..) This seems to be a common feature in routers…
P2000
  • 1,042
  • 8
  • 14
-1
votes
1 answer

Is there anyway to get the USB Mac Address of the iPhone device?

Not the WiFi or Bluetooth one. I was doing the internet sharing via reverse tethering to the device via USB, the iPhone should have a Mac Address specific to that interface. I've checked ideviceinfo and that only provide me the Mac Address of WiFi…
xxx222
  • 2,980
  • 5
  • 34
  • 53
-1
votes
1 answer

Get all device's model names connected to Wi-Fi in Android

I need to get information of all the devices connected in a single Wi-Fi. I've already got all connected device's IP addresses, MAC addresses and Company names. But I still can't get the model or hostnames of the connected devices. Is it possible to…
Mehul Dhimmar
  • 117
  • 13
-1
votes
3 answers

Extract only MAC addresses from arp-scan -l

I want to collect only MAC addresses from arp-scan -l, omitting IP addresses and the devices name. How do we do it? I know that these in the middle column are all MAC addresses. 192.168.1.1 bc:98:89:47:20:f8 Fiberhome Telecommunication…
Muhammad Naufil
  • 2,420
  • 2
  • 17
  • 48
-1
votes
2 answers

How to get MAC ID of a system

I have found this code to get a MAC address, but it returns a long string and doesn't include ':'. Is it possible to add in the ':' or split up the string and add it it myself? here is the code: private object GetMACAddress() { string…
John H
  • 31
  • 5
-1
votes
1 answer

How to get all IP Address and device details which is connected with that IP Address from different subnet?

I want extract all IP Address and device details(Mac address,Device Name,DNS whatever possible) which is connected with that IP Address for different subnet not only for local subnet. So, is there any command, library for JAVA or Open source API? …
-1
votes
2 answers

Can I store a big hexadecimal value in Long datatype in Java?

Mac address is 6 bytes long(12 digit or 48bits in length). Long can hold 8 bytes of data but still I am not able to store following mac addresss in a long data variable? Long mac=(long) 0xffffffffffff; Why is it happening? What is the best datatype…
D J
  • 57
  • 1
  • 1
  • 10
-1
votes
1 answer

How does a Frame reach the Network Switch?

While studying about packet traversal in Networks, I understood that in a LAN we use MAC address for traversal of the frame. I also Understand how the frame reaches from PCa to PCb in a network through the switch and how Switch learns the MAC…