1、ifconfig命令查看网卡MAC地址
1.1 通过HWaddr或ether字段过滤mac地址
ifconfig | grep HWaddr
ifconfig | grep ether
[root@localhost ~]# /sbin/ifconfig | grep ether
注:有些Linux发行版本的MAC地址字段为HWaddr,有些Linux发行版本的MAC地址字段为ether。
1.2提取指定网卡mac地址
如果想只提取网卡MAC地址,可以使用下面命令(用具体的网卡名替换xxx)
ifconfig xxxx | grep -o -E '([[:xdigit:]]{1,2}:){5}[[:xdigit:]]{1,2}'
[root@localhost ~]# fconfig eth0 | grep -o -E '([[:xdigit:]]{1,2}:){5}[[:xdigit:]]{1,2}'
52:54:00:c1:ad:47
2、通/sys/class/net/xxx/address查看
使用下面命令(用具体的网卡名替换xxx)
/sys/class/net/xxx/address
[root@localhost ~]# more /sys/class/net/eth0/address
52:54:00:c1:ad:47
3、ip命令查看网卡MAC地址
[root@KerryDB tmp]# ip link #查看所有网卡信息
[root@localhost ~]# ip link show enp49s0f0 | awk '/ether/ {print $2}' #过滤对应网卡mac地址
d4:5d:64:ba:e6:1c
4、nmcli命令查看网卡MAC地址
[root@localhost ~]# nmcli device show eth0 #查看指定网卡的详细信息
[root@localhost ~]# nmcli device show eth0 | grep -i hwaddr #过滤出mac地址
GENERAL.HWADDR: 52:54:00:C1:AD:47