62

ifconfig从的输出中提取 MAC 地址的最佳方法是什么?

样本输出:

bash-3.00# ifconfig eth0        
eth0      Link encap:Ethernet  HWaddr 1F:2E:19:10:3B:52    
          inet addr:127.0.0.66  Bcast:127.255.255.255  Mask:255.0.0.0    
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          ....
          ....

我应该使用 cut、AWK还是其他任何方法,一种方法相对于另一种方法的优缺点是什么。

4

19 回答 19

116

你可以在下面做一只猫/sys/class/

cat /sys/class/net/*/address

专门针对eth0

cat /sys/class/net/eth0/address
于 2011-06-13T17:53:40.520 回答
73

我会使用:

ifconfig eth0 | grep -o -E '([[:xdigit:]]{1,2}:){5}[[:xdigit:]]{1,2}'

-o 将导致 grep 仅打印与表达式匹配的行的一部分。 [[:xdigit:]]{1,2}将匹配 1 或 2 个十六进制数字(Solaris 不输出前导零)。

于 2008-10-29T05:56:42.523 回答
25

我喜欢将 /sbin/ip 用于这类任务,因为它更容易解析:

$ ip link show eth0
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000
    link/ether 00:0c:29:30:21:48 brd ff:ff:ff:ff:ff:ff

您可以使用 awk 轻松地从此输出中获取 mac 地址:

$ ip link show eth0 | awk '/ether/ {print $2}'
00:0c:29:30:21:48

如果您想花更多的精力,并解析出更多数据,我建议在 ip 命令中使用 -online 参数,它可以让您将每一行视为一个新设备:

$ ip -o link 
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue \    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000\    link/ether 00:0c:29:30:21:48 brd ff:ff:ff:ff:ff:ff
3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000\    link/ether 00:0c:29:30:21:52 brd ff:ff:ff:ff:ff:ff
4: tun0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 100\    link/[65534] 
5: sit0: <NOARP> mtu 1480 qdisc noop \    link/sit 0.0.0.0 brd 0.0.0.0
于 2008-10-29T11:58:40.623 回答
10

不确定是否真的有任何优势,但您可以简单地使用 awk:

ifconfig eth0 | awk '/HWaddr/ {print $5}'
于 2008-10-29T05:55:18.767 回答
4

由于 OP 的示例指的是 Bash,因此这里提供了一种无需使用其他工具即可提取 HWaddr 等字段的方法:

x=$(ifconfig eth0) && x=${x#*HWaddr } && echo ${x%% *}

在第一步中,这会将 ifconfig 的输出分配给 x。第二步删除“HWaddr”之前的所有内容。在最后一步中,“”(MAC 后面的空格)之后的所有内容都被删除。

参考:http ://www.gnu.org/software/bash/manual/bashref.html#Shell-Parameter-Expansion

于 2011-02-13T20:44:13.590 回答
3

对于 Ubuntu/Debian

ifconfig | grep HW | awk '{print $5}'

对于 Rhat 或 CentOs 试试

ip add | grep link/ether | awk '{print $2}'
于 2016-06-02T00:25:37.087 回答
2

我更喜欢这里描述的方法(稍作修改):http ://www.askdavetaylor.com/how_do_i_figure_out_my_ip_address_on_a_mac.html

ifconfig | grep "inet " | grep -v 127.0.0.1 | cut -d " " -f2

然后您可以将其别名为简短的“myip”命令以供将来使用:

echo "alias myip=\"ifconfig | grep 'inet ' | grep -v 127.0.0.1 | cut -d ' ' -f2\"" >> ~/.bash_profile
于 2011-09-28T13:16:36.043 回答
1

在终端中的 Ubuntu 14.04 上

ifconfig | grep HW
于 2014-09-30T13:57:43.897 回答
1

这个怎么样:

ifconfig eth0 | grep -Eo ..\(\:..\){5}

或更具体地说

ifconfig eth0 | grep -Eo [:0-9A-F:]{2}\(\:[:0-9A-F:]{2}\){5}

也是一个简单的

ifconfig eth0 | head -n1 | tr -s ' ' | cut -d' ' -f5`
于 2011-05-11T04:14:42.437 回答
1
ifconfig en1 | grep -o -E '([[:xdigit:]]{1,2}:){5}[[:xdigit:]]{1,2}' 
  • 用网卡“eth0”的名称替换“en1”或完全删除“en1” - 简单而有用的解决方案。
于 2020-09-15T10:59:34.080 回答
0

这适用于我在 Mac OS X 上:

ifconfig en0 | grep -Eo ..\(\:..\){5}

也是如此:

ifconfig en0 | grep -o -E '([[:xdigit:]]{1,2}:){5}[[:xdigit:]]{1,2}'

两者都是上述示例的变体。

于 2013-03-06T03:05:34.097 回答
0
ifconfig | grep -i hwaddr | cut -d ' ' -f11
于 2013-11-09T10:29:21.030 回答
0

又好又快的一个:

ifconfig eth0 | grep HWaddr | cut -d ' ' -f 11
于 2015-03-27T10:15:51.397 回答
0

注意:在 OS X eth0 上可能无法正常工作。使用 p2p0:

ifconfig p2p0 | grep -o -E '([[:xdigit:]]{1,2}:){5}[[:xdigit:]]{1,2}'
于 2012-08-29T14:44:10.327 回答
0

这对我有用

ifconfig eth0 | grep -o -E ..:..:..:..:..:..

而不是eth0你可以写你需要的接口它的mac地址

于 2019-08-27T19:51:12.900 回答
0

我需要获取活动适配器的 MAC 地址,所以最终使用了这个命令。

ifconfig -a | awk '/^[a-z]/ { iface=$1; mac=$NF; next } /inet addr:/ { print mac }' | grep -o -E '([[:xdigit:]]{1,2}:){5}[[:xdigit:]]{1,2}'

希望能帮助到你。

于 2016-05-09T21:19:37.963 回答
0

ifconfig en0 | grep ether - 用于有线 MAC 地址

ifconfig en1 | grep ether - 用于无线 MAC 地址

于 2018-09-19T08:56:27.823 回答
-1

利用:

ifconfig eth0 | grep HWaddr

或者

ifconfig eth0 |grep HWaddr

这将只提取 MAC 地址,而不提取其他任何内容。

您可以将您的 MAC 地址更改为您想要的任何内容:

ifconfig eth0 down,
ifconfig eth0 hw ether (new MAC address),
ifconfig eth0 up
于 2014-06-17T12:04:23.567 回答
-1

ifconfig 的输出:

$ifconfig

eth0      Link encap:Ethernet  HWaddr 00:1b:fc:72:84:12
      inet addr:172.16.1.13  Bcast:172.16.1.255  Mask:255.255.255.0
      inet6 addr: fe80::21b:fcff:fe72:8412/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:638661 errors:0 dropped:20 overruns:0 frame:0
      TX packets:93858 errors:0 dropped:0 overruns:0 carrier:2
      collisions:0 txqueuelen:1000
      RX bytes:101655955 (101.6 MB)  TX bytes:42802760 (42.8 MB)
      Memory:dffc0000-e0000000

lo        Link encap:Local Loopback
      inet addr:127.0.0.1  Mask:255.0.0.0
      inet6 addr: ::1/128 Scope:Host
      UP LOOPBACK RUNNING  MTU:16436  Metric:1
      RX packets:3796 errors:0 dropped:0 overruns:0 frame:0
      TX packets:3796 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:0
      RX bytes:517624 (517.6 KB)  TX bytes:517624 (517.6 KB)

提取MAC地址的最佳方法是:

ifconfig | sed '1,1!d' | sed 's/.*HWaddr //' | sed 's/\ .*//' | sed -e 's/:/-/g' > mac_address
于 2013-06-14T12:21:06.243 回答