Linux通过shell命令获取当前机器mac地址

by Web全栈工程师 on 2011 年 06 月 24 日

#方法1
ip link show eth0 | awk '/ether/ {print $2}'

#方法2
ifconfig eth0 | awk '/HWaddr/ {print $5}'

#方法3
cat /sys/class/net/eth0/address

#方法4
ifconfig eth0 | grep HWaddr | cut -d ' ' -f 11

Comments on this entry are closed.

Previous post:

Next post: