在 CentOS 系统中,你可以使用 ifconfig
命令来查看网络接口的 MAC 地址。以下是具体步骤:
打开终端。
输入以下命令并按下回车键:
ifconfig
在输出的信息中,找到你想要查看 MAC 地址的网络接口。每个网络接口通常会有一个类似于 eth0
或 ens33
的名称。
在该接口的信息中,查找 ether
字段,后面跟随的就是 MAC 地址。例如:
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.100 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::a00:27ff:fe4e:66a1 prefixlen 64 scopeid 0x20<link>
ether 08:00:27:4e:66:a1 txqueuelen 1000 (Ethernet)
RX packets 1003411 bytes 123456789 (117.7 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 987654 bytes 987654321 (941.5 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
在这个例子中,eth0
接口的 MAC 地址是 08:00:27:4e:66:a1
。
如果你只想查看特定接口的 MAC 地址,可以使用以下命令:
ifconfig <interface_name>
将 <interface_name>
替换为你想要查看的网络接口名称,例如 eth0
或 ens33
。
另外,你也可以使用 ip
命令来查看 MAC 地址:
ip link show <interface_name>
同样,将 <interface_name>
替换为你想要查看的网络接口名称。