|
MAC address and IP address are used to uniquely identify a computer. When is an IP address used and when is a MAC address used?
Started by Ram on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
MAC is used from one station to the next station....
A MAC-Address is an Unique (from a router f.e.) network address within the network.
A MAC-Address and an IP-Address are two completely different things.
|
|
Is there some way for me to find IP address of machine connected in same LAN from its MAC address.
Started by Kazoom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Then your machine has thier MAC -> IP mapping in it's arp table you can ping your broadcast ....
The mac address, so it sends and arp-request to all machines on the network, and they all reply with their mac address.
|
|
Is there a way to find mapping between MAC address to IP address in C#. i think RARP should be able to do that, is there an API available in C# for that
Started by Kazoom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Regards Rahul
://www.codeproject.com/KB/IP/host_info_within_network.aspx
It allows mapping of hostname, IP ....
In case you and MAC address.
Hope this helps, Best regards, Tom.
Of parsing the sResults to get the MAC address.
|
Ask your Facebook Friends
|
I need to find a IP address of a specific user and I only have the Mac address available, I'm using Ubuntu. Is this possible?
Started by Roland on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
If your target machine is connected, a simple grep for the relevant mac address should map ) at 2009-09-08 09:25 ....
To the DHCP server, you may be able to look up the MAC address there and see what IP address it got .
|
|
From C#, I want to do the equivalent of the following:
arp -a |findstr 192.168.1.254
Alternatively, the answer could call the SendARP function and get the results.
This will allow my application to do some other processing that requires the MAC address...
Started by Iain on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
This example:
IPAddress dst = IPAddress.Parse("192.168.2.1"); // the destination IP address byte.
|
|
I have a Belkin Universal Repeater that is behaving badly, so I factory reset the repeater.
My problem right now, I can't connect to the router web management page. This is most likely caused by invalid settings that I have. On the pre-reset setting, ...
Started by Adrian Godong on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
But the most.
You could try pinging the broadcast address and see who responds -a" in Windows to get a look at the ARP cache which maps your IP's to MAC addresses.
Out what its IP is from there.
|
|
I'm working on a Wake on LAN service that will run from a web site and should interact with many different platforms - therefore, no Windows-only solutions. When a user registers their system with the web site, I need to get the MAC address to use in ...
Started by tvanfosson on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
This assumes that the originating system only ever....
In the future you could watch the network for ARP involved, you will never see the MAC address of the originating system.
To get the MAC of the last user with that address.
|
|
Is there a way that we could override the default mac address / set a new mac address on a Vista machine for a Broadcom adapter ?
Answer Snippets (Read the full thread at stackoverflow):
One of the two tools mentioned over here to spoof/change the MAC address of the Ethernet adapter.
|
|
The wikipedia article on MAC address mentions that it is stored in the ROM of the NIC. How can the MAC address be changed then?
Started by Manish Mathai on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
Here's a tutorial for Windows:
Change MAC Address or Physical Address Using Registry Editor (regedit) in Windows
The physical MAC address ....
Is it possible to change my MAC address?
in a word, yes.
|
|
How do I apply a MAC Address (of my choice, not random) to a VE (Virtuozzo powered)
I tried this:
[root@node root]# vzctl set VEID# --mac "actual mac address here" --save Invalid usage. Option --ifname not specified
In order to license software for use...
Started by Clear.Cache on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
You need the --netif parameter to assign.
The mac address to the container virtual network adapter
the default networking method used does not allow MAC addresses.
|