繁体   English   中英

用于查找macaddress的等效windows命令

[英]The equivalent windows command to find macaddress

我使用以下linux命令来查找macaddress

"ifconfig | grep enp0s20f6 | awk '{print $5}'"

找到macaddress的等效windows命令应该是什么?

我是linux,使用grep和awk过滤ifconfig的结果。 有没有办法修改等效的Windows命令只获取macaddress?

对于Windows:

    C:\>ipconfig /all
    Windows IP Configuration
   Host Name . . . . . . . . . . . . : PC-10234
   Primary Dns Suffix  . . . . . . . : mydomain.com

   DNS Suffix Search List. . . . . . : mydomain.com
                                       mydomain.com
Wireless LAN adapter Wireless Network Connection:
   Connection-specific DNS Suffix  . : mydomain.com
   Description . . . . . . . . . . . : Intel(R) Centrino(R) Advanced-N 6205
   Physical Address. . . . . . . . . : 3C-99-88-64-A1-F0

Ethernet adapter Local Area Connection:
   Connection-specific DNS Suffix  . : mydomain.com
   Description . . . . . . . . . . . : Intel(R) 82579LM Gigabit Network Connection
   Physical Address. . . . . . . . . : 73-2B-4F-D5-12-A0

C:\>

要么

C:\>getmac
Physical Address    Transport Name
=============================================================================
2C-3F-45-02-1B-32   \Device\Tcpip_{7E49B486-120A-4BC2-2114-B345A4D5C5}
10-13-17-BC-12-48   Media disconnected
22-B3-C5-30-76-78   \Device\Tcpip_{213E8D2A-1DBE-4240-8301-BE6F3EACAF9D}
00-05-2A-3C-78-00   \Device\Tcpip_{F01E3FC2-A5A1-6940-D1A1-C7521AEC4296}
2C-23-45-14-23-AD   Media disconnected
C:\>

有关更多详细信息,请访问此处 - get-mac-address-command-line

为了获得只有mac-address,你可以做类似的事情

for /f "usebackq tokens=3 delims=," %a in (`getmac /fo csv /v ^| find "Local Area Connection"`) do set MAC=%~a

按照此处 - 仅获取以太网MAC地址

显示macadresses

for /F "delims=: tokens=2" %a IN ('netsh lan show interfaces^|findstr /C:"Physical address"') do @echo %a

如果你在批处理文件中使用它,你需要加倍%。

for /F "delims=: tokens=2" %%a IN ('netsh lan show interfaces^|findstr /C:"Physical address"') do @echo %%a

您可以使用ipconfig执行相同的操作,但是计算机可以具有虚拟\\ tunnel接口,并且ipconfig将显示它们,这可能会导致额外的清零行。

for /F "delims=: tokens=2" %%a IN ('ipconfig /all^|findstr /C:"Physical address"') do @echo %%a

要找你MAC,只需改变findstr的参数

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM