-2

I want to know the unique MAC address of my Windows Server 2008 R2. When I used getmac command in command prompt I got a list of MAC addresses(6 count) under Primary Address header. Could you please help me get the correct one out of this 6?

enter image description here

Edited:

If I put ipconfig /all it's showing more information under Tunnel adapter. I know I need to select Physical Address under that Tunnel adapter for getting MAC address, but my doubt is there are 6 Tunnel adapter information available.

Screenshot:

enter image description here

My software teams wants to know the MAC address of the Server where they are going to install that particular software . So that I tried those commands (getmac, ipconfig /all) and saw lot of MAC addresses.

Pierre.Vriens
  • 1,159
  • 34
  • 15
  • 19

1 Answers1

1

You can achieve a good list of physical addresses of all your interfaces using

ipconfig /all

within a Windows environment.

Give you a good output that looks like so:

Wireless LAN adapter Local Area Connection* 4:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter #2
   Physical Address. . . . . . . . . : D0-9E-6F-F2-B9-66
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes

It will do this for each interface.

Hope this helps you on your quest.

SleepyMan

SleepyMan
  • 134
  • 2
  • Yup! I tried this also. but it showing a lists like the one you shared. My question is which one i need to prefer if my software team asking me single MAC address? – Sathiya Kumar V M Jun 21 '16 at 10:45
  • Could you explain a bit more regarding "which one i need to prefer if my software team asking me single MAC address". Is your teaming software asking for a MAC? It should use it from one of the interfaces part of the team. What teaming software are you using? –  Jun 21 '16 at 10:47
  • Yes! you are correct. Company software they need to install in server. LCM is the name of the software. – Sathiya Kumar V M Jun 21 '16 at 10:53
  • edited my question little more.. see the screenshot also. – Sathiya Kumar V M Jun 21 '16 at 10:55
  • 1
    It won't be any of the isatap adaptors that are listed in your screenshot. Can you confirm that the interfaces you want to team are actually enabled? You could give the interfaces a name in Windows and do another "ipconfig /all" and look at the name, then take the MAC that you want to use. –  Jun 21 '16 at 11:00
  • +1 for the answer and command. I appreciate your valuable help. But i'm new to this one. Could you please tell it more deeply how to do " You could give the interfaces a name in Windows and do another "ipconfig /all" and look at the name, then take the MAC that you want to use" – Sathiya Kumar V M Jun 21 '16 at 11:03