(已解决)怎样查询 mac 地址

在 opensuse 系统下,怎么查询电脑的 MAC 地址那?

cat /sys/class/net/< 你的网卡名比如:enp9s0>/address 出来的就是 mac 地址。

或者 /sbin/ifconfig -a 里面的 HWaddr 字段

或者 ip link show 中对应网卡的 link/ether 字段

或者 ip address show 中对应网卡的 link/ether 字段

上面已经说的很详细了,还是给你一条命令吧。

/sbin/ifconfig -a | grep HWaddr

上面都是 linux 通用的搜一下应该很容易找到。在 openSUSE 下你还可以通过:

YaST -> 硬件 -> 硬件信息 -> 网卡 -> < 你的网卡名称> -> Resources -> HW Address -> addr

来查看 MAC 地址。