Find mac address
Windows Method 1: Using the Command Prompt
- 1
Click on the Start button.
- 2
Type cmd in the search bar, right above the Start button, and press Enter. This will open the command prompt.
- If you're using Windows XP, click Run, type cmd, and press Enter.
- 3
At the command prompt, type ipconfig /all and press Enter. Don’t forget the space.
- 4
Look for Physical Address. This your MAC address. Make sure you get the physical address of the correct network adapter - usually there are several listed.
Windows Method 2: Using the Network and Sharing Center (Vista/7 only)
- 1
Connect to a network. This method is only applicable if you are currently connected.
- 2
Click on the connection icon at the system tray. It may look like a small graphic (like the image below), or like a tiny computer monitor. After clicking on it, select "Open Network and Sharing Center".
- 3
Find the name of your network connection and click on it. It will be located right after the word "Connections". This will open a small window.
- 4
Click Details.
- 5
Look for Physical Address. This your MAC address. Make sure you get the physical address of the correct network adapter - usually there are several listed.
Windows Method 3: Using Network Connections (98/XP only)
- 1
Connect to a network. This method is only applicable if you are currently connected.
- 2
Open Network Connections. If you don’t have a desktop icon for this, find the connection icon in the taskbar (the lower right-hand corner of the Windows toolbar) and click on it to either bring up your current connection or a list of available networks. .
- 3
Right-click your connection and select Status.
- 4
Click "Details". Note that, in some versions of Windows, this may be under the Supporttab.
- 5
Look for Physical Address. This your MAC address. Make sure you get the physical address of the correct network adapter - usually there are several listed.
Mac OS X Method (Older Versions)
- 1
Go to Apple Menu > System Preferences.
- 2
Select Network.
- 3
Double-click on Airport or Built-in Ethernet. This will depend on how you access the Internet / your network.
- 4
Find your Airport ID or Ethernet ID. This is the MAC address.
Mac OS X Method 2 (Newer Versions)
- 1
Click on the apple icon on top left corner of your screen.
- 2
Scroll down to System Preferences and click on it.
- 3
Select Network and choose either AirPort or Built-in Ethernet, depending on how you access your network.
- For Ethernet, click Advanced and navigate to the Ethernet tab. At the top you will see the Ethernet ID, which is your MAC address.
- For AirPort, click Advanced and navigate to the bottom of the page. There you will see the AirPort ID your MAC address.
Linux Method
- 1
Obtain a command shell. Depending on your system, this might be called Xterm, Shell,Terminal, Command Prompt, or something similar. It can usually be found underApplications > Accessories (or the equivalent).
- 2
Type /sbin/ifconfig and press Enter. If you are denied access, enter su –c “/sbin/ifconfig”and enter the root password if prompted.
- 3
Look for your HWaddr. This is your MAC address.
Find mac address的更多相关文章
- Ubuntu 下,修改 Mac address
ifconfig // check Mac address sudo ifconfig eth0 down sudo ifconfig eth0 hw ether xx:xx:xx:xx: ...
- 【小错误】Device eth2 has different MAC address than expected, ignoring.
今天在搭建rac配置IP的时候报错显示如下: Device eth2 has different MAC address than expected, ignoring.[FAILED] 百度了下,问 ...
- OK335xS mac address hacking
/*********************************************************************** * OK335xS mac address hacki ...
- 利用C语言获取设备的MAC address
利用C语言获取设备的MAC address MAC address --> Medium Access Control layer address // // http://www.binary ...
- 关于获得本机Mac Address的方法
网络上有讲获得Mac address的方法有如下: 1. 发送ARP命令,利用返回的Mac Address缓冲区得到 2. 用NetworkInterface.GetAllNetworkInterfa ...
- what is MAC address
MAC Address:media access control address A media access control address (MAC address) is a unique id ...
- vb.net 使用ip查詢(Host Name)(WorkGroup Name)(MAC Address)-運用cmd及nbtstat命令
Sub nbtstat(ByVal ip As String) Dim strRst, strRst1, strRst2, strRst3 As String Dim n1, n2, n3 As In ...
- How to Change MAC Address on Ubuntu
1 Open Terminal. 2 Log in as root so type: sudo -i and then write your password. 3 View your cur ...
- Get MAC address using POSIX APIs
#include <stdio.h>#include <unistd.h>#include <netdb.h>#include <arpa/inet.h> ...
随机推荐
- hibernate3和spring整合的一些方式
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.sp ...
- php的类型约束
//如下面的类 class MyClass { /** * 测试函数 * 第一个参数必须为 OtherClass 类的一个对象 */ public function test(OtherClass $ ...
- 【英语】Bingo口语笔记(63) - 一个单词的多种发音
- node前端自动化
一.前端自动化-项目构建 我们平时写代码,喜欢建一个project,然后里面是css.js.images文件,以及index.html,而node可以自动化构建好项目,如下: /** * Create ...
- 使用 XML 实现 REST 式的 SOA
什么是 SOA? 如果公司有大量应用程序,这些程序供不同部门的承担不同责任的职员使用,那么就适合使用面向服务体系结构(Service Oriented Architecture,SOA).这些应用程序 ...
- 15、NFC技术:使用Android Beam技术传输文件
传输文件的API 从Android4.1开始,NfcAdapter类增加了如下两个推送数据的方法. NfcAdapter.setBeamPushUris NfcAdapter.setBeamPushU ...
- bjfu1287字符串输出的大水题
不多说 /* * Author : ben */ #include <cstdio> #include <cstdlib> #include <cstring> # ...
- 多线程的Python 教程--“贪吃蛇”
本指南的里代码可以在这里下载: threadworms.py ,或者从 GitHub.代码需要 Python 3 或 Python 2 ,同时也需要安装 Pygame . 点击查看大版本图片 ...
- Start SparkR in RStudio
Sys.setenv(SPARK_HOME="/usr/spark") .libPaths(c(file.path(Sys.getenv("SPARK_HOME" ...
- MFC学习20160718(GetModuleFileName&&GetAppDataPath)
1.标题栏设置 一.对话框标题栏内容为静态 直接在对话框属性“General”的“Caption”中修改. 二.对话框标题栏内容为动态生成的 在对应对话框的初始化函数OnInitDialog()中添加 ...